:root {
    --primary: #FF6B3D;
    --primary-dark: #E5552A;
    --primary-light: #FF8A66;
    --secondary: #1A1A1A;
    --background: #0A0A0A;
    --surface: #161616;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --text-muted: #6B6B6B;
    --gradient-1: linear-gradient(135deg, #FF6B3D 0%, #FF8A66 100%);
    --gradient-2: linear-gradient(135deg, #FF6B3D 0%, #FFB199 100%);
    --shadow-sm: 0 2px 8px rgba(255, 107, 61, 0.1);
    --shadow-md: 0 4px 16px rgba(255, 107, 61, 0.15);
    --shadow-lg: 0 8px 32px rgba(255, 107, 61, 0.2);
    --border-radius: 16px;
}

/* Loading Screen */
#loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

#loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
}

.loading-content .logo {
    font-size: 32px;
    font-family: 'Syne', sans-serif;
}

.loading-content .logo-c2 {
    color: var(--primary);
    font-weight: 800;
}

.loading-content .logo-soft {
    color: var(--text-primary);
    font-weight: 800;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(255, 107, 61, 0.1);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto 0;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Fix all links - no blue colors */
a {
    color: inherit;
    text-decoration: none;
}

a:visited {
    color: inherit;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--background);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, -50%);
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 107, 61, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
    transform: translate(-50%, -50%);
}

.cursor.active {
    transform: translate(-50%, -50%) scale(1.5);
    background: var(--primary);
}

