* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}

:root {
    /* Kurumsal Ana Renkler - Koyu Lacivert */
    --primary-color: #1e3a8a;
    --primary-dark: #1e40af;
    --primary-darker: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-lighter: #60a5fa;
    
    /* Kurumsal İkincil Renkler - Koyu Gri */
    --secondary-color: #374151;
    --secondary-dark: #1f2937;
    --secondary-light: #6b7280;
    
    /* Kurumsal Vurgu Renkleri - Yumuşak Altın */
    --accent-color: #d97706;
    --accent-dark: #b45309;
    --accent-light: #f59e0b;
    
    /* Başarı/Onay Rengi - Koyu Yeşil */
    --success-color: #059669;
    --success-dark: #047857;
    --success-light: #10b981;
    
    /* Metin Renkleri */
    --text-dark: #111827;
    --text-medium: #374151;
    --text-light: #6b7280;
    --text-lighter: #9ca3af;
    
    /* Arka Plan Renkleri */
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --bg-gray: #f3f4f6;
    
    /* Border Renkleri */
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --border-dark: #d1d5db;
    
    /* Gölgeler */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    /* Kurumsal Gradient'ler */
    --gradient-1: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #2563eb 100%);
    --gradient-2: linear-gradient(135deg, #374151 0%, #4b5563 50%, #6b7280 100%);
    --gradient-3: linear-gradient(135deg, #059669 0%, #10b981 50%, #34d399 100%);
    --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    --gradient-corporate: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    --gradient-accent: linear-gradient(135deg, #d97706 0%, #f59e0b 100%);
}

html[data-theme="dark"] {
    /* Dark Mode Kurumsal Renkler - Koyu Tema */
    --text-dark: #f9fafb;
    --text-medium: #e5e7eb;
    --text-light: #d1d5db;
    --text-lighter: #9ca3af;
    --bg-light: #1a1a1a;
    --bg-white: #2d2d2d;
    --bg-gray: #1f1f1f;
    --border-color: #404040;
    --border-light: #333333;
    --border-dark: #4a4a4a;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
}

/* Dark Mode - Body Background - Removed duplicate */

html[data-theme="dark"] .footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    border-top-color: var(--primary-color);
    color: white;
}

html[data-theme="dark"] .footer::before {
    opacity: 0.03;
}

html[data-theme="dark"] .footer-section h3,
html[data-theme="dark"] .footer-section h4 {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .footer-section p {
    color: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
}

html[data-theme="dark"] .footer-section ul li a:hover {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .social-links a {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

html[data-theme="dark"] .social-links a:hover {
    background: var(--primary-color);
    color: white;
}

html[data-theme="dark"] .footer-bottom {
    color: rgba(255, 255, 255, 0.7);
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    overflow-y: auto;
    width: 100%;
    max-width: 100vw;
    position: relative;
    background: var(--bg-light);
    transition: background 0.3s ease, color 0.3s ease;
}

/* Dark Mode - Body Override */
html[data-theme="dark"] body {
    background: #1a1a1a !important;
    color: #f9fafb !important;
}

/* Genel Link Stilleri - Mavi Renk Yok */
a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

a:visited {
    color: var(--text-dark);
}

a:active {
    color: var(--primary-color);
}

/* Dark Mode - Genel Link Stilleri */
html[data-theme="dark"] a {
    color: var(--text-medium);
}

html[data-theme="dark"] a:hover {
    color: var(--primary-light);
}

html[data-theme="dark"] a:visited {
    color: var(--text-medium);
}

html[data-theme="dark"] a:active {
    color: var(--primary-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Loading Screen */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-1);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    width: 80px;
    height: 80px;
    position: relative;
}

.loader-inner {
    width: 100%;
    height: 100%;
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

html[data-theme="dark"] .navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

html[data-theme="dark"] .nav-brand {
    color: #f9fafb;
}

html[data-theme="dark"] .nav-brand i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

html[data-theme="dark"] .nav-brand .logo-icon {
    filter: none;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-brand:hover {
    transform: scale(1.05);
}

.nav-brand i {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-brand .logo-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: var(--bg-light);
    border: 2px solid var(--border-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.theme-toggle:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(20deg);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 0.5rem;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 70px;
    background: #0f172a;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    animation: heroZoom 20s ease-in-out infinite alternate;
    opacity: 0.4;
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.92) 0%, 
        rgba(30, 64, 175, 0.94) 25%,
        rgba(37, 99, 235, 0.90) 50%,
        rgba(30, 64, 175, 0.94) 75%,
        rgba(30, 58, 138, 0.92) 100%);
    z-index: 1;
}

.hero-gradient-overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(217, 119, 6, 0.12) 0%, transparent 50%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255, 255, 255, 0.03) 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.5;
    z-index: 2;
    animation: patternMove 20s linear infinite;
}

@keyframes patternMove {
    0% {
        background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    }
    100% {
        background-position: 60px 60px, 60px 90px, 90px 30px, 30px 60px;
    }
}

.hero-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 3;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 4;
    text-align: center;
    color: white;
    padding: 2rem;
    max-width: 1000px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    margin-bottom: 2.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    animation: fadeInDown 0.8s ease;
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.hero-badge i {
    font-size: 1.2rem;
    color: var(--accent-color);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.gradient-text {
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.3));
    position: relative;
    display: inline-block;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    animation: fadeInUp 1s ease 0.2s both;
    line-height: 1.9;
    font-weight: 400;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 4rem;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: white;
    color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-stat-item {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-stat-item::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-stat-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.4);
}

.hero-stat-item:hover::before {
    opacity: 1;
}

.hero-stat-item .stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #ffffff;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.5);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    font-weight: 500;
    position: relative;
    z-index: 1;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 2;
    pointer-events: none;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    animation: float 20s infinite;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.shape-1 {
    width: 500px;
    height: 500px;
    top: -10%;
    left: -5%;
    animation-delay: 0s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    max-width: 100%;
}

.shape-2 {
    width: 400px;
    height: 400px;
    top: 40%;
    right: -5%;
    animation-delay: 5s;
    background: radial-gradient(circle, rgba(217, 119, 6, 0.15) 0%, rgba(217, 119, 6, 0.05) 50%, transparent 100%);
    max-width: 100%;
}

.shape-3 {
    width: 300px;
    height: 300px;
    bottom: -5%;
    left: 45%;
    animation-delay: 10s;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.04) 50%, transparent 100%);
    max-width: 100%;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 15%;
    animation-delay: 15s;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.12) 0%, rgba(5, 150, 105, 0.04) 50%, transparent 100%);
    max-width: 100%;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) translateX(0) rotate(0deg) scale(1); 
        opacity: 0.6;
    }
    25% { 
        transform: translateY(-40px) translateX(20px) rotate(90deg) scale(1.05); 
        opacity: 0.8;
    }
    50% { 
        transform: translateY(-20px) translateX(-20px) rotate(180deg) scale(1.1); 
        opacity: 1;
    }
    75% { 
        transform: translateY(30px) translateX(10px) rotate(270deg) scale(0.95); 
        opacity: 0.7;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    animation: arrow 2s infinite;
}

