/* ========================================
   KM Dental Design - Sağlık Turizmi Landing Page
   Modern, CTA Odaklı, Responsive Tasarım
   ======================================== */

/* ========= RESET & BASE STYLES ========= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Hero Inspired Theme */
    --primary-dark: #1F2638;
    --primary-mid: #3a4a5e;
    --primary-light: #6E7CA2;
    --accent-purple: #8a96c7;
    
    /* Legacy Support */
    --primary-blue: #1F2638;
    --accent-blue: #6E7CA2;
    --light-blue: #E8F4F8;
    --white: #FFFFFF;
    --off-white: #F9FAFB;
    --grey-light: #F5F7FA;
    --grey-medium: #999999;
    --grey-dark: #4A5568;
    --text-dark: #1A202C;
    --text-light: #64748B;
    --success-green: #10B981;
    --warning-orange: #F59E0B;
    
    /* Gradients - 2025 Modern */
    --gradient-primary: linear-gradient(180deg, #1F2638 0%, #6E7CA2 100%);
    --gradient-reverse: linear-gradient(180deg, #6E7CA2 0%, #1F2638 100%);
    --gradient-light: linear-gradient(135deg, #E8F4F8 0%, #FFFFFF 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(31,38,56,0.9) 0%, rgba(110,124,162,0.8) 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
    --gradient-card: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    
    /* Shadows - Modern Depth */
    --shadow-sm: 0 1px 3px rgba(31,38,56,0.08), 0 1px 2px rgba(31,38,56,0.06);
    --shadow-md: 0 4px 6px rgba(31,38,56,0.1), 0 2px 4px rgba(31,38,56,0.08);
    --shadow-lg: 0 10px 15px rgba(31,38,56,0.12), 0 4px 6px rgba(31,38,56,0.08);
    --shadow-xl: 0 20px 25px rgba(31,38,56,0.12), 0 10px 10px rgba(31,38,56,0.06);
    --shadow-2xl: 0 25px 50px rgba(31,38,56,0.15), 0 12px 24px rgba(31,38,56,0.10);
    --shadow-glow: 0 0 30px rgba(110,124,162,0.2);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.75);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing - Fluid */
    --spacing-xs: clamp(0.5rem, 1vw, 0.75rem);
    --spacing-sm: clamp(1rem, 2vw, 1.5rem);
    --spacing-md: clamp(2rem, 4vw, 3rem);
    --spacing-lg: clamp(4rem, 6vw, 6rem);
    --spacing-xl: clamp(6rem, 8vw, 10rem);
    
    /* Transitions - Smooth */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Border Radius - Modern */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --radius-full: 9999px;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
}

/* ========= TYPOGRAPHY ========= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-family: var(--font-display);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-family: var(--font-display);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

p {
    margin-bottom: 1rem;
    color: var(--grey-dark);
}

/* ========= CONTAINER ========= */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ========= NAVIGATION MENU - MINIMAL & CLEAN 2025 ========= */
.navbar {
    position: fixed;
    top: 65px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1400px;
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(248,250,252,0.95) 100%);
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: var(--radius-xl);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 
                0 2px 8px rgba(0, 64, 128, 0.05),
                inset 0 1px 0 rgba(255, 255, 255, 0.6);
    z-index: 10000;
    transition: all var(--transition-normal);
}

.navbar.hidden {
    transform: translateX(-50%) translateY(-150%);
    opacity: 0;
}

.navbar::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 1px;
    background: linear-gradient(135deg, rgba(0,64,128,0.1) 0%, transparent 50%, rgba(0,64,128,0.05) 100%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    position: relative;
}

/* Left Menu Items - All Navigation Links */
.nav-menu-left {
    display: flex;
    align-items: center;
    gap: 2rem;
    justify-content: flex-start;
}

/* Right Actions - Languages + CTA */
.nav-actions-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: flex-end;
    margin-left: auto;  /* Tam sağa yasla */
    padding-right: 0.5rem;
}

/* Center Big Elevated Logo */
.nav-logo-center {
    position: absolute;
    top: -40px;  /* Daha aşağı taşıyor */
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
}

.logo-elevated {
    background: linear-gradient(135deg, 
        rgba(255,255,255,0.98) 0%, 
        rgba(248,250,252,0.98) 50%,
        rgba(255,255,255,0.98) 100%);
    backdrop-filter: blur(30px);
    padding: 15px;
    border-radius: 100px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 8px 24px rgba(0, 64, 128, 0.1),
        0 4px 12px rgba(0, 64, 128, 0.08),
        inset 0 2px 4px rgba(255, 255, 255, 1),
        inset 0 -2px 4px rgba(0, 0, 0, 0.05);
    border: 3px solid rgba(255, 255, 255, 0.8);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

/* Gradient border effect */
.logo-elevated::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 100px;
    background: linear-gradient(135deg, 
        rgba(0,64,128,0.3), 
        rgba(255,215,0,0.2) 25%,
        transparent 50%, 
        rgba(0,64,128,0.2));
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

/* Shine effect */
.logo-elevated::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: logoShine 6s infinite;
}

@keyframes logoShine {
    0%, 100% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    50% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.logo-elevated:hover::before {
    opacity: 1;
}

.logo-elevated:hover {
    transform: translateY(-8px) scale(1.08);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.25),
        0 12px 30px rgba(0, 64, 128, 0.15),
        0 6px 15px rgba(0, 64, 128, 0.1),
        inset 0 3px 6px rgba(255, 255, 255, 1),
        inset 0 -3px 6px rgba(0, 0, 0, 0.08);
    border-color: rgba(255, 255, 255, 1);
}

.logo-elevated img {
    height: 100px;
    width: auto;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.15));
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.logo-elevated:hover img {
    filter: drop-shadow(0 6px 20px rgba(0, 64, 128, 0.3));
    transform: scale(1.05);
}

/* Mobile Menu - Hidden on Desktop */
.nav-menu-mobile {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-blue);
    border-radius: 3px;
    transition: var(--transition-fast);
}

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

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

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

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

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
    border-radius: 2px;
    transition: transform var(--transition-normal);
}

.nav-link:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


.nav-language {
    display: flex;
    gap: 0.25rem;
    background: var(--grey-light);
    padding: 0.25rem;
    border-radius: 50px;
}

.nav-lang-btn,
a.nav-lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--grey-dark);
    font-weight: 600;
    cursor: pointer;
    border-radius: 50px;
    transition: var(--transition-fast);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.nav-lang-btn .flag-img {
    width: 28px;
    height: 20px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-normal);
}

.nav-lang-btn .lang-text {
    font-size: 0.875rem;
    font-weight: 700;
}

.nav-lang-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.nav-lang-btn.active {
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
    color: var(--accent-blue);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.nav-lang-btn:hover .flag-img {
    transform: scale(1.15);
}

.nav-lang-btn.active .flag-img {
    animation: flagPulse 2s ease-in-out infinite;
}

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

.nav-appointment-btn {
    padding: 0.875rem 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    transition: all var(--transition-normal);
    font-size: 0.9375rem;
    letter-spacing: 0.3px;
    box-shadow: var(--shadow-md), 0 0 20px rgba(0, 64, 128, 0.2);
    position: relative;
    overflow: hidden;
}

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

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

.nav-appointment-btn:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: var(--shadow-xl), 0 0 30px rgba(0, 64, 128, 0.4);
}

.nav-appointment-btn:active {
    transform: translateY(-1px) scale(0.98);
}

.nav-appointment-btn i {
    font-size: 1.125rem;
    transition: transform var(--transition-normal);
    position: relative;
    z-index: 1;
}

.nav-appointment-btn span {
    position: relative;
    z-index: 1;
}

.nav-appointment-btn:hover i {
    transform: rotate(10deg) scale(1.1);
}

/* Floating Contact Buttons - Left Side - 2025 Modern */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 998;
}

.floating-buttons.left-side {
    left: 30px;
    right: auto;
}

.float-btn {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.875rem;
    color: var(--white);
    text-decoration: none;
    box-shadow: var(--shadow-lg), 0 0 30px rgba(0, 0, 0, 0.15);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.float-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.float-btn:hover::before {
    opacity: 1;
}

.float-btn:hover {
    transform: scale(1.15) translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    animation: floatBounce 3s ease-in-out infinite;
}

.whatsapp-btn:hover {
    transform: scale(1.15) translateY(-8px) rotate(5deg);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(37, 211, 102, 0.5);
}

.telegram-btn {
    background: linear-gradient(135deg, #0088cc 0%, #006699 100%);
}

.form-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    cursor: pointer;
    animation: floatBounce 3s ease-in-out infinite 0.5s;
}

.form-btn:hover {
    transform: scale(1.15) translateY(-8px) rotate(-5deg);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(102, 126, 234, 0.5);
}

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

/* Scroll to Top Button - Right Side */
.scroll-top-btn {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: #ffffff;
    border: none;
    border-radius: 16px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0, 64, 128, 0.3);
    backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 99999 !important;
    overflow: hidden;
}

.scroll-top-btn::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.scroll-top-btn:hover::before {
    opacity: 1;
}

.scroll-top-btn.visible {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0) !important;
    display: flex !important;
}

.scroll-top-btn:hover {
    transform: translateY(-8px) scale(1.08) rotate(5deg);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 64, 128, 0.4);
}

.scroll-top-btn.visible:hover {
    transform: translateY(-8px) scale(1.08) rotate(5deg);
}

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

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

/* ========= WELCOME POPUP MODAL ========= */
.welcome-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.welcome-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.modal-container {
    position: relative;
    z-index: 2;
    background: var(--white);
    border-radius: 24px;
    max-width: 520px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--grey-dark);
    font-size: 1.25rem;
    transition: var(--transition-fast);
    z-index: 3;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.2);
    transform: rotate(90deg);
}

.modal-content-wrapper {
    padding: 3rem 2.5rem;
    text-align: center;
}

.modal-logo {
    margin-bottom: 1.5rem;
}

.modal-logo img {
    max-width: 180px;
    height: auto;
}

.modal-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modal-description {
    color: var(--grey-dark);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.modal-form {
    text-align: left;
}

.modal-form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.modal-form-group input,
.modal-form-group select {
    width: 100%;
    padding: 1rem 1rem 1rem 1rem;
    border: 2px solid var(--grey-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: var(--transition-fast);
    background: #ffffff;
    color: #1e293b;
    font-weight: 500;
}

.modal-form-group input:focus,
.modal-form-group select:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--white);
    color: #0f172a;
}