.cursor-follower.active {
    transform: translate(-50%, -50%) scale(1.3);
    background: rgba(255, 107, 61, 0.1);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    padding: 15px 0;
    background: rgba(10, 10, 10, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-c2 {
    color: var(--primary);
    letter-spacing: 2px;
}

.logo-soft {
    color: var(--text-primary);
    letter-spacing: 1px;
}

/* Header Phone */
.header-phone {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.2);
    border-radius: 50px;
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: auto;
    margin-left: 40px;
}

.header-phone:hover {
    background: rgba(255, 107, 61, 0.15);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.header-phone svg {
    stroke: var(--primary);
}

.header-phone span {
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-1);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: none;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-text {
    display: inline;
}

.dropdown-arrow {
    margin-left: 5px;
    transition: transform 0.3s ease;
    display: inline-block;
    vertical-align: middle;
}

.nav-item-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    transform: translateX(-50%);
    background: var(--surface);
    border: 1px solid rgba(255, 107, 61, 0.2);
    border-radius: 16px;
    padding: 20px;
    min-width: 600px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 9999;
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    top: calc(100% + 5px);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 15px;
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 14px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-size: 15px;
    font-weight: 500;
}

.dropdown-item:hover {
    background: rgba(255, 107, 61, 0.1);
    color: var(--primary);
    transform: translateX(3px);
}

.dropdown-item:visited {
    color: var(--text-secondary);
}

.dropdown-item:visited:hover {
    color: var(--primary);
}

.dropdown-icon {
    display: none !important;
}

.dropdown-icon svg {
    display: none;
}

.dropdown-view-all {
    display: block;
    text-align: center;
    padding: 12px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.2);
    border-radius: 10px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.dropdown-view-all:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.dropdown-view-all:visited {
    color: var(--primary);
}

.dropdown-view-all:visited:hover {
    color: white;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
    align-items: center;
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lang-btn {
    padding: 8px 16px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
    cursor: none;
    transition: all 0.3s ease;
    font-family: 'DM Sans', sans-serif;
}

.lang-btn:hover {
    border-color: rgba(255, 107, 61, 0.5);
    color: var(--primary);
    background: rgba(255, 107, 61, 0.05);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

/* Language Notification */
.lang-notification {
    position: fixed;
    top: 100px;
    right: 40px;
    background: var(--surface);
    border: 1px solid var(--primary);
    color: var(--text-primary);
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(255, 107, 61, 0.3);
    z-index: 10000;
    opacity: 0;
    transform: translateX(400px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-notification.show {
    opacity: 1;
    transform: translateX(0);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 40px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #FF8A66 0%, transparent 70%);
    bottom: -200px;
    left: -100px;
    animation-delay: 7s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--primary-dark) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(100px, -100px) scale(1.1); }
    66% { transform: translate(-100px, 100px) scale(0.9); }
}

.hero-content {
    max-width: 1200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 30px;
    animation: fadeInDown 1s ease;
}

.hero-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    letter-spacing: 0.5px;
    cursor: none;
}

.btn-primary {
    background: var(--gradient-1);
    color: white;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 107, 61, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 107, 61, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.btn-large {
    padding: 20px 50px;
    font-size: 18px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Syne', sans-serif;
    font-size: 48px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    animation: fadeInUp 1s ease 1s both;
}

.scroll-line {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--primary), transparent);
    margin: 0 auto 15px;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% { height: 0; opacity: 0; }
    50% { height: 60px; opacity: 1; }
    100% { height: 60px; opacity: 0; }
}

.scroll-indicator span {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Icon Styles for SVG */
.service-icon svg,
.service-icon-large svg,
.team-icon svg,
.contact-icon svg,
.value-icon svg,
.mv-icon svg,
.author-avatar svg {
    color: var(--primary);
    transition: all 0.3s ease;
}

.team-icon svg {
    width: 56px;
    height: 56px;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
}

.value-icon svg {
    width: 56px;
    height: 56px;
}

.mv-icon svg {
    width: 80px;
    height: 80px;
}

.author-avatar svg {
    width: 24px;
    height: 24px;
}

.service-card:hover .service-icon svg,
.service-card-large:hover .service-icon-large svg {
    transform: scale(1.1) rotate(5deg);
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Styles */
section {
    padding: 120px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge {
    display: inline-block;
    padding: 8px 24px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.3);
    border-radius: 50px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.service-card {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 40px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover::before {
    opacity: 0.05;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 107, 61, 0.3);
    box-shadow: 0 20px 60px rgba(255, 107, 61, 0.2);
}

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-icon svg {
    width: 48px;
    height: 48px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-family: 'Syne', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    position: relative;
    z-index: 1;
}

.service-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-arrow {
    font-size: 24px;
    color: var(--primary);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-arrow {
    opacity: 1;
    transform: translateX(0);
}

.services-cta {
    text-align: center;
}

/* Why Us Section */
.why-us {
    background: var(--surface);
    position: relative;
}

.why-us-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-left .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.why-us-text {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.feature-text strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
}

.feature-text span {
    font-size: 14px;
    color: var(--text-secondary);
}

.stats-box {
    background: var(--background);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.stat-box-item {
    text-align: center;
    padding: 30px;
    background: rgba(255, 107, 61, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 61, 0.1);
}

.stat-box-number {
    font-family: 'Syne', sans-serif;
    font-size: 56px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-box-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 150px 0;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    top: 50%;
    left: 20%;
    transform: translate(-50%, -50%);
}

.orb-5 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #FF8A66 0%, transparent 70%);
    top: 50%;
    right: 20%;
    transform: translate(50%, -50%);
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: 'Syne', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    margin-bottom: 30px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 50px;
    line-height: 1.8;
}

/* Footer */
.footer {
    background: var(--surface);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: 'Syne', sans-serif;
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 80px;
}

.footer-col h4 {
    font-family: 'Syne', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-muted);
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    cursor: pointer;
}

.whatsapp-float a:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
    transition: fill 0.3s ease;
}

.footer-social a:hover svg {
    fill: white;
}

/* Service Card Image Support */
.service-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 107, 61, 0.1) 0%, rgba(255, 107, 61, 0.05) 100%);
    border-radius: 16px;
    margin-bottom: 24px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fallback text for empty images */
.service-image:empty::after {
    content: 'Resim Ekle';
    color: var(--text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Keep old icon class for backward compatibility but hide it */
.service-icon {
    display: none;
}

/* Responsive */
@media (max-width: 1024px) {
    .why-us-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
    
    .lang-switcher {
        padding-left: 15px;
    }
    
    .dropdown-menu {
        min-width: 500px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        flex-wrap: nowrap;
    }
    
    /* Header Phone Mobile */
    .header-phone {
        padding: 10px 15px;
        margin-left: 15px;
        font-size: 13px;
        gap: 8px;
    }
    
    .header-phone span {
        display: none;
    }
    
    .header-phone svg {
        width: 18px;
        height: 18px;
    }
    
    /* Show hamburger menu */
    .hamburger {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .logo {
        order: 1;
        font-size: 18px;
    }
    
    /* Mobile menu styles */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        flex-direction: column;
        padding: 20px;
        gap: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transition: all 0.3s ease;
        order: 4;
        width: 100%;
    }
    
    .nav-menu.active {
        max-height: calc(100vh - 80px);
        opacity: 1;
        overflow-y: auto;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        margin: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link {
        display: block;
        padding: 15px 10px;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile dropdown */
    .nav-item-dropdown {
        position: relative;
    }
    
    .dropdown-arrow {
        float: right;
    }
    
    .dropdown-menu {
        position: static;
        transform: none;
        margin-top: 0;
        min-width: 100%;
        padding: 10px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: none;
        background: rgba(255, 107, 61, 0.05);
    }
    
    .nav-item-dropdown.active .dropdown-menu {
        max-height: 600px;
        opacity: 1;
        visibility: visible;
        margin-top: 10px;
    }
    
    .dropdown-grid {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .dropdown-item {
        padding: 15px 16px;
        font-size: 15px;
    }
    
    .dropdown-view-all {
        margin-top: 10px;
        font-size: 13px;
    }
    
    .lang-switcher {
        padding: 15px 10px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-left: none;
        width: 100%;
        justify-content: flex-start;
        gap: 10px;
    }
    
    .lang-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    /* Page content adjustments */
    .hero-content h1 {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
        border-radius: 20px;
    }
    
    .service-image {
        height: 240px;
        border-radius: 12px;
        margin-bottom: 20px;
    }
    
    .service-image img {
        object-fit: cover;
        object-position: center center;
        border-radius: 12px;
    }
    
    .service-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .service-desc {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .footer-right {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        z-index: 999;
    }

    .whatsapp-float a {
        width: 56px;
        height: 56px;
        box-shadow: 0 3px 12px rgba(37, 211, 102, 0.5);
    }

    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }

    .footer-social {
        justify-content: center;
    }
    
    body {
        cursor: default;
    }
    
    .cursor,
    .cursor-follower {
        display: none;
    }
    
    /* Fix mobile spacing */
    .container {
        padding: 0 20px;
    }
    
    section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 12px 24px;
        font-size: 14px;
    }
}