.arrow span:nth-child(2) {
    animation-delay: 0.2s;
    margin-top: -6px;
}

.arrow span:nth-child(3) {
    animation-delay: 0.4s;
    margin-top: -6px;
}

@keyframes arrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Statistics Section */
.statistics {
    padding: 4rem 0;
    background: #FFFFFF;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-top: 0px solid #FBFBFB;
    border-bottom: 1px solid #EFEFEF;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    width: 100%;
    box-sizing: border-box;
}

.stats-grid .stat-card {
    max-width: 100%;
    box-sizing: border-box;
}

.stat-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 2rem 1.75rem;
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(30, 58, 138, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(30, 58, 138, 0.08);
    position: relative;
    overflow: hidden;
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.02) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.15), 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.25);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.9rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(30, 58, 138, 0.2);
    position: relative;
    z-index: 1;
}

.stat-icon::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card:hover .stat-icon::after {
    opacity: 1;
}

.stat-content {
    flex: 1;
    position: relative;
    z-index: 1;
    min-width: 0;
    overflow: hidden;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.stat-card .stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
    position: relative;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
}

.stat-card .stat-number::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    opacity: 0.3;
}

.stat-label {
    color: var(--text-medium);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    margin-top: 0.25rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    display: block;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 6rem 0;
    background: #F3F3F3;
    border-top: 0px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0.05;
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: rotate(360deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-link {
    position: relative;
    z-index: 1;
}

.service-link a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.service-link a:hover {
    gap: 1rem;
    color: var(--text-medium);
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: #FFFFFF;
    position: relative;
    border-top: 0px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
}


.form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.form-container {
    position: relative;
    z-index: 1;
}

.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 2rem;
    border-radius: 30px;
    box-shadow: var(--shadow-xl);
    border: 1px solid #F4F4F4;
}

/* Form Info Card */
.form-info-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-header {
    text-align: center;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(30, 58, 138, 0.1);
}

.info-header h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.info-header h3 i {
    color: var(--accent-color);
}

.info-header p {
    color: var(--text-medium);
    font-size: 1rem;
    margin: 0;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.03) 0%, rgba(59, 130, 246, 0.02) 100%);
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 138, 0.08);
    transition: all 0.3s ease;
}