/* Modal intl-tel-input overrides */
.modal-form-group .iti {
    width: 100%;
    position: relative;
    z-index: 1;
}

.modal-form-group .iti__flag-container {
    background: #ffffff !important;
    position: absolute !important;
    z-index: 3 !important;
    pointer-events: auto !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
}

.modal-form-group .iti__selected-flag {
    background: #ffffff !important;
    padding: 0 12px !important;
    position: relative !important;
    z-index: 3 !important;
    pointer-events: auto !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.phone-input-wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: stretch;
}

.phone-input-wrapper .phone-country-select {
    width: auto;
    min-width: 100px;
    flex-shrink: 0;
    padding-right: 2.5rem;
}

.phone-input-wrapper .phone-input {
    flex: 1;
    padding-left: 1rem !important;
    background: #ffffff !important;
}

.modal-form-group .phone-input {
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    padding-left: 75px !important;
}

.modal-form-group .iti input.phone-input,
.modal-form-group .iti input[type="tel"],
.modal-form-group .iti .phone-input {
    padding-left: 75px !important;
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    pointer-events: auto !important;
}

.modal-form-group .iti--separate-dial-code input.phone-input,
.modal-form-group .iti--separate-dial-code input[type="tel"] {
    padding-left: 100px !important;
}

/* Force padding for modal intl-tel-input instances */
.modal-form-group input.phone-input[type="tel"],
.modal-form-group input[type="tel"].phone-input {
    padding-left: 75px !important;
}

.modal-form-group .iti--separate-dial-code input[type="tel"],
.modal-form-group .iti--separate-dial-code .phone-input {
    padding-left: 100px !important;
}

.modal-form-group .iti__country-list {
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e2e8f0 !important;
    max-height: 250px !important;
    z-index: 9999 !important;
}

.modal-form-group .iti__country {
    padding: 10px 15px !important;
    color: #1e293b !important;
    font-weight: 500 !important;
}

.modal-form-group .iti__country:hover {
    background: #f1f5f9 !important;
    color: var(--primary-dark) !important;
}

.modal-form-group .iti__selected-dial-code,
.modal-form-group .iti__dial-code,
.modal-form-group .iti__country-name {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.modal-form-group .iti__arrow {
    border-top: 4px solid #1e293b !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
}

.modal-form-group .iti__selected-flag .iti__flag {
    margin-right: 8px !important;
}

.modal-form-group .iti__search-input {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    color: #1e293b !important;
    font-weight: 500 !important;
    padding: 10px !important;
}

.modal-form-group .iti__search-input::placeholder {
    color: #94a3b8 !important;
}

.modal-form-group .iti__divider {
    border-bottom: 1px solid #e2e8f0 !important;
}

.modal-form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: var(--grey-medium);
    font-size: 1rem;
    pointer-events: none;
    transition: var(--transition-fast);
    background: #ffffff;
    padding: 0 0.25rem;
    z-index: 0;
}

.modal-form-group input:focus + label,
.modal-form-group input:not(:placeholder-shown) + label,
.modal-form-group select:focus + label,
.modal-form-group select:valid + label,
.modal-form-group .phone-input-wrapper:has(input:focus) + label,
.modal-form-group .phone-input-wrapper:has(input:not(:placeholder-shown)) + label,
.modal-form-group .phone-input-wrapper:has(select:focus) + label,
.modal-form-group .phone-input-wrapper:has(select:valid) + label {
    top: -0.5rem;
    left: 0.75rem;
    font-size: 0.75rem;
    color: var(--accent-blue);
    background: var(--white);
}

.modal-form-group select,
.form-group .country-select,
.form-group .phone-select,
.modal-form-group .phone-select,
.phone-country-select {
    cursor: pointer;
    appearance: none;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="12" height="8"><path fill="%231e293b" d="M6 8L0 0h12z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
    color: #1e293b !important;
    font-weight: 600 !important;
}

.modal-form-group select option,
.form-group .country-select option,
.form-group .phone-select option,
.modal-form-group .phone-select option,
.phone-country-select option {
    color: #1e293b !important;
    background: #ffffff !important;
    font-weight: 500 !important;
    padding: 10px !important;
}

.modal-recaptcha {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.modal-submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 4px 15px rgba(31, 38, 56, 0.4);
}

.modal-submit-btn i {
    font-size: 1.25rem;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(31, 38, 56, 0.5);
}

.modal-submit-btn:active {
    transform: translateY(0);
}

/* intl-tel-input custom styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    z-index: 10;
}

.iti__selected-flag {
    padding: 0 8px 0 12px;
    background: transparent;
}

.iti__country-list {
    max-height: 250px;
    border-radius: 8px;
    box-shadow: var(--shadow-lg);
}

.iti__country {
    padding: 10px 12px;
}

.iti__country:hover {
    background: var(--light-blue);
}

/* Flatpickr custom styles */
.flatpickr-calendar {
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.flatpickr-day.selected {
    background: var(--accent-blue) !important;
    border-color: var(--accent-blue) !important;
}

.flatpickr-day.today {
    border-color: var(--primary-blue);
}

.flatpickr-day:hover {
    background: var(--light-blue);
}

/* ========= HERO SECTION ========= */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8rem;
    background-image: linear-gradient(180deg, #1F2638 35%, #6E7CA2 100%);
    overflow: hidden;
}

/* Hero Background Logo - Sol Alt */
.hero-logo-background {
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 60%;
    max-width: 800px;
    opacity: 0.08;
    z-index: 1;
    pointer-events: none;
}

.hero-logo-background img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.2);
}

.hero-logo {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease;
}

.hero-logo-img {
    max-width: 250px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

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

.hero-overlay {
    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(255,255,255,0.04) 0%, transparent 50%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 2rem 0;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text {
    text-align: left;
    color: var(--white);
}

.hero-title {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255,255,255,0.95);
    margin: 0 0 3rem 0;
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(4, auto);
    justify-content: flex-start;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 13px;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition-normal);
}

.feature-badge:hover {
    background: rgba(255,255,255,0.25);
    transform: translateY(-3px);
}

.feature-badge i {
    font-size: 1.5rem;
}

.hero-cta {
    display: flex;
    justify-content: flex-start;
    gap: 1.5rem;
    flex-wrap: nowrap;
}

/* Hero Image - Yuvarlak Fotoğraf Alanı */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.hero-image-circle {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: #1F2638;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 15px 40px rgba(0, 64, 128, 0.2),
        inset 0 0 0 8px rgba(255, 255, 255, 0.1);
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image-circle img {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    z-index: 1;
    border-radius: 50%;
}

/* Yuvarlak Border - Gümüş Çerçeve ile Parıltı */
.image-circle-border {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    border: 3px solid;
    border-color: 
        rgba(255, 255, 255, 0.9)
        rgba(200, 200, 200, 0.5)
        rgba(200, 200, 200, 0.5)
        rgba(200, 200, 200, 0.5);
    animation: shimmerRotate 3s linear infinite;
    pointer-events: none;
    z-index: 100 !important;
    box-shadow: 
        0 0 20px rgba(255, 255, 255, 0.4),
        inset 0 0 10px rgba(255, 255, 255, 0.2);
}

/* Border Parıltı Animasyonu */
@keyframes shimmerRotate {
    0% {
        border-color: 
            rgba(255, 255, 255, 0.9)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5);
        transform: rotate(0deg);
    }
    25% {
        border-color: 
            rgba(200, 200, 200, 0.5)
            rgba(255, 255, 255, 0.9)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5);
        transform: rotate(90deg);
    }
    50% {
        border-color: 
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5)
            rgba(255, 255, 255, 0.9)
            rgba(200, 200, 200, 0.5);
        transform: rotate(180deg);
    }
    75% {
        border-color: 
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5)
            rgba(255, 255, 255, 0.9);
        transform: rotate(270deg);
    }
    100% {
        border-color: 
            rgba(255, 255, 255, 0.9)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5)
            rgba(200, 200, 200, 0.5);
        transform: rotate(360deg);
    }
}

@keyframes floatImage {
    0%, 100% { 
        transform: translateY(0) scale(1);
    }
    50% { 
        transform: translateY(-20px) scale(1.02);
    }
}

.cta-btn {
    padding: 1rem 2.5rem;
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    text-decoration: none;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

.cta-btn:hover::before {
    width: 400px;
    height: 400px;
}

.cta-btn > * {
    position: relative;
    z-index: 1;
}

.cta-btn.primary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid rgba(0, 64, 128, 0.1);
}

.cta-btn.primary:hover {
    background: var(--off-white);
    transform: translateY(-5px) scale(1.03);
    box-shadow: var(--shadow-xl), var(--shadow-glow);
    border-color: rgba(0, 64, 128, 0.2);
}

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

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

.cta-btn.large {
    padding: 1.5rem 3rem;
    font-size: 1.25rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

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

.mouse::before {
    content: '';
    width: 6px;
    height: 6px;
    background: rgba(255,255,255,0.8);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }
    100% {
        opacity: 0;
        top: 30px;
    }
}

/* ========= SECTION HEADERS ========= */
section {
    padding: var(--spacing-xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--grey-dark);
    max-width: 700px;
    margin: 0 auto;
}

/* ========= WELCOME SECTION ========= */
.welcome-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.welcome-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(31, 38, 56, 0.02) 100%);
    pointer-events: none;
}

.welcome-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 20px rgba(31, 38, 56, 0.15);
    animation: pulse-badge 3s ease-in-out infinite;
}

@keyframes pulse-badge {
    0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(31, 38, 56, 0.15); }
    50% { transform: scale(1.05); box-shadow: 0 6px 30px rgba(31, 38, 56, 0.25); }
}

.welcome-badge i {
    font-size: 1rem;
    color: #FFD700;
}

.welcome-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.welcome-feature-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 24px;
    display: flex;
    gap: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.welcome-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-light));
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.welcome-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(31, 38, 56, 0.12);
}

.welcome-feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon-large {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 8px 32px rgba(31, 38, 56, 0.2);
    transition: transform 0.4s ease;
}

.welcome-feature-card:hover .feature-icon-large {
    transform: scale(1.1) rotate(-5deg);
}