.info-item:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.06) 0%, rgba(59, 130, 246, 0.04) 100%);
    border-color: rgba(30, 58, 138, 0.15);
    transform: translateX(5px);
}

.info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.2);
}

.info-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.info-text p {
    font-size: 0.95rem;
    color: var(--text-medium);
    line-height: 1.6;
    margin: 0;
}

.info-process {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(245, 158, 11, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(217, 119, 6, 0.1);
}

.info-process h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-process h4 i {
    color: var(--accent-color);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 12px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 2px 8px rgba(217, 119, 6, 0.3);
}

.step-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.info-contact {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
    border-radius: 16px;
    border: 1px solid rgba(30, 58, 138, 0.1);
}

.info-contact h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-contact h4 i {
    color: var(--accent-color);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(30, 58, 138, 0.08);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-item i {
    width: 20px;
    color: var(--primary-color);
    font-size: 1rem;
}

/* Dark Mode - Form Info Card */
html[data-theme="dark"] .info-item {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

html[data-theme="dark"] .info-item:hover {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.25) 0%, rgba(59, 130, 246, 0.15) 100%);
    border-color: rgba(59, 130, 246, 0.3);
}

html[data-theme="dark"] .info-text h4 {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .info-text p {
    color: var(--text-light);
}

html[data-theme="dark"] .info-process {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .process-step {
    background: rgba(45, 45, 45, 0.6);
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .step-text {
    color: #f9fafb;
}

html[data-theme="dark"] .info-contact {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.15) 0%, rgba(59, 130, 246, 0.1) 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

html[data-theme="dark"] .contact-item {
    color: var(--text-light);
    border-bottom-color: rgba(59, 130, 246, 0.2);
}

html[data-theme="dark"] .contact-item i {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .glass-card {
    background: rgba(45, 45, 45, 0.9);
    border-color: rgba(64, 64, 64, 0.5);
}

/* Dark Mode - Mobile Menu */
html[data-theme="dark"] .nav-menu {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.98) 0%, rgba(31, 31, 31, 0.98) 100%);
    border-right-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .nav-menu li {
    border-bottom-color: rgba(64, 64, 64, 0.3);
}

html[data-theme="dark"] .nav-menu a {
    color: #f9fafb;
}

html[data-theme="dark"] .nav-menu a i {
    background: rgba(30, 58, 138, 0.1);
    color: var(--primary-color);
}

html[data-theme="dark"] .nav-menu a:hover, html[data-theme="dark"] .nav-menu a:active {
    background: linear-gradient(90deg, rgba(30, 58, 138, 0.1) 0%, rgba(30, 58, 138, 0.05) 100%);
    color: var(--primary-color);
}

html[data-theme="dark"] .menu-overlay {
    background: rgba(0, 0, 0, 0.5);
}

html[data-theme="dark"] .menu-logo-icon {
    filter: none;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    padding: 0.3rem;
}

html[data-theme="dark"] .stat-card {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.95) 0%, rgba(31, 31, 31, 0.95) 100%);
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .stat-card::before {
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
}

html[data-theme="dark"] .stat-card:hover {
    background: linear-gradient(135deg, rgba(45, 45, 45, 1) 0%, rgba(31, 31, 31, 1) 100%);
    border-color: var(--primary-light);
}

html[data-theme="dark"] .stat-card .stat-number {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .stat-label {
    color: var(--text-light);
}

/* Dark Mode - Section Backgrounds */
html[data-theme="dark"] .statistics {
    background: #2d2d2d !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

html[data-theme="dark"] .services {
    background: #1a1a1a !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

html[data-theme="dark"] .form-section {
    background: #2d2d2d !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

html[data-theme="dark"] .testimonials {
    background: #1a1a1a !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

html[data-theme="dark"] .features {
    background: #1f1f1f !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

html[data-theme="dark"] .contact {
    background: #2d2d2d !important;
    border-top-color: #404040 !important;
    border-bottom-color: #404040 !important;
}

/* Dark Mode - Service Cards */
html[data-theme="dark"] .service-card {
    background: #2d2d2d;
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .service-card h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .service-card p {
    color: #d1d5db;
}

html[data-theme="dark"] .service-link a {
    color: var(--text-medium);
}

html[data-theme="dark"] .service-link a:hover {
    color: var(--text-dark);
}

/* Dark Mode - Testimonial Cards */
html[data-theme="dark"] .testimonial-content {
    background: #2d2d2d;
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .testimonial-text {
    color: #f9fafb;
}

html[data-theme="dark"] .testimonial-author h4 {
    color: #f9fafb;
}

html[data-theme="dark"] .testimonial-author p {
    color: #d1d5db;
}

html[data-theme="dark"] .rating i {
    color: var(--accent-color);
}

html[data-theme="dark"] .testimonial-btn {
    background: #2d2d2d;
    border-color: #404040;
    color: #f9fafb;
}

html[data-theme="dark"] .testimonial-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

/* Dark Mode - Contact Cards */
html[data-theme="dark"] .contact-card {
    background: #2d2d2d;
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .contact-card h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .contact-card p {
    color: #d1d5db;
}

html[data-theme="dark"] .contact-card p i.fas,
html[data-theme="dark"] .contact-card p i.fab {
    color: #d1d5db !important;
    -webkit-text-fill-color: #d1d5db !important;
    background: rgba(59, 130, 246, 0.15) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
}

html[data-theme="dark"] .contact-card p a {
    color: var(--text-medium);
}

html[data-theme="dark"] .contact-card p a:hover {
    color: var(--text-dark);
}

html[data-theme="dark"] .contact-card i {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Dark Mode - Success Message */
html[data-theme="dark"] .success-message {
    background: #2d2d2d;
    color: #f9fafb;
}

html[data-theme="dark"] .success-message h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .success-message p {
    color: #d1d5db;
}

html[data-theme="dark"] .success-icon {
    color: var(--success-color);
}

/* Dark Mode - Back to Top */
html[data-theme="dark"] .whatsapp-button {
    background: #25D366;
}

html[data-theme="dark"] .whatsapp-button:hover {
    background: #20BA5A;
}

html[data-theme="dark"] .back-to-top {
    background: var(--gradient-primary);
    color: white;
}

html[data-theme="dark"] .back-to-top:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Dark Mode - Theme Toggle */
html[data-theme="dark"] .theme-toggle {
    background: #2d2d2d;
    border-color: #404040;
    color: #f9fafb;
}

html[data-theme="dark"] .theme-toggle:hover {
    background: var(--primary-color);
    color: white;
}

/* Dark Mode - Checkbox */
html[data-theme="dark"] .checkbox-label {
    color: #f9fafb;
}

html[data-theme="dark"] .checkbox-label input[type="checkbox"] {
    accent-color: var(--primary-color);
}

/* Dark Mode - Author Avatar */
html[data-theme="dark"] .author-avatar {
    background: var(--gradient-primary);
    color: white;
}

/* Dark Mode - Process Step */
html[data-theme="dark"] .process-step {
    background: rgba(45, 45, 45, 0.6);
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .step-text {
    color: #f9fafb;
}

/* Dark Mode - Hero Section */
html[data-theme="dark"] .hero {
    background: var(--hero-bg-gradient);
}

html[data-theme="dark"] .hero-title {
    color: #ffffff;
}

html[data-theme="dark"] .hero-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

html[data-theme="dark"] .hero-badge {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Dark Mode - Form Elements */
html[data-theme="dark"] .form-group input,
html[data-theme="dark"] .form-group select,
html[data-theme="dark"] .form-group textarea {
    background: #2d2d2d;
    color: #f9fafb;
    border-color: #404040;
}

html[data-theme="dark"] .form-group input:focus,
html[data-theme="dark"] .form-group select:focus,
html[data-theme="dark"] .form-group textarea:focus {
    border-color: var(--primary-light);
    background: #2d2d2d;
}

html[data-theme="dark"] .form-group label {
    color: #f9fafb;
}

/* Dark Mode - Buttons */
html[data-theme="dark"] .btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
}

html[data-theme="dark"] .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

html[data-theme="dark"] .btn-submit {
    background: var(--gradient-primary);
    color: white;
}

html[data-theme="dark"] .btn-submit:hover {
    background: var(--gradient-primary);
    color: white;
}

/* Dark Mode - Section Headers */
html[data-theme="dark"] .section-header h2 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: #f9fafb;
}

html[data-theme="dark"] .section-header p {
    color: #d1d5db;
}

html[data-theme="dark"] .section-badge {
    background: var(--gradient-primary);
    color: white;
}

html[data-theme="dark"] .feature-item {
    background: rgba(45, 45, 45, 0.95);
    border-color: rgba(64, 64, 64, 0.5);
}

html[data-theme="dark"] .feature-item:hover {
    background: rgba(45, 45, 45, 1);
    border-color: var(--primary-light);
}

html[data-theme="dark"] .feature-item h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .feature-item p {
    color: #d1d5db;
}

.deger-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group label i {
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
}

.checkbox-label input[type=checkbox] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.checkbox-label a {
    color: var(--text-dark);
    text-decoration: underline;
    font-weight: 600;
    transition: all 0.3s ease;
}

.checkbox-label a:hover {
    color: var(--text-medium);
    text-decoration: none;
}

/* Dark Mode - Checkbox Label Link */
html[data-theme="dark"] .checkbox-label a {
    color: var(--primary-lighter);
}

html[data-theme="dark"] .checkbox-label a:hover {
    color: var(--primary-light);
}

/* CAPTCHA Styles */
.captcha-group {
    margin-top: 1rem;
}

.captcha-container {
    display: flex;
    flex-direction: row;
    gap: 15px;
    align-items: stretch;
}

.captcha-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border: 2px solid var(--primary-color);
    border-radius: 12px;
    padding: 8px 10px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    min-height: 50px;
    flex: 1;
}

.captcha-question span {
    flex: 1;
    text-align: center;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 1px;
}

.captcha-refresh {
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.captcha-refresh:hover {
    background: var(--primary-dark);
    transform: rotate(180deg);
}

.captcha-refresh i {
    font-size: 0.85rem;
}

.captcha-refresh i.fa-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.captcha-group input[type="number"] {
    padding: 8px 10px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    flex: 1;
    min-width: 150px;
}

.captcha-group input[type="number"]:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-2px);
}

.captcha-hint {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
}

/* Dark Mode - CAPTCHA */
html[data-theme="dark"] .captcha-question {
    background: linear-gradient(135deg, rgba(45, 45, 45, 0.8) 0%, rgba(31, 31, 31, 0.8) 100%);
    border-color: var(--primary-light);
    color: var(--primary-lighter);
}

html[data-theme="dark"] .captcha-group input[type="number"] {
    background: #2d2d2d;
    color: #f9fafb;
    border-color: #404040;
}

html[data-theme="dark"] .captcha-group input[type="number"]:focus {
    border-color: var(--primary-light);
}

html[data-theme="dark"] .captcha-hint {
    color: #d1d5db;
}

/* Responsive - CAPTCHA */
@media (max-width: 768px) {
    .captcha-container {
        flex-direction: column;
        gap: 10px;
    }
    
    .captcha-question {
        flex: none;
    }
    
    .captcha-group input[type="number"] {
        flex: none;
        min-width: auto;
    }
}

.btn-submit {
    background: var(--gradient-primary);
    color: white;
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    text-align: center !important;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.success-message {
    text-align: center;
    padding: 3rem;
    background: var(--gradient-3);
    color: white;
    border-radius: 20px;
    margin-top: 2rem;
    animation: scaleIn 0.5s ease;
    box-shadow: 0 10px 30px rgba(5, 150, 105, 0.3);
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    animation: bounce 0.6s ease;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.success-message h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 3rem 0;
    background: #F3F3F3;
    border-top: 0px solid #EFEFEF;
    border-bottom: 1px solid #EFEFEF;
}

.testimonials-slider-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 1rem;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 2rem;
    will-change: transform;
    padding-left: 0;
    padding-right: 0;
}

.testimonial-card {
    flex: 0 0 calc((100% - 2rem) / 2);
    min-width: calc((100% - 2rem) / 2);
    max-width: calc((100% - 2rem) / 2);
    opacity: 1;
    transition: all 0.3s ease;
    box-sizing: border-box;
}


.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.testimonial-btn {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-dark);
}

.testimonial-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.testimonial-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonial-btn:disabled:hover {
    transform: none;
    background: var(--bg-white);
    color: var(--text-dark);
    border-color: var(--border-color);
}

.testimonial-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    position: relative;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}


.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    margin-top: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.author-info h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.rating {
    color: var(--accent-color);
    font-size: 0.9rem;
}


/* Features Section */
.features {
    padding: 6rem 0;
    background: #E8EDF4;
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
    border-top: 0px solid #FBFBFB;
    border-bottom: 1px solid #FBFBFB;
}


.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(30, 58, 138, 0.1);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.15);
}

.feature-item i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.feature-item p {
    color: var(--text-medium);
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background: #FFFFFF;
    border-top: 0px solid #FBFBFB;
    border-bottom: 1px solid #FBFBFB;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    border: 1px solid #F4F4F4;
    width: 100%;
    box-sizing: border-box;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.contact-card > i {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: block;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-card p {
    color: var(--text-light);
    margin: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.5;
}

.contact-card p i.fas,
.contact-card p i.fab {
    color: var(--text-light) !important;
    -webkit-text-fill-color: var(--text-light) !important;
    background: rgba(30, 58, 138, 0.1) !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1;
}

.contact-card p a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card p a:hover {
    color: var(--text-medium);
    text-decoration: underline;
}

/* Back to Top Button */
/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 90px;
    right: 30px;
    width: 50px;
    height: 50px;
    max-width: calc(100vw - 60px);
    background: #25D366;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
    background: #20BA5A;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    max-width: calc(100vw - 60px);
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-sizing: border-box;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: var(--shadow-xl);
}

/* Service Detail Pages */
.page-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 100px 0 50px;
    margin-top: 50px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin: 1rem 0;
    color: white;
}

.page-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.service-detail {
    padding: 60px 0;
    background: var(--bg-white);
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    margin-top: 2rem;
}

.service-intro {
    margin-bottom: 3rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 2.5rem;
}

.service-intro h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.service-features {
    margin-bottom: 3rem;
}

.service-features h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature-item-detail {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.feature-item-detail:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item-detail i {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item-detail h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.feature-item-detail p {
    color: var(--text-medium);
    line-height: 1.6;
}

.service-process {
    margin-bottom: 3rem;
}

.service-process h3 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    padding-left: 2rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    position: relative;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    padding-top: 0.5rem;
}

.timeline-content h4 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-medium);
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.sidebar-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-info-sidebar p {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-medium);
    margin-bottom: 0.75rem;
}

.contact-info-sidebar i {
    color: var(--primary-color);
    width: 20px;
}

.contact-info-sidebar a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-sidebar a:hover {
    color: var(--text-medium);
    text-decoration: underline;
}

.contact-card a {
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-card a:hover {
    color: var(--text-medium);
    text-decoration: underline;
}

/* Dark Mode - Contact Links */
html[data-theme="dark"] .contact-info-sidebar a {
    color: var(--text-medium);
}

html[data-theme="dark"] .contact-info-sidebar a:hover {
    color: var(--text-dark);
}

html[data-theme="dark"] .contact-card a {
    color: var(--text-medium);
}

html[data-theme="dark"] .contact-card a:hover {
    color: var(--text-dark);
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid var(--border-light);
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1rem;
}

.service-info-box {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 2rem;
    margin-top: 2rem;
    border-left: 4px solid var(--primary-color);
}

.service-info-box h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-info-box .benefits-list {
    margin: 0;
}

.cta-section {
    background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Dark Mode - Service Pages */
html[data-theme="dark"] .page-header {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

html[data-theme="dark"] .service-detail {
    background: #1a1a1a;
}

html[data-theme="dark"] .service-intro h2 {
    color: #f9fafb;
}

html[data-theme="dark"] .service-intro p {
    color: #d1d5db;
}

html[data-theme="dark"] .service-features h3,
html[data-theme="dark"] .service-process h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .feature-item-detail {
    background: #2d2d2d;
    border-left-color: var(--primary-light);
}

html[data-theme="dark"] .feature-item-detail h4 {
    color: #f9fafb;
}

html[data-theme="dark"] .feature-item-detail p {
    color: #d1d5db;
}

html[data-theme="dark"] .timeline-content h4 {
    color: #f9fafb;
}

html[data-theme="dark"] .timeline-content p {
    color: #d1d5db;
}

html[data-theme="dark"] .process-timeline::before {
    background: #404040;
}

html[data-theme="dark"] .sidebar-card {
    background: #2d2d2d;
    border-color: #404040;
}

html[data-theme="dark"] .sidebar-card h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .sidebar-card p,
html[data-theme="dark"] .contact-info-sidebar p,
html[data-theme="dark"] .benefits-list li {
    color: #d1d5db;
}

html[data-theme="dark"] .cta-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

html[data-theme="dark"] .service-info-box {
    background: #2d2d2d;
    border-left-color: var(--primary-light);
}

html[data-theme="dark"] .service-info-box h3 {
    color: #f9fafb;
}

/* Legal Content Pages */
.legal-content {
    padding: 60px 0;
    background: var(--bg-white);
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-text ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text ul li {
    color: var(--text-medium);
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.legal-text strong {
    color: var(--text-dark);
    font-weight: 600;
}

.legal-date {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

/* Dark Mode - Legal Pages */
html[data-theme="dark"] .legal-content {
    background: #1a1a1a;
}

html[data-theme="dark"] .legal-text {
    background: #2d2d2d;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

html[data-theme="dark"] .legal-text h2 {
    color: #f9fafb;
    border-bottom-color: var(--primary-light);
}

html[data-theme="dark"] .legal-text h3 {
    color: #f9fafb;
}

html[data-theme="dark"] .legal-text p,
html[data-theme="dark"] .legal-text ul li {
    color: #d1d5db;
}

html[data-theme="dark"] .legal-text strong {
    color: #f9fafb;
}

html[data-theme="dark"] .legal-date {
    border-top-color: #404040;
    color: #9ca3af;
}

/* Responsive - Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 0;
    }

    .legal-text {
        padding: 2rem 1.5rem;
    }

    .legal-text h2 {
        font-size: 1.5rem;
    }

    .legal-text h3 {
        font-size: 1.2rem;
    }
}

/* Responsive - Service Pages */
@media (max-width: 992px) {
    .service-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-sidebar {
        order: -1;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
        margin-top: 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .service-detail {
        padding: 40px 0;
    }

    .service-icon-large {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .service-intro h2 {
        font-size: 1.75rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .process-timeline {
        padding-left: 1.5rem;
    }

    .timeline-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a8a 100%);
    color: white;
    padding: 4rem 0 1rem;
    position: relative;
    border-top: 3px solid var(--primary-color);
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1557682250-33bd709cbe85?w=1920') center/cover;
    opacity: 0.03;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-lighter);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 1.1rem;
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-weight: 400;
}

.footer-section ul li a:hover {
    color: var(--primary-lighter);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(59, 130, 246, 0.15);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-lighter);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    opacity: 0.9;
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, 0.85);
}

.footer-bottom p {
    font-size: 0.95rem;
}

/* Mobile Menu Overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-sizing: border-box;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-shapes {
        overflow: hidden;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(249, 250, 251, 0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 320px;
        max-width: 85vw;
        height: 100vh;
        text-align: left;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 40px rgba(0, 0, 0, 0.15), -2px 0 20px rgba(0, 0, 0, 0.1);
        padding: 0;
        gap: 0;
        z-index: 999;
        overflow-y: auto;
        overflow-x: hidden;
        box-sizing: border-box;
        border-right: 1px solid rgba(30, 58, 138, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .menu-header {
        width: 100%;
        padding: 1.5rem 1.5rem 1rem;
        background: var(--gradient-primary);
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
        margin-bottom: 1rem;
    }

    .menu-brand {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: white;
        font-size: 1.2rem;
        font-weight: 700;
    }

    .menu-brand i {
        font-size: 1.5rem;
        background: rgba(255, 255, 255, 0.2);
        padding: 0.5rem;
        border-radius: 10px;
    }

    .menu-logo-icon {
        width: 40px;
        height: 40px;
        object-fit: contain;
        background: rgba(255, 255, 255, 1);
        padding: 0.3rem;
        border-radius: 8px;
        display: block;
        flex-shrink: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .menu-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        cursor: pointer;
        transition: all 0.3s ease;
        font-size: 1.2rem;
    }

    .menu-close:hover {
        background: rgba(255, 255, 255, 0.3);
        transform: rotate(90deg);
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(229, 231, 235, 0.5);
        list-style: none;
    }

    .nav-menu li:not(.menu-header):last-child {
        border-bottom: none;
    }

    .nav-menu a {
        display: flex;
        align-items: center;
        gap: 1rem;
        padding: 1.25rem 1.5rem;
        color: var(--text-dark);
        font-weight: 500;
        font-size: 1rem;
        transition: all 0.3s ease;
        position: relative;
        text-decoration: none;
    }

    .nav-menu a i {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        font-size: 1.1rem;
        transition: all 0.3s ease;
        background: rgba(30, 58, 138, 0.1);
        border-radius: 8px;
        padding: 0.5rem;
    }

    .nav-menu a span {
        flex: 1;
    }

    .nav-menu a::after {
        display: none;
    }

    .nav-menu a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: var(--gradient-primary);
        transform: scaleY(0);
        transition: transform 0.3s ease;
        border-radius: 0 4px 4px 0;
    }

    .nav-menu a:hover,
    .nav-menu a:active {
        background: linear-gradient(90deg, rgba(30, 58, 138, 0.08) 0%, rgba(30, 58, 138, 0.03) 100%);
        color: var(--primary-color);
        padding-left: 2rem;
    }

    .nav-menu a:hover i,
    .nav-menu a:active i {
        background: var(--gradient-primary);
        color: white;
        transform: scale(1.1);
    }

    .nav-menu a:hover::before,
    .nav-menu a:active::before {
        transform: scaleY(1);
    }

    .hamburger {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .hero-image {
        background-attachment: scroll;
        animation: none;
    }

    .hero-title {
        font-size: 2.5rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-badge {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-stat-item {
        padding: 1.5rem;
    }

    .hero-stat-item .stat-number {
        font-size: 2.5rem;
        color: #ffffff;
    }
    
    .stat-card {
        padding: 1.75rem 1.5rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-icon {
        width: 65px;
        height: 65px;
        font-size: 1.8rem;
        margin: 0 auto;
    }

    .stat-card .stat-number {
        font-size: 1.9rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .form-info-card {
        order: -1;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-header p {
        font-size: 1rem;
    }

    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }

    .services-grid,
    .contact-grid,
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonials-slider {
        gap: 1.5rem;
    }

    .testimonial-card {
        min-width: 100%;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .stat-card {
        padding: 1.5rem 1.2rem;
        flex-direction: column;
        text-align: center;
        gap: 0.9rem;
    }

    .stat-icon {
        width: 60px;
        height: 60px;
        font-size: 1.6rem;
        margin: 0 auto;
    }

    .stat-card .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .testimonial-content {
        padding: 2rem 1.5rem;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card i {
        font-size: 2.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .whatsapp-button {
        bottom: 75px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden;
        width: 100%;
        position: relative;
    }

    .container {
        padding: 0 12px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .nav-menu {
        width: 300px;
        max-width: 90vw;
    }

    .menu-header {
        padding: 1.25rem 1.25rem 0.75rem;
    }

    .menu-brand {
        font-size: 1.1rem;
    }

    .menu-brand i {
        font-size: 1.3rem;
        padding: 0.4rem;
    }

    .menu-logo-icon {
        width: 35px;
        height: 35px;
        padding: 0.25rem;
        background: rgba(255, 255, 255, 1);
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }

    .menu-close {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
    }

    .nav-menu a {
        padding: 1.1rem 1.25rem;
        font-size: 0.95rem;
    }

    .nav-menu a i {
        width: 22px;
        height: 22px;
        font-size: 1rem;
        padding: 0.4rem;
    }

    * {
        max-width: 100%;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .hero-stat-item {
        padding: 1.2rem;
    }

    .hero-stat-item .stat-number {
        font-size: 2rem;
        color: #ffffff;
    }
    
    .stat-card .stat-number {
        font-size: 2rem;
        color: var(--primary-color);
    }

    .form-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-container {
        padding: 1.5rem 1rem;
    }

    .form-info-card {
        order: -1;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .glass-card {
        padding: 2rem 1.5rem;
    }

    .shape-1,
    .shape-2,
    .shape-3,
    .shape-4 {
        display: none;
    }

    .social-links {
        justify-content: center;
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Selection */
::selection {
    background: var(--primary-color);
    color: white;
}

/* Dark Mode - Mobile Menu Logo (480px) */
@media (max-width: 480px) {
    html[data-theme="dark"] .menu-logo-icon {
        filter: none;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
        padding: 0.25rem;
    }
}