.feature-icon-large i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-badge-corner {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 32px;
    height: 32px;
    background: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 0.875rem;
    color: var(--primary-dark);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.feature-badge-corner.flag-badge {
    background: var(--white);
    padding: 4px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.feature-badge-corner.flag-badge img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.feature-content {
    flex: 1;
}

.feature-content h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.feature-content > p {
    color: var(--grey-dark);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

.feature-list li i {
    color: #10B981;
    font-size: 1rem;
    flex-shrink: 0;
}

.welcome-cta {
    text-align: center;
    margin-top: 4rem;
}

.cta-btn.massive {
    padding: 1.5rem 4rem;
    font-size: 1.25rem;
    font-weight: 700;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(31, 38, 56, 0.2);
}

.cta-btn.massive:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 16px 48px rgba(31, 38, 56, 0.3);
}

.welcome-cta-note {
    margin-top: 1.5rem;
    color: var(--grey-dark);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.welcome-cta-note i {
    color: #10B981;
    font-size: 1.125rem;
}

/* ========= TREATMENTS SECTION ========= */
.treatments-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #e8ecf1 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* Treatments Badge */
.treatments-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #6E7CA2, #1F2638);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.treatments-badge i {
    font-size: 1rem;
}

/* Featured Treatments */
.featured-treatments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.featured-treatment-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.featured-treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    transition: height var(--transition-normal);
}

.featured-treatment-card.featured-primary::before {
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.featured-treatment-card.featured-secondary::before {
    background: linear-gradient(90deg, #6E7CA2, #1F2638);
}

.featured-treatment-card.featured-tertiary::before {
    background: linear-gradient(90deg, #1F2638, #6E7CA2);
}

.featured-treatment-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: rgba(110,124,162,0.2);
}

.featured-treatment-card:hover::before {
    height: 100%;
    opacity: 0.05;
}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #1F2638;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.featured-badge.secondary {
    background: linear-gradient(135deg, #6E7CA2, #1F2638);
    color: var(--white);
}

.featured-badge.tertiary {
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    color: var(--white);
}

.featured-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.featured-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.featured-treatment-card:hover .featured-icon {
    transform: scale(1.1) rotate(-5deg);
}

.featured-treatment-card h3 {
    color: var(--primary-dark);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.featured-treatment-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.featured-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    align-content: flex-start;
}

.featured-features span {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(110,124,162,0.08);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.813rem;
    color: var(--primary-dark);
    font-weight: 500;
}

.featured-features span i {
    font-size: 0.75rem;
    color: var(--success-green);
}

.treatment-btn-featured {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    margin-top: auto;
}

.treatment-btn-featured:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
    background: linear-gradient(135deg, #6E7CA2, #1F2638);
}

.treatment-btn-featured i {
    transition: transform var(--transition-fast);
}

.treatment-btn-featured:hover i {
    transform: translateX(5px);
}

/* All Treatments Header */
.all-treatments-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-top: 3rem;
    border-top: 2px solid rgba(110,124,162,0.1);
}

.all-treatments-header h3 {
    font-size: 2rem;
    color: var(--primary-dark);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.all-treatments-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.treatments-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .treatments-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .treatments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modern Compact Treatment Cards */
.treatment-card-modern {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(110,124,162,0.1);
    transition: all var(--transition-normal);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-height: 90px;
}

.treatment-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #6E7CA2, #1F2638);
    transform: scaleY(0);
    transition: transform var(--transition-normal);
}

.treatment-card-modern:hover::before {
    transform: scaleY(1);
}

.treatment-card-modern:hover {
    transform: translateX(5px);
    border-color: rgba(110,124,162,0.3);
    box-shadow: var(--shadow-lg);
}

.treatment-icon-modern {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(110,124,162,0.1), rgba(31,38,56,0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all var(--transition-normal);
}

.treatment-icon-modern i {
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.treatment-card-modern:hover .treatment-icon-modern {
    background: linear-gradient(135deg, #6E7CA2, #1F2638);
    transform: scale(1.1) rotate(-5deg);
}

.treatment-card-modern:hover .treatment-icon-modern i {
    color: var(--white);
}

.treatment-content-modern {
    flex: 1;
}

.treatment-content-modern h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.25rem;
    line-height: 1.3;
}

.treatment-content-modern p {
    font-size: 0.813rem;
    color: var(--text-light);
    line-height: 1.4;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.treatment-btn-modern {
    width: 38px;
    height: 38px;
    background: rgba(110,124,162,0.1);
    border: 2px solid rgba(110,124,162,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
}

.treatment-btn-modern i {
    font-size: 1rem;
}

.treatment-card-modern:hover .treatment-btn-modern {
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    border-color: transparent;
    color: var(--white);
    transform: scale(1.1);
}

.treatment-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.treatment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,64,128,0.05) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--transition-normal);
    z-index: 0;
}

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

.treatment-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: var(--shadow-2xl), var(--shadow-glow);
    border-color: rgba(0, 64, 128, 0.2);
}

.treatment-card > * {
    position: relative;
    z-index: 1;
}

.treatment-image {
    width: 110px;
    height: 110px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.75rem;
    color: var(--white);
    box-shadow: var(--shadow-md), 0 0 30px rgba(0, 64, 128, 0.3);
    transition: all var(--transition-normal);
}

.treatment-card:hover .treatment-image {
    transform: scale(1.1) rotate(5deg);
    box-shadow: var(--shadow-xl), 0 0 40px rgba(0, 64, 128, 0.5);
}

.treatment-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.625rem;
    font-weight: 700;
}

.treatment-card p {
    margin-bottom: 1.75rem;
    min-height: 80px;
    color: var(--text-light);
    line-height: 1.7;
}

.treatment-btn {
    padding: 1rem 2.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-full);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

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

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

.treatment-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-lg), 0 0 25px rgba(0, 64, 128, 0.3);
}

.treatment-btn span {
    position: relative;
    z-index: 1;
}

/* ========= PROCESS SECTION ========= */
.process-section {
    background: var(--white);
}

.process-timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.process-step {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: center;
}

.process-step:nth-child(odd) {
    direction: ltr;
}

.process-step:nth-child(even) {
    direction: rtl;
}

.process-step:nth-child(even) .step-content {
    direction: ltr;
    text-align: right;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--gradient-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.step-content:hover {
    box-shadow: var(--shadow-md);
    transform: scale(1.02);
}

.step-content h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ========= GALLERY SECTION ========= */
.gallery-section {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 15% 25%, rgba(110,124,162,0.04) 0%, transparent 50%),
        radial-gradient(circle at 85% 75%, rgba(110,124,162,0.04) 0%, transparent 50%),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 60px,
            rgba(110,124,162,0.015) 60px,
            rgba(110,124,162,0.015) 61px
        );
    pointer-events: none;
}

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

.gallery-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.section-label {
    display: inline-block;
    color: #6E7CA2;
    font-weight: 800;
    font-size: 0.813rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, rgba(110,124,162,0.1), rgba(138,150,199,0.1));
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(110,124,162,0.15);
}

.gallery-section .section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.gallery-section .section-subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: 
        0 15px 50px rgba(31, 38, 56, 0.08),
        0 5px 15px rgba(31, 38, 56, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 3px solid rgba(110, 124, 162, 0.1);
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(31, 38, 56, 0) 0%, 
        rgba(31, 38, 56, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.gallery-item:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(31, 38, 56, 0.15),
        0 10px 30px rgba(31, 38, 56, 0.1);
    border-color: rgba(110, 124, 162, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(31, 38, 56, 0.92) 0%, 
        rgba(110, 124, 162, 0.92) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--white);
    font-size: 3.5rem;
    transition: all 0.3s ease;
    animation: zoomPulse 2s ease-in-out infinite;
}

.gallery-item:hover .gallery-overlay i {
    transform: scale(1.2);
}

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

.gallery-overlay::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.gallery-cta {
    text-align: center;
}

.gallery-cta .cta-btn {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    box-shadow: 
        0 15px 40px rgba(31, 38, 56, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.gallery-cta .cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(31, 38, 56, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ========= ABOUT DOCTOR SECTION ========= */
.about-doctor-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.about-doctor-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(110,124,162,0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(110,124,162,0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-doctor-section .container {
    position: relative;
    z-index: 1;
}

/* Main Wrapper - Two Column Layout */
.about-main-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4.5rem;
    margin-bottom: 4rem;
}

/* Left Column - About Info */
.about-info {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 
        0 15px 50px rgba(31, 38, 56, 0.08),
        0 5px 15px rgba(31, 38, 56, 0.04);
    border: 2px solid rgba(110, 124, 162, 0.08);
    transition: all 0.4s ease;
}

.about-info:hover {
    box-shadow: 
        0 25px 70px rgba(31, 38, 56, 0.12),
        0 10px 25px rgba(31, 38, 56, 0.06);
    transform: translateY(-5px);
}

.about-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 900;
    position: relative;
    padding-bottom: 1.5rem;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 6px;
    background: linear-gradient(90deg, #1F2638, #6E7CA2, #8a96c7);
    border-radius: 3px;
}

.about-text {
    color: #2c3e50;
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.063rem;
    text-align: justify;
}

/* Education Section */
.about-education {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 3px solid rgba(110, 124, 162, 0.1);
}

.education-title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.education-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.education-list li {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(110,124,162,0.05), rgba(138,150,199,0.03));
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(110, 124, 162, 0.08);
    position: relative;
    overflow: hidden;
}

.education-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1F2638, #6E7CA2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.education-list li:hover {
    background: linear-gradient(135deg, rgba(110,124,162,0.1), rgba(138,150,199,0.08));
    transform: translateX(10px);
    border-color: rgba(110, 124, 162, 0.2);
    box-shadow: 0 8px 25px rgba(31, 38, 56, 0.08);
}

.education-list li:hover::before {
    transform: scaleY(1);
}

.education-list li i {
    color: #6E7CA2;
    font-size: 1.75rem;
    min-width: 35px;
    transition: transform 0.3s ease;
}

.education-list li:hover i {
    transform: scale(1.15) rotate(-5deg);
}

.education-list li span {
    color: #1F2638;
    font-weight: 700;
    font-size: 1.063rem;
}

/* Right Column - Doctor Card */
.about-doctor-card {
    position: sticky;
    top: 100px;
}

.doctor-card-inner {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(31, 38, 56, 0.1),
        0 8px 25px rgba(31, 38, 56, 0.06);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid rgba(110, 124, 162, 0.1);
}

.doctor-card-inner:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 35px 90px rgba(31, 38, 56, 0.15),
        0 15px 40px rgba(31, 38, 56, 0.1);
    border-color: rgba(110, 124, 162, 0.2);
}

.doctor-image-wrapper {
    position: relative;
    background: linear-gradient(135deg, #1F2638 0%, #6E7CA2 100%);
    padding: 2.5rem;
    padding-bottom: 0;
}

.doctor-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.doctor-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px 24px 0 0;
    position: relative;
    z-index: 1;
    transition: transform 0.5s ease;
}

.doctor-card-inner:hover .doctor-image-wrapper img {
    transform: scale(1.05);
}

.experience-floating-badge {
    position: absolute;
    top: 2.5rem;
    right: 2.5rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 1.25rem 1.75rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid rgba(110, 124, 162, 0.1);
}

.doctor-card-inner:hover .experience-floating-badge {
    transform: scale(1.1) rotate(-5deg);
}

.badge-number {
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 0.35rem;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.badge-text {
    font-size: 0.813rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #2c3e50;
}

/* Doctor Card Info */
.doctor-card-info {
    padding: 2.5rem;
    background: transparent;
}

.doctor-name {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.doctor-contact {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, rgba(110,124,162,0.05), rgba(138,150,199,0.03));
    border-radius: 18px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(110, 124, 162, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #1F2638, #6E7CA2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.contact-item:hover {
    background: linear-gradient(135deg, rgba(110,124,162,0.1), rgba(138,150,199,0.08));
    border-color: rgba(110, 124, 162, 0.2);
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(31, 38, 56, 0.08);
}

.contact-item:hover::before {
    transform: scaleY(1);
}

.contact-item i {
    color: #6E7CA2;
    font-size: 1.375rem;
    min-width: 28px;
    transition: transform 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.15);
}

.contact-item span {
    color: #1F2638;
    font-weight: 700;
    font-size: 1rem;
}

.doctor-social {
    display: flex;
    justify-content: center;
    gap: 1.25rem;
    padding-top: 2rem;
    border-top: 3px solid rgba(110, 124, 162, 0.1);
}

.social-link {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(31, 38, 56, 0.2);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6E7CA2, #8a96c7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.social-link:hover::before {
    opacity: 1;
}

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

.social-link:hover {
    transform: translateY(-8px) scale(1.15);
    box-shadow: 0 15px 40px rgba(31, 38, 56, 0.3);
}

/* ========= VIDEO GALLERY SECTION - PREMIUM 2025 ========= */
.video-gallery-section {
    background: 
        radial-gradient(circle at 20% 30%, rgba(31, 38, 56, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(110, 124, 162, 0.12) 0%, transparent 50%),
        linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-mid) 50%, var(--primary-light) 100%);
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

/* Floating shapes animation */
.video-gallery-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.05) 0%, transparent 25%);
    animation: floatShapes 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes floatShapes {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(2%, 2%) rotate(120deg); }
    66% { transform: translate(-2%, 2%) rotate(240deg); }
}

/* Section header */
.video-gallery-section .section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: -0.03em;
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.3),
        0 4px 40px rgba(0, 0, 0, 0.2);
}

.video-gallery-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    border-radius: 2px;
}

.video-gallery-section .section-label {
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    display: inline-block;
    position: relative;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Grid layout */
.youtube-shorts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin: 4.5rem 0;
    position: relative;
    z-index: 1;
}

/* Premium card design */
.youtube-short-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: visible;
    position: relative;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.06),
        0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Gradient border glow */
.youtube-short-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(
        135deg,
        var(--primary-dark) 0%,
        var(--primary-light) 25%,
        var(--accent-purple) 50%,
        var(--primary-light) 75%,
        var(--primary-dark) 100%
    );
    background-size: 200% 200%;
    border-radius: 28px;
    z-index: -1;
    opacity: 0;
    filter: blur(8px);
    transition: opacity 0.6s ease;
    animation: borderGlow 4s linear infinite;
}

@keyframes borderGlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.youtube-short-card:hover::before {
    opacity: 1;
}

/* Video number badge */
.video-number {
    position: absolute;
    top: -12px;
    left: 20px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 900;
    z-index: 10;
    box-shadow: 
        0 8px 24px rgba(0, 64, 128, 0.4),
        0 0 0 3px rgba(255, 255, 255, 1);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.youtube-short-card:hover .video-number {
    transform: translateY(-8px) scale(1.15) rotate(10deg);
    box-shadow: 
        0 12px 32px rgba(0, 86, 179, 0.5),
        0 0 0 4px rgba(255, 255, 255, 1);
}

/* 3D hover effect */
.youtube-short-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 
        0 32px 64px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(0, 64, 128, 0.1);
}

/* Video wrapper */
.youtube-short-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 Aspect Ratio */
    overflow: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 24px;
}

.youtube-short-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Play overlay button */
.video-play-overlay {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 64, 128, 0.95), rgba(0, 86, 179, 0.95));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 8px 24px rgba(0, 64, 128, 0.4),
        0 0 0 2px rgba(255, 255, 255, 0.2);
    z-index: 5;
    pointer-events: none;
}

.video-play-overlay i {
    color: white;
    font-size: 2rem;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.youtube-short-card:hover .video-play-overlay {
    transform: scale(1.15) rotate(10deg);
    background: linear-gradient(135deg, rgba(0, 86, 179, 1), rgba(0, 123, 255, 1));
    box-shadow: 
        0 12px 32px rgba(0, 86, 179, 0.6),
        0 0 0 3px rgba(255, 255, 255, 0.3),
        0 0 40px rgba(0, 64, 128, 0.4);
}

.youtube-short-card:hover .video-play-overlay i {
    transform: scale(1.1);
}

/* Enhanced CTA button */
.video-gallery-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.video-gallery-cta .cta-btn {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    box-shadow: 
        0 20px 40px rgba(0, 64, 128, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    position: relative;
    overflow: hidden;
}

.video-gallery-cta .cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.video-gallery-cta .cta-btn:hover::before {
    left: 100%;
}

.video-gallery-cta .cta-btn:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 25px 50px rgba(0, 64, 128, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.video-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    aspect-ratio: 16/9;
    animation: modalZoomIn 0.4s ease;
}

@keyframes modalZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 45px;
    height: 45px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
}

.video-modal-close:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.video-modal-close i {
    font-size: 1.25rem;
}

.video-modal-content {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* ========= GALLERY LIGHTBOX MODAL ========= */
.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.gallery-modal.active {
    opacity: 1;
    visibility: visible;
}

.gallery-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.gallery-modal-container {
    position: relative;
    z-index: 2;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalZoomIn 0.4s ease;
}

.gallery-modal-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.gallery-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
}

.gallery-modal-close:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: rotate(90deg);
}

.gallery-modal-close i {
    font-size: 1.5rem;
}

.gallery-modal-prev,
.gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 3;
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

.gallery-modal-prev:hover,
.gallery-modal-next:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev i,
.gallery-modal-next i {
    font-size: 1.5rem;
}

.gallery-modal-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    color: var(--primary-blue);
    font-size: 1rem;
}

/* ========= PORTUGAL SPECIAL BANNER ========= */
.portugal-banner {
    background: #D91E18;
    padding: 1rem 0;
    position: relative;
    overflow: hidden;
}

/* Corporate color for English and German */
html[lang="en"] .portugal-banner,
html[lang="de"] .portugal-banner,
html[lang="tr"] .portugal-banner,
.portugal-banner.lang-en,
.portugal-banner.lang-de,
.portugal-banner.lang-tr {
    background: #004080 !important;
}

html[lang="en"] .portugal-banner::before,
html[lang="de"] .portugal-banner::before,
html[lang="tr"] .portugal-banner::before,
.portugal-banner.lang-en::before,
.portugal-banner.lang-de::before,
.portugal-banner.lang-tr::before {
    background: #999999 !important;
    width: 40% !important;
}

.portugal-banner .container {
    padding: 0;
    max-width: 100%;
}

.portugal-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #006847;
    z-index: 0;
}


.banner-content {
    display: grid;
    grid-template-columns: 40% 60%;
    align-items: center;
    position: relative;
    z-index: 1;
}


.banner-text {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-left: 17rem;
    justify-content: center;
    color: var(--white);
}

.banner-text strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.banner-text span {
    font-size: 1.125rem;
    opacity: 0.95;
}

.banner-cta {
    background: rgba(255, 255, 255, 0.95);
    color: #006847;
    padding: 1rem 2rem;
    border-radius: 50px;
    border: none;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: max-content;
}

/* Corporate color for button text in English and German */
html[lang="en"] .banner-cta,
html[lang="de"] .banner-cta {
    color: #004080;
}

.banner-cta:hover {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ========= PORTUGAL SECTION ========= */
.portugal-section {
    background: #D91E18;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.portugal-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: #006847;
    z-index: 0;
}

/* Corporate color for English, German, and Turkish - Desktop */
html[lang="en"] .portugal-section,
html[lang="de"] .portugal-section,
html[lang="tr"] .portugal-section,
.portugal-section.lang-en,
.portugal-section.lang-de,
.portugal-section.lang-tr {
    background: #004080 !important;
}

html[lang="en"] .portugal-section::before,
html[lang="de"] .portugal-section::before,
html[lang="tr"] .portugal-section::before,
.portugal-section.lang-en::before,
.portugal-section.lang-de::before,
.portugal-section.lang-tr::before {
    background: #999999 !important;
    width: 40% !important;
}

.portugal-section > .container {
    position: relative;
    z-index: 1;
}

.portugal-section .section-header {
    position: relative;
    z-index: 1;
}

.portugal-section .section-title,
.portugal-section .section-subtitle,
.portugal-section .section-label {
    color: var(--white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.portugal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.portugal-card {
    background: var(--gradient-card);
    backdrop-filter: blur(10px);
    padding: 2.75rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 2px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.portugal-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(0,104,71,0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: all var(--transition-slow);
}

.portugal-card:hover::before {
    width: 200px;
    height: 200px;
    opacity: 0.5;
}

.portugal-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-2xl), 0 0 40px rgba(0, 104, 71, 0.2);
    border-color: rgba(0, 104, 71, 0.3);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #006847 0%, #008C5A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon.smile-icon {
    background: linear-gradient(135deg, #FF6B9D 0%, #C06C84 100%);
}

.card-icon.allon4-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.card-icon.allon6-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.card-icon i {
    color: var(--white);
    font-size: 2rem;
}

.package-info {
    margin-top: 1rem;
}

.package-desc {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.portugal-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

/* Price Comparison */
.price-compare {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem;
    background: var(--off-white);
    border-radius: 12px;
    border-left: 4px solid #006847;
}

.treatment-name {
    font-weight: 600;
    color: var(--text-dark);
}

.prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.price-old {
    color: #dc3545;
    text-decoration: line-through;
    font-size: 0.95rem;
    opacity: 0.7;
}

.price-new {
    color: #006847;
    font-size: 1.25rem;
    font-weight: 800;
}

/* Cities Grid */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.city-item {
    background: var(--light-blue);
    padding: 0.875rem;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-blue);
    transition: var(--transition-fast);
}

.city-item:hover {
    background: var(--accent-blue);
    color: var(--white);
    transform: scale(1.05);
}

.cities-note {
    text-align: center;
    font-style: italic;
    color: var(--text-light);
    margin: 0;
}

/* Included List & Excellence List */
.included-list,
.excellence-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.included-list li,
.excellence-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    transition: var(--transition-fast);
}

.included-list li:hover,
.excellence-list li:hover {
    background: #e8f5e9;
    transform: translateX(10px);
}

.included-list li i,
.excellence-list li i {
    color: #006847;
    font-size: 1.25rem;
    min-width: 24px;
}

.included-list li span,
.excellence-list li span {
    color: var(--text-dark);
    font-weight: 500;
}

/* VIP Package Banner */
.vip-package-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.vip-package-banner::before {
    content: '✨';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 4rem;
    opacity: 0.2;
}

.vip-banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vip-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.vip-icon i {
    color: var(--white);
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

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

.vip-text {
    flex: 1;
}

.vip-text h4 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.vip-items {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.vip-items > span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    transition: var(--transition-fast);
}

.vip-items > span:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.vip-items > span i {
    font-size: 1.125rem;
}

.portugal-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ========= WHY CHOOSE US SECTION ========= */
.why-section {
    background: var(--grey-light);
}

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

.why-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-sm);
}

.why-card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: var(--shadow-lg);
}

.why-card i {
    font-size: 3rem;
    color: var(--accent-blue);
    margin-bottom: 1.5rem;
    display: block;
}

.why-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* ========= JOURNEY STEPS SECTION ========= */
.journey-steps-section {
    background: linear-gradient(135deg, #1F2638 0%, #2d3a52 50%, #1F2638 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.journey-steps-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(110,124,162,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(110,124,162,0.1) 0%, transparent 50%),
        url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.8;
}

.journey-steps-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
    position: relative;
    z-index: 1;
}

.journey-steps-section .section-title {
    color: var(--white);
    font-size: 2.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.journey-steps-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
}

.journey-timeline {
    margin-top: 4rem;
    position: relative;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.journey-step {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2.5rem;
    margin-bottom: 4rem;
    position: relative;
}

.journey-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 50px;
    top: 100px;
    bottom: -70px;
    width: 3px;
    background: linear-gradient(180deg, 
        rgba(110,124,162,0.5) 0%, 
        rgba(110,124,162,0.2) 50%,
        transparent 100%);
}

.step-number {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6E7CA2 0%, #8a96c7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--white);
    box-shadow: 
        0 10px 40px rgba(110, 124, 162, 0.4),
        0 0 0 8px rgba(110, 124, 162, 0.1),
        inset 0 2px 10px rgba(255,255,255,0.2);
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.journey-step:hover .step-number {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 
        0 15px 50px rgba(110, 124, 162, 0.6),
        0 0 0 12px rgba(110, 124, 162, 0.15),
        inset 0 2px 10px rgba(255,255,255,0.3);
}

.step-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    padding: 3rem;
    border-radius: 28px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.step-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #6E7CA2, #8a96c7, #6E7CA2);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.step-content:hover::before {
    transform: scaleX(1);
}

.step-content:hover {
    transform: translateX(15px) translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.step-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step-content:hover .step-icon {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, rgba(110,124,162,0.3), rgba(138,150,199,0.2));
    box-shadow: 0 8px 25px rgba(110, 124, 162, 0.3);
}

.step-icon i {
    font-size: 2rem;
    color: var(--white);
}

.step-content h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.step-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(110,124,162,0.3), rgba(138,150,199,0.2));
    border-radius: 50px;
    color: var(--white);
    font-weight: 700;
    font-size: 0.938rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.step-badge i {
    font-size: 1rem;
}

.step-content:hover .step-badge {
    background: linear-gradient(135deg, rgba(110,124,162,0.5), rgba(138,150,199,0.3));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========= WHY CHOOSE SECTION ========= */
.why-choose-section {
    background: #f8f9fa;
    padding: 6rem 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.why-card-modern {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.why-card-modern:hover {
    transform: translateY(-12px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 60px rgba(31, 38, 56, 0.15);
}

.why-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: transform 0.4s ease;
}

.why-card-modern:hover .why-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-icon i {
    font-size: 2rem;
    color: var(--white);
}

.why-card-modern h3 {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.why-card-modern p {
    color: var(--grey-dark);
    line-height: 1.6;
}

/* ========= TECHNOLOGY SECTION ========= */
.technology-section {
    background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
    padding: 6rem 0;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.tech-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.tech-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-light);
}

.tech-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(31, 38, 56, 0.08), rgba(110, 124, 162, 0.08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.tech-image i {
    font-size: 2.5rem;
    color: var(--primary-dark);
}

.tech-card h3 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.tech-card p {
    color: var(--grey-dark);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ========= PACKAGE SECTION ========= */
.package-section {
    background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary-mid) 100%);
    padding: 6rem 0;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.package-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    opacity: 0.5;
}

.package-section .section-title,
.package-section .section-subtitle {
    color: var(--white);
}

.package-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.package-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.package-icon-main {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(255, 255, 255, 0.2);
    animation: pulse 3s ease-in-out infinite;
}

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

.package-icon-main i {
    font-size: 5rem;
    color: var(--white);
}

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

.package-item {
    display: flex;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.package-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(10px);
}

.package-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.package-item-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.package-item-content h4 {
    color: var(--white);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.package-item-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-cta {
    text-align: center;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.package-cta .cta-btn {
    background: var(--white);
    color: var(--primary-dark);
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.package-cta .cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.3);
}

/* ========= FAQ SECTION ========= */
.faq-section {
    background: #ffffff;
    padding: 6rem 0;
}

.faq-grid {
    max-width: 900px;
    margin: 4rem auto 0;
}

.faq-item {
    background: var(--white);
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--primary-light);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.faq-question {
    padding: 1.75rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    user-select: none;
}

.faq-question:hover {
    background: rgba(31, 38, 56, 0.03);
}

.faq-question h4 {
    color: var(--primary-dark);
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}

.faq-question i {
    color: var(--primary-light);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    color: var(--grey-dark);
    line-height: 1.8;
    margin: 0;
}

/* ========= TESTIMONIALS SECTION ========= */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e8ecf1 50%, #f8f9fa 100%);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(110,124,162,0.03) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(110,124,162,0.03) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 50px,
            rgba(110,124,162,0.01) 50px,
            rgba(110,124,162,0.01) 51px
        );
    pointer-events: none;
}

.testimonials-section .container {
    max-width: 100%;
    padding: 0;
    position: relative;
    z-index: 1;
}

.testimonials-section .section-header {
    padding: 0 2rem 3rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.testimonials-section .section-title {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.25rem;
    letter-spacing: -1px;
}

.testimonials-section .section-subtitle {
    font-size: 1.25rem;
    color: #4A5568;
    line-height: 1.7;
}

.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0 2rem 3rem;
    position: relative;
    z-index: 100;
}

.testimonial-nav-btn {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 
        0 10px 30px rgba(31, 38, 56, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    z-index: 100;
    position: relative;
    overflow: hidden;
}

.testimonial-nav-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6E7CA2, #8a96c7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.testimonial-nav-btn:hover::before {
    opacity: 1;
}

.testimonial-nav-btn:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 
        0 20px 50px rgba(31, 38, 56, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.testimonial-nav-btn:active {
    transform: translateY(-2px) scale(1.05);
}

.testimonial-nav-btn i {
    font-size: 22px;
    pointer-events: none;
    position: relative;
    z-index: 1;
}

.testimonials-grid {
    display: flex;
    gap: 2.5rem;
    padding: 0 4rem 4rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.testimonials-grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card-modern {
    background: linear-gradient(135deg, #ffffff 0%, #fafbfc 100%);
    padding: 3.5rem;
    border-radius: 32px;
    box-shadow: 
        0 15px 50px rgba(31, 38, 56, 0.08),
        0 5px 15px rgba(31, 38, 56, 0.04);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    border: 2px solid rgba(110, 124, 162, 0.08);
    min-width: 480px;
    max-width: 480px;
    flex-shrink: 0;
    overflow: hidden;
}

.testimonial-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1F2638, #6E7CA2, #8a96c7);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.testimonial-card-modern::after {
    content: '"';
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 120px;
    font-weight: 900;
    color: rgba(110, 124, 162, 0.03);
    line-height: 1;
    font-family: Georgia, serif;
    pointer-events: none;
}

.testimonial-card-modern:hover::before {
    opacity: 1;
}

.testimonial-card-modern:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 
        0 30px 80px rgba(31, 38, 56, 0.12),
        0 10px 30px rgba(31, 38, 56, 0.08);
    border-color: rgba(110, 124, 162, 0.15);
}

.platform-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(110, 124, 162, 0.1);
    position: relative;
    z-index: 1;
}

.platform-badge.trustpilot {
    color: #00B67A;
}

.platform-badge.google {
    color: #4285F4;
}

.platform-logo {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: grayscale(0);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonial-card-modern:hover .platform-logo {
    transform: scale(1.15) rotate(5deg);
}

.platform-badge span {
    font-size: 20px;
    font-weight: 700;
    color: #FFB800;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(255, 184, 0, 0.2);
}

.testimonial-text-modern {
    font-size: 16px;
    line-height: 1.9;
    color: #2c3e50;
    flex-grow: 1;
    font-weight: 400;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.testimonial-footer-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 2px solid rgba(110, 124, 162, 0.1);
    position: relative;
    z-index: 1;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.author-info strong {
    font-size: 18px;
    font-weight: 800;
    color: var(--primary-dark);
    letter-spacing: -0.3px;
}

.author-info small {
    color: #64748B;
    font-size: 14px;
    font-weight: 500;
}

.verified-badge {
    font-size: 14px;
    color: #00B67A;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(0, 182, 122, 0.1), rgba(0, 182, 122, 0.05));
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    border: 1px solid rgba(0, 182, 122, 0.2);
    transition: all 0.3s ease;
}

.verified-badge i {
    font-size: 15px;
}

.testimonial-card-modern:hover .verified-badge {
    background: linear-gradient(135deg, rgba(0, 182, 122, 0.15), rgba(0, 182, 122, 0.08));
    transform: translateY(-2px);
}

.testimonials-cta {
    text-align: center;
    padding: 2rem 2rem 0;
}

.testimonials-cta .cta-btn {
    padding: 1.5rem 3.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    background: linear-gradient(135deg, #1F2638, #6E7CA2);
    box-shadow: 
        0 15px 40px rgba(31, 38, 56, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.testimonials-cta .cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(31, 38, 56, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ========= CONSULTATION FORM SECTION ========= */
.consultation-section {
    background: var(--gradient-primary);
    color: var(--white);
}

.consultation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-content h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

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

.consultation-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    font-weight: 500;
}

.benefit-item i {
    color: var(--success-green);
    font-size: 1.5rem;
}

.alternative-contact {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.alternative-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition-normal);
    border: 2px solid var(--white);
}

.contact-btn.whatsapp {
    background: #25D366;
    color: var(--white);
    border-color: #25D366;
}

.contact-btn.telegram {
    background: #0088cc;
    color: var(--white);
    border-color: #0088cc;
}

.contact-btn.phone {
    background: transparent;
    color: var(--white);
}

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

/* Form Styles */
.consultation-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 0;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--grey-light);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: var(--transition-fast);
    background: #ffffff;
    color: #1e293b;
    font-weight: 500;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-blue);
    background: var(--white);
    color: #0f172a;
}

/* International Tel Input overrides */
.iti {
    width: 100%;
    position: relative;
    z-index: 1;
}

.iti__flag-container {
    background: #ffffff !important;
    position: absolute !important;
    z-index: 3 !important;
    pointer-events: auto !important;
    left: 0 !important;
    top: 0 !important;
    height: 100% !important;
}

.iti__selected-flag {
    background: #ffffff !important;
    padding: 0 12px !important;
    position: relative !important;
    z-index: 3 !important;
    pointer-events: auto !important;
    height: 100% !important;
    display: flex !important;
    align-items: center !important;
}

.phone-input {
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    padding-left: 75px !important;
}

.iti input.phone-input,
.iti input[type="tel"],
.iti .phone-input {
    padding-left: 75px !important;
    position: relative !important;
    z-index: 2 !important;
    background: #ffffff !important;
    pointer-events: auto !important;
}

.iti--separate-dial-code input.phone-input,
.iti--separate-dial-code input[type="tel"] {
    padding-left: 100px !important;
}

/* Force padding for all intl-tel-input instances */
input.phone-input[type="tel"],
input[type="tel"].phone-input {
    padding-left: 75px !important;
}

.iti--separate-dial-code input[type="tel"],
.iti--separate-dial-code .phone-input {
    padding-left: 100px !important;
}

.iti__country-list {
    background: #ffffff !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    border: 1px solid #e2e8f0 !important;
    max-height: 250px !important;
    z-index: 9999 !important;
}

.iti__country {
    padding: 10px 15px !important;
    color: #1e293b !important;
    font-weight: 500 !important;
}

.iti__country:hover {
    background: #f1f5f9 !important;
    color: var(--primary-dark) !important;
}

.iti__selected-dial-code,
.iti__dial-code,
.iti__country-name {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.iti__arrow {
    border-top: 4px solid #1e293b !important;
    border-left: 4px solid transparent !important;
    border-right: 4px solid transparent !important;
}

.iti__selected-flag .iti__flag {
    margin-right: 8px !important;
}

.iti__search-input {
    background: #ffffff !important;
    border: 2px solid #e2e8f0 !important;
    color: #1e293b !important;
    font-weight: 500 !important;
    padding: 10px !important;
}

.iti__search-input::placeholder {
    color: #94a3b8 !important;
}

.iti__divider {
    border-bottom: 1px solid #e2e8f0 !important;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    transition: var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.form-message {
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.form-message.success {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success-green);
    border: 2px solid var(--success-green);
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    color: #EF4444;
    border: 2px solid #EF4444;
}

.form-message i {
    font-size: 1.5rem;
}

/* ========= FOOTER ========= */
.footer {
    position: relative;
    background: #ffffff;
    color: #2d3748;
    padding: 0;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0, 86, 179, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 64, 128, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    transform: translateY(-100%);
    z-index: 1;
}

.footer-wave svg {
    width: 100%;
    height: 100%;
    display: block;
}

.footer .container {
    position: relative;
    z-index: 2;
    padding-top: 5rem;
    padding-bottom: 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

/* About Section */
.footer-about .footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 15px rgba(255, 255, 255, 0.1));
}

.footer-description {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
}

/* Footer Titles */
.footer-title {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(31, 38, 56, 0.2);
}

.footer-title::after {
    display: none;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links li a {
    color: #4a5568;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li a i {
    font-size: 0.75rem;
    color: var(--primary-light);
    transition: transform 0.3s ease;
}

.footer-links li a:hover {
    color: var(--primary-dark);
    padding-left: 0.5rem;
}

.footer-links li a:hover i {
    transform: translateX(3px);
}

/* Contact Horizontal */
.footer-contact-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
}

.contact-item-horizontal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: #4a5568;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
}

.contact-item-horizontal i {
    color: var(--primary-light);
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
}

.contact-item-horizontal.whatsapp i {
    color: #25D366;
}

.contact-item-horizontal:hover {
    background: #ffffff;
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(31, 38, 56, 0.1);
}

/* Portugal Support Badge */
.portugal-support-badge {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #f0f7ff 0%, #e6f2ff 100%);
    border-radius: 15px;
    border: 2px solid var(--primary-light);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(31, 38, 56, 0.1);
}

.badge-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.badge-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.badge-content strong {
    color: var(--primary-dark);
    font-size: 1rem;
    font-weight: 700;
}

.badge-content span {
    color: #4a5568;
    font-size: 0.85rem;
}

/* WhatsApp Button */
.footer-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
}

.footer-whatsapp-btn i {
    font-size: 1.5rem;
}

.footer-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20BA5A 0%, #1fa855 100%);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-copyright {
    color: #718096;
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Footer Update Section */
.footer-update-section {
    margin-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 0;
}

.footer-update-bar {
    background: #004080;
    color: white;
    padding: 0.75rem 1.5rem;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.footer-update-bar span:first-child {
    margin-right: 0.5rem;
}

.footer-update-bar #updateDate {
    font-weight: 800;
}

.footer-partners {
    background: #ffffff;
    padding: 2rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-partner-left {
    display: flex;
    align-items: center;
}

.footer-partner-right {
    display: flex;
    align-items: center;
}

.health-turkiye-logo-img {
    max-width: 300px;
    height: auto;
    display: block;
}

.dijitalce-contact {
    text-align: right;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-label {
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 600;
    margin: 0;
}

.contact-info-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.contact-info {
    color: #0056b3;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.contact-info:hover {
    color: #004080;
    text-decoration: underline;
}

.contact-separator {
    color: #cbd5e0;
}

@media (max-width: 768px) {
    .footer-partners {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }
    
    .dijitalce-contact {
        text-align: left;
        width: 100%;
    }
    
    .health-turkiye-logo-img {
        max-width: 250px;
    }
}

.footer-copyright i {
    color: #ff6b6b;
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

.footer-brand-wrapper {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #718096;
    font-size: 0.95rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    background: #f7fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.footer-brand:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 38, 56, 0.4);
}

.footer-brand i {
    font-size: 0.85rem;
}

/* ========= RESPONSIVE DESIGN ========= */
@media (max-width: 968px) {
    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    /* Mobile Navigation */
    .navbar {
        top: 65px;
        width: calc(100% - 20px);
        border-radius: var(--radius-lg);
    }
    
    .nav-container {
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .nav-menu-left,
    .nav-actions-right {
        display: none;
    }
    
    .nav-logo-center {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
    }
    
    .logo-elevated {
        padding: 10px;
        border-radius: 100px;
        box-shadow: var(--shadow-md);
    }
    
    .logo-elevated img {
        height: 38px;
    }
    
    .nav-menu-mobile {
        display: flex;
        position: fixed;
        top: 135px;
        left: 10px;
        right: 10px;
        background: var(--glass-bg);
        backdrop-filter: blur(30px);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-2xl);
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        transform: translateY(-20px);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-normal);
        border: 1px solid rgba(255,255,255,0.4);
    }
    
    .nav-menu-mobile.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu-mobile .nav-link {
        padding: 1rem;
        text-align: center;
        border-radius: var(--radius-md);
        background: rgba(255,255,255,0.5);
    }
    
    .nav-menu-mobile .nav-link::after {
        display: none;
    }
    
    .nav-menu-mobile .nav-language {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .nav-menu-mobile .nav-appointment-btn {
        width: 100%;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Gallery */
    .gallery-section {
        padding: 5rem 0;
    }
    
    .gallery-section .section-title {
        font-size: 2.5rem;
    }
    
    .gallery-section .section-header {
        margin-bottom: 4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-bottom: 3.5rem;
    }
    
    .gallery-item {
        border-radius: 24px;
        border-width: 2px;
    }
    
    .gallery-overlay i {
        font-size: 3rem;
    }
    
    .gallery-cta .cta-btn {
        padding: 1.25rem 2.75rem;
        font-size: 1.063rem;
    }
    
    /* About Doctor */
    .about-main-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-info {
        padding: 2rem;
    }
    
    .about-doctor-card {
        position: relative;
        top: 0;
    }
    
    .experience-floating-badge {
        top: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
    }
    
    .badge-number {
        font-size: 1.5rem;
    }
    
    .badge-text {
        font-size: 0.7rem;
    }
    
    .play-button-large {
        width: 80px;
        height: 80px;
    }
    
    .play-button-large i {
        font-size: 2rem;
    }
    
    .video-play-btn {
        width: 60px;
        height: 60px;
    }
    
    .video-play-btn i {
        font-size: 1.5rem;
    }
    
    .video-text {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .video-text h3 {
        font-size: 1.25rem;
    }
    
    .video-text p {
        font-size: 0.875rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .nav-link {
        padding: 1rem;
        border-bottom: 1px solid var(--grey-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .nav-language {
        justify-content: center;
    }
    
    .nav-appointment-btn {
        justify-content: center;
        width: 100%;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .feature-badge {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: stretch;
        flex-wrap: wrap;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .process-timeline::before {
        left: 40px;
    }
    
    .process-step {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
    }
    
    .process-step:nth-child(even) {
        direction: ltr;
    }
    
    .process-step:nth-child(even) .step-content {
        text-align: left;
    }
    
    .consultation-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .floating-buttons {
        bottom: 20px;
        left: 20px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    /* Video Gallery Tablet */
    .video-gallery-section {
        padding: 6rem 0;
    }
    
    .video-gallery-section .section-title {
        font-size: 2.75rem;
        text-shadow: 
            0 2px 15px rgba(0, 0, 0, 0.35),
            0 4px 30px rgba(0, 0, 0, 0.25);
    }
    
    .youtube-shorts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        margin: 3.5rem 0;
    }
    
    .youtube-short-card:hover {
        transform: translateY(-15px) scale(1.02);
    }
    
    .video-number {
        width: 44px;
        height: 44px;
        font-size: 0.95rem;
    }
    
    .video-play-overlay {
        width: 56px;
        height: 56px;
        border-radius: 18px;
        bottom: 16px;
        right: 16px;
    }
    
    .video-play-overlay i {
        font-size: 1.75rem;
    }
    
    /* Testimonials Mobile */
    .testimonials-section {
        padding: 5rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2.5rem;
    }
    
    .testimonials-section .section-header {
        padding: 0 1.5rem 2.5rem;
    }
    
    .testimonials-nav {
        padding: 0 1.5rem 2.5rem;
        gap: 1.5rem;
    }
    
    .testimonial-nav-btn {
        width: 56px;
        height: 56px;
    }
    
    .testimonial-nav-btn i {
        font-size: 20px;
    }
    
    .testimonials-grid {
        gap: 2rem;
        padding: 0 2rem 3.5rem;
    }
    
    .testimonial-card-modern {
        padding: 2.75rem;
        min-width: 400px;
        max-width: 400px;
        border-radius: 28px;
    }
    
    .testimonial-card-modern::after {
        font-size: 100px;
    }
    
    .platform-badge {
        padding-bottom: 1.75rem;
    }
    
    .platform-logo {
        width: 26px;
        height: 26px;
    }
    
    .platform-badge span {
        font-size: 18px;
    }
    
    .testimonial-text-modern {
        font-size: 15px;
    }
    
    .author-info strong {
        font-size: 17px;
    }
    
    .verified-badge {
        font-size: 13px;
        padding: 0.65rem 1.1rem;
    }
    
    .testimonials-cta {
        padding: 2rem 1.5rem 0;
    }
    
    .testimonials-cta .cta-btn {
        padding: 1.25rem 2.75rem;
        font-size: 1.063rem;
    }
    
    /* Portugal Banner Mobile */
    .banner-content {
        grid-template-columns: 1fr !important;
    }
    
    .banner-text {
        padding: 2rem !important;
        text-align: center;
    }
    
    .banner-cta {
        padding: 2rem;
    }
    
    .portugal-banner::before,
    .portugal-section::before {
        display: none;
    }
    
    .portugal-banner,
    .portugal-section {
        background: linear-gradient(180deg, #006847 0%, #006847 40%, #D91E18 40%, #D91E18 100%) !important;
    }
    
    html[lang="en"] .portugal-banner,
    html[lang="de"] .portugal-banner,
    html[lang="tr"] .portugal-banner,
    .portugal-banner.lang-en,
    .portugal-banner.lang-de,
    .portugal-banner.lang-tr {
        background: #004080 !important;
    }
    
    html[lang="en"] .portugal-section,
    html[lang="de"] .portugal-section,
    html[lang="tr"] .portugal-section,
    .portugal-section.lang-en,
    .portugal-section.lang-de,
    .portugal-section.lang-tr {
        background: #004080 !important;
    }
    
    html[lang="en"] .portugal-section::before,
    html[lang="de"] .portugal-section::before,
    html[lang="tr"] .portugal-section::before,
    .portugal-section.lang-en::before,
    .portugal-section.lang-de::before,
    .portugal-section.lang-tr::before {
        background: #999999 !important;
        width: 40% !important;
    }
    
    /* New Sections Mobile */
    .journey-steps-section {
        padding: 5rem 0;
    }
    
    .journey-steps-section .section-title {
        font-size: 2.25rem;
    }
    
    .journey-step {
        grid-template-columns: 80px 1fr;
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .journey-step:not(:last-child)::after {
        left: 40px;
        bottom: -60px;
    }
    
    .step-number {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .step-content {
        padding: 2.25rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
    
    .step-content h3 {
        font-size: 1.5rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .package-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Welcome Section Mobile */
    .welcome-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .welcome-feature-card {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem;
    }
    
    .feature-icon-large {
        margin: 0 auto;
    }
    
    .package-icon-main {
        width: 150px;
        height: 150px;
    }
    
    .package-icon-main i {
        font-size: 4rem;
    }
    
    /* Treatments Section Responsive */
    .featured-treatments {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .featured-treatment-card {
        padding: 2.5rem 2rem;
    }
    
    .featured-icon {
        width: 70px;
        height: 70px;
    }
    
    .featured-icon i {
        font-size: 2.25rem;
    }
    
    .featured-treatment-card h3 {
        font-size: 1.375rem;
    }
    
    .all-treatments-header {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .all-treatments-header h3 {
        font-size: 1.75rem;
    }
    
    .treatment-card-modern {
        padding: 1.25rem;
        gap: 0.875rem;
        min-height: 85px;
    }
    
    .treatment-icon-modern {
        width: 52px;
        height: 52px;
    }
    
    .treatment-icon-modern i {
        font-size: 1.375rem;
    }
    
    .treatment-content-modern h4 {
        font-size: 0.938rem;
    }
    
    .treatment-content-modern p {
        font-size: 0.75rem;
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* About Doctor Mobile */
    .about-info {
        padding: 1.5rem;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-text {
        font-size: 0.95rem;
        text-align: left;
    }
    
    .education-title {
        font-size: 1.25rem;
    }
    
    .doctor-name {
        font-size: 1.5rem;
    }
    
    .doctor-image-wrapper {
        padding: 1rem;
    }
    
    .play-button-large {
        width: 70px;
        height: 70px;
    }
    
    .play-button-large i {
        font-size: 1.75rem;
    }
    
    .video-header h3 {
        font-size: 1.5rem;
    }
    
    .nav-container {
        padding: 0.5rem 1rem;
    }
    
    .nav-logo img {
        height: 35px;
    }
    
    .nav-menu {
        top: 60px;
    }
    
    .nav-appointment-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
    
    .hero-section {
        min-height: auto;
        padding: 6rem 0 4rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-features {
        grid-template-columns: repeat(2, 1fr);
        justify-content: center;
    }
    
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-image-circle {
        width: 350px;
        height: 350px;
    }
    
    .hero-logo-background {
        width: 80%;
        max-width: 400px;
        bottom: -5%;
        left: -10%;
        opacity: 0.06;
    }
    
    .hero-logo-img {
        max-width: 180px;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    /* Modal Mobile Styles */
    .modal-container {
        width: 95%;
        border-radius: 16px;
    }
    
    .modal-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .modal-logo img {
        max-width: 140px;
    }
    
    .modal-title {
        font-size: 1.25rem;
    }
    
    .modal-description {
        font-size: 0.875rem;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feature-badge {
        flex: 1 1 calc(50% - 0.5rem);
        min-width: 140px;
        padding: 0.75rem;
        font-size: 0.75rem;
    }
    
    .feature-badge i {
        font-size: 1.25rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .welcome-grid,
    .treatments-grid,
    .why-grid,
    .testimonials-slider {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    /* Gallery Mobile */
    .gallery-section {
        padding: 4rem 0;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.5rem 1.2rem;
        letter-spacing: 2.5px;
    }
    
    .gallery-section .section-title {
        font-size: 2rem;
    }
    
    .gallery-section .section-subtitle {
        font-size: 1.063rem;
    }
    
    .gallery-section .section-header {
        margin-bottom: 3rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .gallery-item {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .gallery-overlay i {
        font-size: 2.5rem;
    }
    
    .gallery-overlay::before {
        width: 60px;
        height: 60px;
    }
    
    .gallery-cta .cta-btn {
        padding: 1.15rem 2.25rem;
        font-size: 1rem;
        border-radius: 14px;
    }
    
    /* About Doctor Mobile */
    .about-feature-item {
        padding: 1rem;
    }
    
    .about-feature-item i {
        font-size: 1.5rem;
        min-width: 30px;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .step-content {
        padding: 1.5rem;
    }
    
    .consultation-form {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-logo-img {
        max-width: 160px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-brand {
        justify-content: center;
    }
    
    .floating-buttons {
        bottom: 15px;
        left: 15px;
        gap: 0.75rem;
    }
    
    .float-btn {
        width: 45px;
        height: 45px;
        font-size: 1.25rem;
    }
    
    .scroll-top-btn {
        bottom: 15px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }
    
    /* Video Gallery Mobile */
    .video-gallery-section {
        padding: 4rem 0;
    }
    
    .video-gallery-section .section-title {
        font-size: 2rem;
        line-height: 1.2;
        text-shadow: 
            0 2px 12px rgba(0, 0, 0, 0.4),
            0 3px 25px rgba(0, 0, 0, 0.3);
    }
    
    .video-gallery-section .section-label {
        font-size: 0.8rem;
        text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }
    
    .youtube-shorts-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .youtube-short-card {
        border-radius: 24px;
    }
    
    .youtube-short-card:hover {
        transform: translateY(-12px) scale(1.01);
    }
    
    .video-number {
        width: 40px;
        height: 40px;
        font-size: 0.9rem;
        top: -10px;
        left: 16px;
    }
    
    .youtube-short-wrapper {
        border-radius: 20px;
    }
    
    .video-play-overlay {
        width: 52px;
        height: 52px;
        border-radius: 16px;
        bottom: 12px;
        right: 12px;
    }
    
    .video-play-overlay i {
        font-size: 1.5rem;
    }
    
    .video-gallery-cta {
        margin-top: 3rem;
    }
    
    .video-gallery-cta .cta-btn {
        font-size: 0.95rem;
        padding: 1rem 1.75rem;
    }
    
    .video-modal-container {
        width: 95%;
    }
    
    .video-modal-close {
        top: -45px;
        width: 40px;
        height: 40px;
    }
    
    /* Gallery Modal Mobile */
    .gallery-modal-container {
        width: 95%;
    }
    
    .gallery-modal-close {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
    }
    
    .gallery-modal-prev,
    .gallery-modal-next {
        width: 45px;
        height: 45px;
    }
    
    .gallery-modal-prev {
        left: 10px;
    }
    
    .gallery-modal-next {
        right: 10px;
    }
    
    .gallery-modal-counter {
        bottom: 10px;
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    /* Portugal Banner Mobile */
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text strong {
        font-size: 1.25rem;
    }
    
    .banner-text span {
        font-size: 1rem;
    }
    
    .banner-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
    }
    
    .banner-text {
        text-align: center;
        padding: 0 1rem;
    }
    
    .banner-cta {
        width: 100%;
        justify-content: center;
    }
    
    /* Portugal Section Mobile */
    .portugal-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .portugal-card {
        padding: 2rem;
    }
    
    .cities-grid {
        grid-template-columns: 1fr;
    }
    
    /* VIP Banner Mobile */
    .vip-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .vip-text h4 {
        font-size: 1.25rem;
    }
    
    .vip-items {
        justify-content: center;
    }
    
    .vip-items > span {
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Testimonials Mobile Small */
    .testimonials-section {
        padding: 4rem 0;
    }
    
    .testimonials-section .section-title {
        font-size: 2rem;
    }
    
    .testimonials-section .section-subtitle {
        font-size: 1.063rem;
    }
    
    .testimonials-section .section-header {
        padding: 0 1rem 2rem;
    }
    
    .testimonials-nav {
        padding: 0 1rem 2rem;
        gap: 1.25rem;
    }
    
    .testimonial-nav-btn {
        width: 52px;
        height: 52px;
        border-radius: 16px;
    }
    
    .testimonial-nav-btn i {
        font-size: 18px;
    }
    
    .testimonials-grid {
        gap: 1.5rem;
        padding: 0 1rem 3rem;
    }
    
    .testimonial-card-modern {
        padding: 2.25rem;
        min-width: calc(100vw - 2.5rem);
        max-width: calc(100vw - 2.5rem);
        border-radius: 24px;
        gap: 1.75rem;
    }
    
    .testimonial-card-modern::after {
        font-size: 80px;
        top: 1.5rem;
        right: 1.5rem;
    }
    
    .platform-badge {
        padding-bottom: 1.5rem;
    }
    
    .platform-logo {
        width: 24px;
        height: 24px;
    }
    
    .platform-badge span {
        font-size: 17px;
        letter-spacing: 1px;
    }
    
    .testimonial-text-modern {
        font-size: 14.5px;
        line-height: 1.8;
    }
    
    .testimonial-footer-modern {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding-top: 1.75rem;
    }
    
    .author-info strong {
        font-size: 16px;
    }
    
    .author-info small {
        font-size: 13px;
    }
    
    .verified-badge {
        font-size: 12.5px;
        padding: 0.6rem 1rem;
    }
    
    .testimonials-cta {
        padding: 1.5rem 1rem 0;
    }
    
    .testimonials-cta .cta-btn {
        padding: 1.15rem 2.25rem;
        font-size: 1rem;
        border-radius: 14px;
    }
    
    /* New Sections Mobile Small */
    .journey-steps-section {
        padding: 4rem 0;
    }
    
    .journey-steps-section .section-title {
        font-size: 1.75rem;
    }
    
    .journey-steps-section .section-subtitle {
        font-size: 1rem;
    }
    
    .journey-step {
        grid-template-columns: 70px 1fr;
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .journey-step:not(:last-child)::after {
        left: 35px;
        bottom: -50px;
        width: 2px;
    }

    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .step-content {
        padding: 1.75rem;
        border-radius: 20px;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }
    
    .step-content p {
        font-size: 0.938rem;
    }

    .step-icon {
        width: 55px;
        height: 55px;
        border-radius: 16px;
    }

    .step-icon i {
        font-size: 1.5rem;
    }
    
    .step-badge {
        padding: 0.6rem 1.2rem;
        font-size: 0.813rem;
    }
    
    .why-choose-section,
    .technology-section,
    .package-section,
    .faq-section {
        padding: 4rem 0;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .package-icon-main {
        width: 120px;
        height: 120px;
    }
    
    .package-icon-main i {
        font-size: 3rem;
    }
    
    .package-item {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
    }
    
    .faq-question h4 {
        font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    /* Treatments Section Mobile Small */
    .treatments-section {
        padding: 4rem 0;
    }
    
    .treatments-badge {
        font-size: 0.75rem;
        padding: 0.6rem 1.25rem;
    }
    
    .featured-treatments {
        gap: 1.25rem;
        margin-bottom: 2.5rem;
    }
    
    .featured-treatment-card {
        padding: 2rem 1.5rem;
    }
    
    .featured-icon {
        width: 65px;
        height: 65px;
    }
    
    .featured-icon i {
        font-size: 2rem;
    }
    
    .featured-treatment-card h3 {
        font-size: 1.25rem;
    }
    
    .featured-treatment-card p {
        font-size: 0.938rem;
    }
    
    .featured-features {
        gap: 0.5rem;
    }
    
    .featured-features span {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    
    .treatment-btn-featured {
        padding: 0.875rem 1.5rem;
        font-size: 0.938rem;
    }
    
    .all-treatments-header {
        padding-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .all-treatments-header h3 {
        font-size: 1.5rem;
    }
    
    .all-treatments-header p {
        font-size: 1rem;
    }
    
    .treatments-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .treatment-card-modern {
        padding: 1rem;
        gap: 0.75rem;
        min-height: 80px;
    }
    
    .treatment-icon-modern {
        width: 48px;
        height: 48px;
    }
    
    .treatment-icon-modern i {
        font-size: 1.25rem;
    }
    
    .treatment-content-modern h4 {
        font-size: 0.875rem;
        line-height: 1.3;
    }
    
    .treatment-content-modern p {
        font-size: 0.688rem;
        line-height: 1.3;
    }
    
    .treatment-btn-modern {
        width: 34px;
        height: 34px;
    }
    
    .treatment-btn-modern i {
        font-size: 0.875rem;
    }
    
    /* Welcome Section Mobile Small */
    .welcome-section {
        padding: 4rem 0;
    }
    
    .welcome-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .welcome-feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-icon-large {
        width: 80px;
        height: 80px;
    }
    
    .feature-icon-large i {
        font-size: 2rem;
    }
    
    .feature-content h3 {
        font-size: 1.25rem;
    }
    
    .feature-list li {
        font-size: 0.875rem;
    }
    
    .cta-btn.massive {
        padding: 1.25rem 2.5rem;
        font-size: 1rem;
    }
    
    .welcome-cta-note {
        flex-direction: column;
        text-align: center;
        font-size: 0.875rem;
    }
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========= UTILITY CLASSES ========= */
.text-center {
    text-align: center;
}

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ========= FOOTER RESPONSIVE ========= */
@media (max-width: 968px) {
    .footer .container {
        padding-top: 4rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-about {
        grid-column: 1 / -1;
        text-align: center;
    }
    
    .footer-about .footer-logo {
        margin-left: auto;
        margin-right: auto;
    }
    
    .portugal-support-badge {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-contact-horizontal {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .footer .container {
        padding-top: 3rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-links li a {
        justify-content: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .portugal-support-badge {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-whatsapp-btn {
        font-size: 0.9rem;
        padding: 0.875rem 1.25rem;
    }
    
    .footer-wave {
        height: 80px;
    }
    
    .footer-contact-horizontal {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item-horizontal {
        width: 100%;
        justify-content: center;
    }
}

/* ========= PRINT STYLES ========= */
@media print {
    .fixed-elements,
    .floating-buttons,
    .language-switcher,
    .scroll-indicator {
        display: none;
    }
}

/* ========= MINI CLINIC VIDEO ========= */
.mini-clinic-video { max-width: 720px; margin: 0 auto; }

.mini-clinic-video-card {
    position: relative;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.7);
}

.mini-video-frame { position: relative; padding-bottom: 56.25%; height: 0; border-radius: 14px; overflow: hidden; }
.mini-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Center play overlay (non-blocking) */
.mini-play-overlay {
    position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
    width: 84px; height: 84px; border-radius: 50%;
    background: radial-gradient( circle at 30% 30%, rgba(255,255,255,.85), rgba(255,255,255,.15) );
    box-shadow: 0 12px 30px rgba(0,0,0,.18);
    display: grid; place-items: center;
    color: var(--primary-dark);
    pointer-events: none; /* controls tıklanabilir kalsın */
}
.mini-play-overlay i { font-size: 26px; }

@media (max-width: 768px) {
    .mini-clinic-video { max-width: 100%; }
    .mini-clinic-video-card { padding: 10px; border-radius: 16px; }
    .mini-play-overlay { width: 68px; height: 68px; }
    .mini-play-overlay i { font-size: 22px; }
}

.mini-play-overlay.hidden { opacity: 0; visibility: hidden; transition: opacity .25s ease; }

@media (max-width: 480px) {
    html, body { overflow-x: hidden; }
    .container { padding: 0 1rem; }
    .navbar { width: calc(100% - 12px); top: 20px; }
    .hero-features { grid-template-columns: 1fr; }
    .hero-cta { width: 100%; gap: 1rem; flex-wrap: wrap; justify-content: center; }
    .hero-cta .cta-btn { width: 100%; max-width: 100%; }
    .feature-badge { width: 100%; justify-content: center; }
}

