        :root {
            --primary-color: #A48859;
            --secondary-color: #C7AB97;
            --light-bg: #F5F3EC;
            --dark-text: #333B46;
        }

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

        /* Global responsive fix - prevent horizontal overflow */
        html,
        body {
            overflow-x: hidden;
            width: 100%;
            max-width: 100%;
        }

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

        /* Argesta Display Font */
        @font-face {
            font-family: 'Argesta Display';
            src: url('fonts/argestadisplay-regular.otf') format('opentype'),
                url('fonts/argestadisplay-regular.ttf') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        @font-face {
            font-family: 'Argesta Display';
            src: url('fonts/argestadisplay-bold.otf') format('opentype'),
                url('fonts/argestadisplay-bold.ttf') format('truetype');
            font-weight: bold;
            font-style: normal;
        }

        /* All headings use Argesta Display */
        h1,
        h2,
        h3,
        h4,
        h5,
        h6,
        .section-title,
        .faq-title,
        .hero h1,
        .hero-slider-content h2,
        .hero-slider-content h1,
        .about-title-section h2,
        .treatment-card h3,
        .doctor-info h3,
        .gallery-caption h3,
        .review-author,
        .service-item h3 {
            font-family: 'Argesta Display', serif;
        }

        body {
            font-family: sans-serif;
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
            background-color: #F5F3EC;
            width: 100%;
            max-width: 100%;
            position: relative;
        }

        /* Ensure all text elements use sans-serif */
        p,
        span,
        div,
        a,
        li,
        input,
        textarea,
        button,
        label,
        .section-subtitle,
        .nav-links a,
        .top-contact-bar,
        .review-text,
        .review-date,
        .treatment-card p,
        .doctor-info .specialty,
        .faq-question,
        .faq-answer {
            font-family: sans-serif;
        }

        html {
            background-color: #F5F3EC;
            scroll-behavior: smooth;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        /* Scroll offset for anchor links */
        section[id] {
            scroll-margin-top: 80px;
        }

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

        img {
            transition: opacity 0.3s ease;
        }

        /* Better focus visibility */
        *:focus-visible {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        button:focus-visible,
        a:focus-visible {
            outline-offset: 4px;
        }

        /* Social Media Sidebar - HIDDEN */
        .social-sidebar {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }

        .social-sidebar a {
            width: 42px;
            height: 42px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 18px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .social-sidebar a:hover {
            transform: translateX(5px) scale(1.1);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
        }

        .social-sidebar a::after {
            content: attr(title);
            position: absolute;
            left: 60px;
            white-space: nowrap;
            background: rgba(0, 0, 0, 0.85);
            color: #fff;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 12px;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
            z-index: 1001;
        }

        .social-sidebar a:hover::after {
            opacity: 1;
        }

        /* Social Media Brand Colors */
        .social-whatsapp {
            background-color: #25D366;
        }

        .social-whatsapp:hover {
            background-color: #128C7E;
        }

        .social-instagram {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
        }

        .social-instagram:hover {
            background: linear-gradient(45deg, #e88520 0%, #dd5c2c 25%, #d31e33 50%, #c31356 75%, #ac1068 100%);
        }

        .social-facebook {
            background-color: #1877F2;
        }

        .social-facebook:hover {
            background-color: #166FE5;
        }

        .social-phone {
            background-color: #34C759;
        }

        .social-phone:hover {
            background-color: #2EAF50;
        }

        .social-youtube {
            background-color: #FF0000;
        }

        .social-youtube:hover {
            background-color: #E60000;
        }

        .social-email {
            background-color: #6C757D;
        }

        .social-email:hover {
            background-color: #5A6268;
        }

        .social-tiktok {
            background-color: #000000;
        }

        .social-tiktok:hover {
            background-color: #1C1C1C;
        }

        @media (max-width: 768px) {
            .social-sidebar {
                left: 0;
                padding: 8px 4px;
                gap: 8px;
                display: flex !important;
                z-index: 1000;
            }

            .social-sidebar a {
                width: 42px;
                height: 42px;
                font-size: 18px;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
            }

            .social-sidebar a::after {
                display: none;
            }
        }

        /* WhatsApp Floating Button - NEW CLEAN VERSION */
        .whatsapp-float-btn,
        #whatsappFloatBtn {
            position: fixed !important;
            bottom: calc(20px + env(safe-area-inset-bottom)) !important;
            right: 20px !important;
            width: 60px !important;
            height: 60px !important;
            background-color: #25D366 !important;
            color: #FFFFFF !important;
            border-radius: 50% !important;
            display: flex !important;
            align-items: center !important;
            justify-content: center !important;
            text-decoration: none !important;
            z-index: 2147483647 !important;
            box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5) !important;
            transition: all 0.3s ease !important;
            visibility: visible !important;
            opacity: 1 !important;
            pointer-events: auto !important;
            border: none !important;
            outline: none !important;
            transform: translateZ(0) !important;
        }

        .whatsapp-float-btn:hover,
        #whatsappFloatBtn:hover {
            background-color: #128C7E !important;
            transform: scale(1.1) !important;
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6) !important;
        }

        .whatsapp-float-btn i,
        #whatsappFloatBtn i {
            font-size: 30px !important;
            color: #FFFFFF !important;
            line-height: 1 !important;
        }

        /* Top Contact Form Bar */
        .top-contact-bar {
            background: linear-gradient(135deg, rgba(51, 59, 70, 0.95) 0%, rgba(42, 48, 57, 0.95) 100%);
            backdrop-filter: blur(10px);
            color: #fff;
            padding: 12px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .top-contact-bar .container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            flex-wrap: wrap;
            gap: 25px;
        }

        .top-contact-bar a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            font-weight: 400;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .top-contact-bar a[href^="tel"] i {
            color: #25D366;
            font-size: 14px;
        }

        .top-contact-bar a[href^="mailto"] i {
            color: var(--primary-color);
            font-size: 14px;
        }

        .top-contact-bar a:hover {
            color: #fff;
            transform: translateY(-1px);
        }

        /* Header */
        header {
            background: rgba(26, 31, 36, 0.98);
            backdrop-filter: blur(20px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
            position: sticky;
            top: 0;
            z-index: 999;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            transition: all 0.3s ease;
            width: 100%;
            max-width: 100%;
        }

        header.scrolled {
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.2);
        }

        header nav .nav-links a {
            color: rgba(255, 255, 255, 0.9);
        }

        header nav .logo img {
            filter: none;
            transition: transform 0.3s ease;
        }

        header nav .logo img:hover {
            transform: scale(1.05);
        }

        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            width: 100%;
            max-width: 100%;
            box-sizing: border-box;
        }

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

        .nav-links {
            display: flex;
            list-style: none;
            gap: 35px;
            margin: 0;
            padding: 0;
        }

        .nav-links li {
            position: relative;
        }

        .nav-links a {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-weight: 500;
            font-size: 15px;
            transition: all 0.3s ease;
            position: relative;
            padding: 5px 0;
        }

        .nav-links a:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 4px;
            border-radius: 4px;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
            transition: width 0.3s ease;
        }

        .nav-links a:hover {
            color: #fff;
        }

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

        .cta-button {
            background: #25D366;
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .cta-button:hover {
            background: #128C7E;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
        }

        .mobile-menu-toggle {
            display: none;
            background: transparent;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
            border-radius: 4px;
        }

        .mobile-menu-toggle:hover {
            color: var(--primary-color);
            transform: scale(1.1);
        }

        @media (max-width: 1024px) {
            .nav-links {
                gap: 20px;
            }

            .nav-links a {
                font-size: 14px;
            }

            .cta-button {
                padding: 10px 24px;
                font-size: 13px;
            }
        }

        @media (max-width: 900px) {
            .nav-links {
                gap: 15px;
            }

            .nav-links a {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .top-contact-bar {
                padding: 10px 0;
                font-size: 12px;
                width: 100%;
                max-width: 100%;
            }

            .top-contact-bar .container {
                justify-content: center;
                gap: 15px;
                max-width: 100%;
                width: 100%;
                padding: 0 15px;
            }

            nav {
                padding: 15px 0;
            }

            .logo img {
                max-height: 45px;
            }

            .nav-links {
                position: fixed;
                top: 80px;
                left: 0;
                right: 0;
                background: rgba(26, 31, 36, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 30px 20px;
                gap: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                transform: translateX(-100%);
                transition: transform 0.3s ease;
                z-index: 998;
            }

            .nav-links.active {
                transform: translateX(0);
            }

            .nav-links li {
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                text-align: center;
            }

            .nav-links a {
                display: block;
                padding: 15px 0;
                font-size: 16px;
                text-align: center;
            }

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

            .mobile-menu-toggle {
                display: block;
            }

            .cta-button {
                display: none;
            }
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--light-bg) 0%, #fff 100%);
            padding: 100px 0;
            text-align: center;
        }

        /* Hero Slider Section */
        .hero-slider-section {
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }

        .hero-slider-wrapper {
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }

        .hero-slider-slide {
            position: relative;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
        }


        .hero-slider-content h2 {
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
        }

        /* Hero Animations - Faster */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(20px);
            }

            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.8;
                transform: scale(1.05);
            }
        }

        .hero-slider-section .btn-primary:hover,
        .hero-slider-section .btn-whatsapp:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        /* Responsive Hero Section */
        @media (max-width: 1200px) {
            .hero-slider-section .container {
                padding: 0 30px !important;
            }

            .hero-slider-content h2 {
                font-size: 70px !important;
            }
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr !important;
                gap: 40px !important;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: 100%;
            }

            .hero-slider-section .row {
                justify-content: center !important;
                grid-template-columns: 1fr !important;
            }

            .hero-slider-wrapper,
            .hero-slider-slide {
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }

            .hero-slider-content {
                max-width: 85% !important;
            }

            .hero-slider-content h2 {
                font-size: 55px !important;
                text-align: center !important;
            }

            .hero-slider-content h1 {
                font-size: 24px !important;
                text-align: center !important;
            }

            .hero-slider-content p {
                text-align: center !important;
                max-width: 90% !important;
                margin-left: auto !important;
                margin-right: auto !important;
                line-height: 1.3 !important;
                padding: 0 10px !important;
                font-size: 16px !important;
            }

            .hero-slider-content>div:first-child {
                justify-content: center !important;
                display: flex !important;
                margin-left: auto !important;
                margin-right: auto !important;
                width: fit-content !important;
            }

            /* Disable backdrop-filter on mobile for better performance */
            .cta-form {
                backdrop-filter: none !important;
                -webkit-backdrop-filter: none !important;
                background: rgba(255, 255, 255, 0.08) !important;
            }

            /* Optimize transitions on mobile */
            * {
                transition-duration: 0.2s !important;
                animation-duration: 0.3s !important;
            }

            .hero-slider-content>div:nth-child(2) {
                justify-content: center !important;
                flex-wrap: wrap !important;
            }

            .hero-image {
                display: none;
            }

            .hero-slider-content>div:last-child {
                grid-template-columns: repeat(3, 1fr) !important;
                gap: 20px !important;
                text-align: center !important;
            }

            .hero-slider-content>div:last-child>div {
                text-align: center !important;
            }
        }

        @media (max-width: 768px) {
            .hero-slider-section .hero-slider-slide {
                min-height: 85vh !important;
                background-attachment: scroll !important;
                padding-top: 80px !important;
                padding-bottom: 60px !important;
            }

            section[id] {
                scroll-margin-top: 70px !important;
            }

            .hero-slider-section .container {
                padding: 0 20px !important;
                max-width: 100% !important;
                width: 100% !important;
            }

            .hero-slider-section .row {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
                justify-content: center !important;
            }

            .hero-slider-wrapper,
            .hero-slider-slide {
                width: 100% !important;
                max-width: 100% !important;
                overflow-x: hidden !important;
            }

            .hero-slider-content {
                max-width: 100% !important;
            }

            .hero-slider-content h2 {
                font-size: 42px !important;
                line-height: 1.2 !important;
                margin-bottom: 15px !important;
                letter-spacing: -1px !important;
            }

            .hero-slider-content h1 {
                font-size: 20px !important;
                margin-bottom: 20px !important;
            }

            .hero-slider-content p {
                font-size: 16px !important;
                line-height: 1.7 !important;
                margin-bottom: 30px !important;
            }

            .hero-slider-content>div:first-child {
                padding: 6px 16px !important;
                margin-bottom: 20px !important;
            }

            .hero-slider-content>div:first-child>span:last-child {
                font-size: 12px !important;
            }

            .hero-slider-content>div:nth-child(2) {
                flex-direction: column !important;
                gap: 15px !important;
                margin-bottom: 40px !important;
            }

            .hero-slider-content .btn-primary,
            .hero-slider-content .btn-whatsapp {
                width: 100% !important;
                max-width: 100% !important;
                padding: 16px 30px !important;
                font-size: 15px !important;
                justify-content: center !important;
            }

            .hero-slider-content>div:last-child {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
                margin-top: 30px !important;
                padding-top: 30px !important;
            }

            .hero-slider-content>div:last-child>div {
                text-align: center !important;
            }

            .hero-slider-content>div:last-child>div>div:first-child {
                font-size: 32px !important;
            }

            .hero-slider-content>div:last-child>div>div:last-child {
                font-size: 13px !important;
            }
        }

        @media (max-width: 480px) {
            .hero-slider-section .hero-slider-slide {
                min-height: 80vh !important;
                padding: 40px 0 !important;
            }

            .hero-slider-content h2 {
                font-size: 36px !important;
                line-height: 1.1 !important;
            }

            .hero-slider-content h1 {
                font-size: 18px !important;
            }

            .hero-slider-content p {
                font-size: 15px !important;
            }

            .hero-slider-content>div:first-child {
                padding: 5px 12px !important;
            }

            .hero-slider-content>div:first-child>span:last-child {
                font-size: 11px !important;
            }

            .hero-slider-content .btn-primary,
            .hero-slider-content .btn-whatsapp {
                padding: 14px 25px !important;
                font-size: 14px !important;
            }

            .hero-slider-content>div:last-child>div>div:first-child {
                font-size: 28px !important;
            }
        }

        .services-column-section .service-item {
            cursor: default;
        }

        .services-column-section .service-item:hover {
            background: #ffffff !important;
            border-color: #d0d0d0 !important;
            transform: translateY(-4px);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .services-column-section .service-item:hover>div:first-child {
            opacity: 0.8;
        }

        .services-column-section .service-item a:hover {
            color: var(--light-bg) !important;
            transition: color 0.3s;
        }

        .services-column-section .service-item a:hover i {
            transform: translateX(5px);
            transition: transform 0.3s;
        }

        .hero-slider-section .btn-primary:hover {
            background: var(--light-bg) !important;
            color: var(--dark-text) !important;
            transform: translateY(-2px);
            box-shadow: 0 20px 25px rgba(12, 12, 12, 0.25) !important;
        }

        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr !important;
                gap: 35px !important;
            }

            .footer-brand {
                grid-column: 1 / -1;
                max-width: 100%;
            }

            .hero-slider-content h2 {
                font-size: 80px !important;
            }

            .hero-slider-slide .row {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
            }

            .about-image-section .row {
                grid-template-columns: 1fr !important;
            }

            .about-content-col {
                padding: 60px 40px !important;
            }

            .services-column-section .services-grid {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }
        }

        @media (max-width: 768px) {
            .hero-slider-content h2 {
                font-size: 50px !important;
            }

            .hero-slider-content p:first-of-type {
                font-size: 24px !important;
            }

            .about-image-section .row {
                grid-template-columns: 1fr !important;
                min-height: auto !important;
            }

            .about-content-col {
                padding: 40px 25px !important;
            }

            .about-content-col h3 {
                font-size: 38px !important;
                line-height: 1.2 !important;
                margin-bottom: 6px !important;
            }

            .about-content-col h3 span {
                width: 50px !important;
                height: 3px !important;
                margin: 10px 0 8px 0 !important;
            }

            .about-content-col p:first-of-type {
                font-size: 18px !important;
                margin-bottom: 25px !important;
                margin-top: 0 !important;
            }

            .about-content-col div {
                font-size: 15px !important;
                line-height: 1.8 !important;
            }

            .about-image-col {
                min-height: 300px;
                order: -1;
            }

            .services-column-section {
                padding: 60px 20px 80px 20px !important;
            }

            .services-column-section .services-grid {
                grid-template-columns: 1fr !important;
                gap: 25px !important;
            }

            .service-item {
                padding: 30px 25px !important;
            }

            .service-item h3 {
                font-size: 28px !important;
            }
        }

        .hero h1 {
            font-size: 48px;
            color: var(--dark-text);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero p {
            font-size: 20px;
            color: var(--dark-text);
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .btn-primary {
            background: var(--primary-color);
            color: #fff;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-primary:focus {
            outline: 2px solid var(--primary-color);
            outline-offset: 2px;
        }

        .btn-primary:hover {
            background: #8a6f47;
            transform: translateY(-2px);
        }

        .btn-whatsapp {
            background: #25D366;
            color: #fff;
            padding: 15px 40px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: all 0.3s;
            border: 2px solid transparent;
        }

        .btn-whatsapp:focus {
            outline: 2px solid #25D366;
            outline-offset: 2px;
        }

        .btn-whatsapp:hover {
            background: #128C7E;
            transform: translateY(-2px);
        }

        /* Contact Form Section */
        .contact-form-section {
            padding: 80px 0;
            background-color: #F5F3EC;        }

        /* CTA Form (First Form) - Horizontal Glass Effect */
        .contact-cta-form {
            background: linear-gradient(135deg, #1a1f24 0%, #252a30 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .contact-cta-form::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 30%, rgba(164, 136, 89, 0.12) 0%, transparent 50%),
                        radial-gradient(circle at 80% 70%, rgba(164, 136, 89, 0.08) 0%, transparent 50%);
            pointer-events: none;
        }

        .contact-cta-form::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(164, 136, 89, 0.3), transparent);
        }

        .contact-form-cta-wrapper {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .cta-form-content {
            text-align: center;
            margin-bottom: 50px;
        }

        .cta-form-content h2 {
            font-size: 48px;
            color: #fff;
            margin-bottom: 15px;
            font-weight: 700;
            letter-spacing: -1px;
        }

        .cta-form-content p {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            line-height: 1.6;
        }

        .cta-form {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 24px;
            padding: 50px 40px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            will-change: transform;
        }

        .cta-form::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(164, 136, 89, 0.08) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-form-fields {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            align-items: end;
            position: relative;
            z-index: 1;
        }

        .cta-form-field {
            position: relative;
        }

        .cta-form-field input,
        .cta-form-field select {
            width: 100%;
            padding: 16px 20px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            color: #fff;
            font-size: 15px;
            font-family: sans-serif;
            transition: all 0.3s ease;
            outline: none;
        }

        .cta-form-field input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .cta-form-field input:focus,
        .cta-form-field select:focus {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(164, 136, 89, 0.6);
            box-shadow: 0 0 0 3px rgba(164, 136, 89, 0.2);
            transform: translateY(-2px);
        }

        .cta-form-field select {
            cursor: pointer;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 20px center;
            padding-right: 45px;
        }

        .cta-form-field select option {
            background: #252a30;
            color: #fff;
        }

        .cta-form-submit {
            background: linear-gradient(135deg, #A48859 0%, #8a6f47 100%);
            color: #fff;
            padding: 16px 35px;
            border: none;
            border-radius: 12px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 10px;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(164, 136, 89, 0.3);
            position: relative;
            z-index: 1;
        }

        .cta-form-submit:hover {
            background: linear-gradient(135deg, #8a6f47 0%, #A48859 100%);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(164, 136, 89, 0.4);
        }

        .cta-form-submit:active {
            transform: translateY(0);
        }

        .cta-form-footer {
            text-align: center;
            margin-top: 25px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
            position: relative;
            z-index: 1;
        }

        .cta-form-footer a {
            color: #25D366;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .cta-form-footer a:hover {
            color: #128C7E;
            transform: translateY(-1px);
        }

        /* Regular Contact Form (Second Form) */
        .contact-form-wrapper {
            max-width: 800px;
            margin: 0 auto;
            padding: 40px;
        }

        .contact-form-wrapper h2 {
            text-align: center;
            color: var(--dark-text);
            margin-bottom: 30px;
            font-size: 36px;
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--dark-text);
            font-weight: 500;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-family: sans-serif;
            font-size: 14px;
        }

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

        .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        .form-submit {
            background: var(--primary-color);
            color: #fff;
            padding: 15px 40px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            font-size: 16px;
            cursor: pointer;
            width: 100%;
            transition: background 0.3s;
        }

        .form-submit:hover {
            background: #8a6f47;
        }

        /* Section Styles */
        section {
            padding: 80px 0;
            width: 100%;
            max-width: 100%;
            overflow-x: hidden;
            box-sizing: border-box;
        }

        .section-title {
            text-align: center;
            font-size: 42px;
            color: var(--dark-text);
            margin-bottom: 8px;
            line-height: 1.2;
            letter-spacing: -0.5px;
            font-weight: 700;
        }

        .section-subtitle {
            text-align: center;
            color: var(--secondary-color);
            font-size: 17px;
            margin-bottom: 50px;
            margin-top: 0;
            line-height: 1.5;
            letter-spacing: 0.2px;
            font-weight: 400;
        }

        /* Before After Gallery */
        .before-after {
            background: #fff;
        }

        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
        }

        .gallery-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background: #fff;
        }

        .gallery-item img {
            width: 100%;
            height: 400px;
            object-fit: cover;
            display: block;
        }

        .gallery-caption {
            padding: 20px;
            background: #fff;
        }

        .gallery-caption h3 {
            color: var(--primary-color);
            margin-bottom: 10px;
            font-size: 20px;
        }

        .gallery-caption p {
            color: var(--dark-text);
            font-size: 14px;
        }

        /* Treatments Section */
        .treatments {
            background: var(--light-bg);
        }

        .treatments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 40px;
            margin-top: 40px;
        }

        .treatment-card {
            background: #fff;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .treatment-card:hover {
            transform: translateY(-5px);
        }

        .treatment-card h3 {
            color: var(--primary-color);
            font-size: 28px;
            margin-bottom: 20px;
        }

        .treatment-card p {
            color: var(--dark-text);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .treatment-features {
            list-style: none;
            margin-top: 20px;
        }

        .treatment-features li {
            padding: 10px 0;
            padding-left: 30px;
            position: relative;
            color: var(--dark-text);
        }

        .treatment-features li:before {
            content: "✓";
            position: absolute;
            left: 0;
            color: var(--primary-color);
            font-weight: bold;
            font-size: 18px;
        }

        /* Patient Videos Section */
        .patient-videos {
            background: #fff;
        }

        .videos-carousel-wrapper {
            position: relative;
            margin-top: 40px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }

        .video-item {
            position: relative;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            aspect-ratio: 9 / 16;
            background: #000;
            cursor: pointer;
        }

        .video-item iframe {
            width: 100%;
            height: 100%;
            border: none;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-thumbnail {
            width: 100%;
            height: 100%;
            object-fit: cover;
            cursor: pointer;
            position: absolute;
            top: 0;
            left: 0;
        }

        .video-play-button {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 80px;
            height: 80px;
            background: rgba(0, 0, 0, 0.7);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 2;
            transition: all 0.3s;
        }

        .video-play-button:hover {
            background: rgba(164, 136, 89, 0.9);
            transform: translate(-50%, -50%) scale(1.1);
        }

        .video-play-button i {
            color: #fff;
            font-size: 32px;
            margin-left: 5px;
        }

        .video-item.playing .video-thumbnail,
        .video-item.playing .video-play-button {
            display: none;
        }

        .videos-carousel-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .video-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }

        .video-carousel-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        @media (min-width: 768px) {
            .videos-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }

        @media (min-width: 1024px) {
            .videos-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 30px;
            }
        }

        @media (max-width: 767px) {
            .videos-carousel-wrapper {
                overflow: hidden;
            }

            .videos-grid {
                display: flex;
                transition: transform 0.5s ease-in-out;
                gap: 0;
                grid-template-columns: none;
            }

            .videos-grid .video-item {
                min-width: 100%;
                flex: 0 0 100%;
                margin-right: 0;
            }

            .videos-carousel-dots {
                display: flex;
            }
        }

        /* Reviews Section */
        .reviews {
            background: var(--light-bg);
            position: relative;
            overflow: hidden;
        }

        .testimonial-carousel-wrapper {
            position: relative;
            margin-top: 40px;
            overflow: hidden;
            width: 100%;
        }

        .testimonial-carousel {
            display: flex;
            transition: transform 0.5s ease-in-out;
            gap: 30px;
            width: 100%;
        }

        .testimonial-item {
            flex: 0 0 100%;
            min-width: 0;
            padding: 0;
            box-sizing: border-box;
        }

        @media (min-width: 768px) {
            .testimonial-item {
                flex: 0 0 calc(50% - 15px);
                min-width: calc(50% - 15px);
            }
        }

        @media (min-width: 1024px) {
            .testimonial-item {
                flex: 0 0 calc(33.333% - 20px);
                min-width: calc(33.333% - 20px);
            }
        }

        .review-card {
            background: #fff;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .review-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .review-stars {
            color: #FFD700;
            font-size: 18px;
        }

        .review-source {
            font-size: 14px;
            color: var(--secondary-color);
            font-weight: 600;
            display: flex;
            align-items: center;
        }

        .review-source img {
            height: 32px;
            width: auto;
        }

        .review-text {
            color: var(--dark-text);
            line-height: 1.6;
            margin-top: 0;
            flex-grow: 1;
        }

        .review-author {
            color: var(--dark-text);
            font-weight: 600;
            font-size: 18px;
            margin-bottom: 5px;
            margin-top: 0;
        }

        .review-date {
            font-size: 12px;
            color: var(--secondary-color);
            margin-bottom: 10px;
        }

        .review-see-more {
            display: inline-block;
            margin-top: 10px;
            color: var(--primary-color);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
        }

        .review-see-more:hover {
            color: var(--dark-text);
            text-decoration: underline;
        }

        .carousel-controls {
            display: none;
        }

        .carousel-dot {
            display: none;
        }

        .carousel-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            margin-top: 40px;
        }

        .carousel-nav-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--primary-color);
            color: #fff;
            border: none;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(164, 136, 89, 0.3);
        }

        .carousel-nav-btn:hover {
            background: var(--secondary-color);
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(164, 136, 89, 0.4);
        }

        .carousel-nav-btn:active {
            transform: scale(0.95);
        }

        .carousel-nav-btn i {
            line-height: 1;
        }

        /* Doctors Section */
        .doctors {
            background: #fff;
        }

        .doctors-carousel-wrapper {
            position: relative;
            margin-top: 40px;
        }

        .doctors-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            justify-items: center;
        }

        /* First row: 3 doctors */
        .doctors-grid .doctor-card:nth-child(1),
        .doctors-grid .doctor-card:nth-child(2),
        .doctors-grid .doctor-card:nth-child(3) {
            grid-column: span 1;
            width: 100%;
        }

        /* Second row: 2 doctors centered */
        .doctors-grid .doctor-card:nth-child(4) {
            grid-column: 1;
            width: 100%;
        }

        .doctors-grid .doctor-card:nth-child(5) {
            grid-column: 2;
            width: 100%;
        }

        .doctors-carousel-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        /* Desktop: center all doctor cards in one row (5 columns) */
        @media (min-width: 1024px) {
            .doctors-grid {
                grid-template-columns: repeat(5, 1fr) !important;
                gap: 24px !important;
                justify-items: center !important;
            }
            .doctors-grid .doctor-card:nth-child(4),
            .doctors-grid .doctor-card:nth-child(5) {
                grid-column: auto !important;
                width: 100% !important;
            }
        }

        .doctor-carousel-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }

        .doctor-carousel-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        .doctor-card {
            background: #fff;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .doctor-card:hover {
            transform: translateY(-5px);
        }

        .doctor-image {
            width: 100%;
            height: 300px;
            object-fit: cover;
            flex-shrink: 0;
        }

        .doctor-info {
            padding: 25px;
            text-align: left;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }

        .doctor-info h3 {
            color: var(--dark-text);
            font-size: 20px;
            margin-bottom: 8px;
            line-height: 1.4;
            font-weight: 600;
            letter-spacing: -0.01em;
            flex-grow: 1;
        }

        .doctor-info .doctor-name-full {
            color: var(--dark-text);
            font-size: 18px;
            font-weight: 400;
            margin-bottom: 5px;
        }

        .doctor-info .specialty {
            color: var(--primary-color);
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-top: auto;
            padding-top: 8px;
            line-height: 1.6;
        }

        /* About Section */
        .about {
            position: relative;
            padding: 100px 0 60px 0;
            overflow: hidden;
        }

        .about-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url('upload/about-2-title-bg.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            background-color: var(--dark-text);
            z-index: 0;
        }

        .about-background::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(51, 59, 70, 0.85);
        }

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

        .about-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        .about-title-section {
            color: #fff;
        }

        .about-title-section h2 {
            font-size: 49px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .about-title-section .title-divider {
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px 0;
        }

        .about-title-section .title-caption {
            font-size: 17px;
            font-weight: 300;
            color: #e2ebff;
            margin-top: 10px;
        }

        .about-content-section {
            color: #fff;
        }

        .about-content-section .lead-text {
            font-size: 20px;
            color: #ffffff;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .about-content-section .description-text {
            font-size: 17px;
            color: #a0cbff;
            line-height: 1.8;
        }

        @media (max-width: 968px) {
            .about-wrapper {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .about-title-section h2 {
                font-size: 36px;
            }
        }

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: var(--light-bg);
        }

        .faq-title {
            font-size: 26px;
            font-weight: 600;
            color: var(--dark-text);
            margin-bottom: 40px;
        }

        .faq-title-divider {
            display: block;
            width: 60px;
            height: 3px;
            background: var(--primary-color);
            margin: 15px 0;
        }

        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .faq-item {
            border-bottom: 1px solid rgba(51, 59, 70, 0.15);
        }

        .faq-item:first-child {
            border-top: 1px solid rgba(51, 59, 70, 0.15);
        }

        .faq-header {
            display: flex;
            align-items: center;
            padding: 25px 0;
            cursor: pointer;
            transition: all 0.3s;
            position: relative;
        }

        .faq-header:hover .faq-question {
            color: var(--primary-color);
        }

        .faq-icon {
            width: 30px;
            height: 30px;
            min-width: 30px;
            margin-right: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(164, 136, 89, 0.2);
            border-radius: 50%;
            color: var(--primary-color);
            font-size: 16px;
            transition: all 0.3s;
        }

        .faq-item.active .faq-icon {
            background: var(--primary-color);
            color: #fff;
            transform: rotate(180deg);
        }

        .faq-question {
            font-size: 19px;
            font-weight: 500;
            color: var(--dark-text);
            flex: 1;
            line-height: 1.4;
            transition: color 0.3s;
        }

        .faq-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease-out;
            padding-left: 50px;
        }

        .faq-item.active .faq-content {
            max-height: 1000px;
            padding-bottom: 25px;
        }

        .faq-answer {
            font-size: 16px;
            line-height: 1.8;
            color: var(--dark-text);
            padding-top: 10px;
        }

        .faq-answer p {
            opacity: 0.85;
        }

        .faq-answer p {
            margin-bottom: 15px;
        }

        .faq-answer p:last-child {
            margin-bottom: 0;
        }

        /* Footer */
        footer {
            background: linear-gradient(180deg, #1a1f24 0%, #151920 100%);
            color: #fff;
            padding: 70px 0 30px 0;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            position: relative;
            overflow: hidden;
            width: 100%;
            max-width: 100%;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(164, 136, 89, 0.3), transparent);
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1.5fr;
            gap: 50px;
            margin-bottom: 50px;
            padding-bottom: 50px;
        }

        .footer-column {
            display: flex;
            flex-direction: column;
        }

        /* Footer Brand Column */
        .footer-brand {
            max-width: 400px;
        }

        .footer-logo {
            margin-bottom: 20px;
        }

        .footer-logo img {
            max-height: 60px;
            width: auto;
            filter: brightness(0) invert(1);
        }

        .footer-description {
            font-size: 15px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 25px;
            letter-spacing: 0.2px;
        }

        .footer-brand .footer-social {
            display: none !important;
            visibility: hidden !important;
            opacity: 0 !important;
        }

        .footer-brand .social-link {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            color: #fff;
            font-size: 16px;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .footer-brand .social-link:hover {
            transform: translateY(-3px);
            border-color: rgba(255, 255, 255, 0.2);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }

        .footer-brand .social-link.facebook:hover {
            background: #1877F2;
            border-color: #1877F2;
        }

        .footer-brand .social-link.instagram:hover {
            background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
            border-color: transparent;
        }

        .footer-brand .social-link.youtube:hover {
            background: #FF0000;
            border-color: #FF0000;
        }

        .footer-brand .social-link.whatsapp:hover {
            background: #25D366;
            border-color: #25D366;
        }

        .footer-brand .social-link.tiktok:hover {
            background: #000000;
            border-color: #000000;
        }

        /* Footer Links */
        .footer-title {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 22px;
            font-family: 'Argesta Display', serif;
            letter-spacing: 0.5px;
        }

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

        .footer-nav li {
            margin-bottom: 12px;
        }

        .footer-nav a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
            padding-left: 0;
        }

        .footer-nav a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: all 0.3s ease;
            color: var(--primary-color);
        }

        .footer-nav a:hover {
            color: var(--primary-color);
            padding-left: 20px;
        }

        .footer-nav a:hover::before {
            opacity: 1;
            left: 0;
        }

        /* Footer Contact */
        .footer-contact-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 18px;
            color: rgba(255, 255, 255, 0.7);
            font-size: 15px;
            line-height: 1.6;
        }

        .footer-contact-list li i {
            color: var(--primary-color);
            margin-right: 12px;
            margin-top: 2px;
            font-size: 16px;
            min-width: 20px;
        }

        .footer-contact-list li a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-contact-list li a:hover {
            color: var(--primary-color);
        }

        .footer-contact-list li span {
            color: rgba(255, 255, 255, 0.7);
        }

        /* Footer Bottom */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            padding-top: 0;
        }

        /* Footer Disclaimer Wrapper */
        .footer-disclaimer-wrapper {
            text-align: center;
            padding: 25px 0 0 0;
            margin-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-disclaimer-text {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.7;
            margin: 0;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
            letter-spacing: 0.2px;
        }

        .footer-bottom p {
            margin: 0;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.6;
        }

        .footer-copyright {
            flex: 1;
            min-width: 200px;
        }

        .footer-designed {
            flex: 0 0 auto;
            text-align: right;
        }

        .footer-designed a {
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: color 0.3s ease;
        }

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

        /* Mobile Menu */
        .mobile-menu-toggle {
            display: none;
            font-size: 28px;
            cursor: pointer;
            color: #fff;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .top-contact-bar {
                display: none;
            }

            .nav-links {
                display: none;
                position: fixed;
                top: 70px;
                left: 0;
                right: 0;
                background: rgba(26, 31, 36, 0.98);
                backdrop-filter: blur(20px);
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
                z-index: 998;
                text-align: center;
                width: 100%;
                max-width: 100%;
            }

            /* Footer Mobile */
            .footer-content {
                grid-template-columns: 1fr !important;
                gap: 40px !important;
                padding-bottom: 40px !important;
            }

            .footer-brand {
                max-width: 100% !important;
            }

            /* Quick Links ve Contact yan yana mobilde */
            .footer-links,
            .footer-contact {
                display: inline-block !important;
                width: 48% !important;
                vertical-align: top !important;
                margin-right: 4% !important;
            }

            .footer-contact {
                margin-right: 0 !important;
            }

            .footer-logo img {
                max-height: 50px !important;
            }

            .footer-description {
                font-size: 14px !important;
                margin-bottom: 20px !important;
            }

            .footer-title {
                font-size: 16px !important;
                margin-bottom: 18px !important;
            }

            .footer-nav li {
                margin-bottom: 10px !important;
            }

            .footer-nav a {
                font-size: 14px !important;
            }

            .footer-contact-list li {
                margin-bottom: 15px !important;
                font-size: 14px !important;
            }

            .footer-bottom {
                flex-direction: column !important;
                text-align: center !important;
                gap: 15px !important;
                padding-top: 25px !important;
            }

            .footer-disclaimer-wrapper {
                padding: 20px 0 0 0 !important;
                margin-top: 25px !important;
            }

            .footer-disclaimer-text {
                font-size: 12px !important;
                padding: 0 20px !important;
            }

            .footer-copyright,
            .footer-designed {
                flex: 1 1 100% !important;
                width: 100% !important;
            }

            .footer-designed {
                text-align: center !important;
            }

            .nav-links.active {
                display: flex;
            }

            .mobile-menu-toggle {
                display: block;
            }

            /* WhatsApp Button Mobile - Ensure Visible */
            .whatsapp-float-btn,
            #whatsappFloatBtn {
                position: fixed !important;
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 60px !important;
                height: 60px !important;
                bottom: calc(20px + env(safe-area-inset-bottom)) !important;
                right: 20px !important;
                z-index: 2147483647 !important;
                background-color: #25D366 !important;
                color: #FFFFFF !important;
                border-radius: 50% !important;
                pointer-events: auto !important;
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5) !important;
            }

            .hero h1 {
                font-size: 32px;
            }

            .hero p {
                font-size: 18px;
            }

            .section-title {
                font-size: 32px;
                margin-bottom: 6px;
                line-height: 1.2;
            }

            .section-subtitle {
                font-size: 15px;
                margin-bottom: 35px;
                margin-top: 0;
                line-height: 1.4;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn-primary,
            .btn-whatsapp {
                width: 100%;
                max-width: 300px;
            }

            .contact-cta-form {
                padding: 70px 0;
            }

            .cta-form-content h2 {
                font-size: 36px !important;
            }

            .cta-form-content p {
                font-size: 16px !important;
            }

            .cta-form {
                padding: 35px 25px;
            }

            .cta-form-fields {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .cta-form-submit {
                width: 100%;
                padding: 18px;
            }

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

            .top-contact-bar .container {
                flex-direction: column;
            }

            .top-contact-form {
                width: 100%;
            }

            .top-contact-form input {
                flex: 1;
            }

            /* Patient Videos Section Mobile */
            .patient-videos {
                padding: 60px 20px !important;
            }

            /* Reviews Section Mobile */
            .reviews {
                padding: 60px 20px !important;
            }

            .review-card {
                padding: 25px 20px !important;
            }

            .review-source img {
                height: 28px !important;
            }

            /* Doctors Section Mobile */
            .doctors {
                padding: 60px 20px !important;
            }

            .doctors-carousel-wrapper {
                overflow: hidden;
            }

            .doctors-grid {
                display: flex;
                transition: transform 0.5s ease-in-out;
                gap: 0;
                grid-template-columns: none;
            }

            .doctors-grid .doctor-card {
                min-width: 100%;
                flex: 0 0 100%;
                margin-right: 0;
            }

            .doctors-grid .doctor-card:nth-child(4),
            .doctors-grid .doctor-card:nth-child(5) {
                grid-column: unset;
            }

            .doctors-carousel-dots {
                display: flex !important;
            }

            /* Contact Form Mobile */
            .contact-form-section {
                padding: 60px 20px !important;
            }

            .contact-form-wrapper {
                padding: 30px 20px !important;
            }

            .contact-form-wrapper h2 {
                font-size: 28px !important;
            }

            /* Carousel Navigation Mobile */
            .carousel-nav {
                margin-top: 30px !important;
                gap: 15px !important;
            }

            .carousel-nav-btn {
                width: 45px !important;
                height: 45px !important;
                font-size: 16px !important;
            }

            /* Gallery Mobile */
            .gallery-grid {
                grid-template-columns: 1fr !important;
                gap: 20px !important;
            }

            .gallery-item img {
                height: 300px !important;
            }
        }

        /* Before After Carousel Styles */
        .before-after-carousel-wrapper {
            position: relative;
        }

        .before-after-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 25px;
        }

        .before-after-item {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: #fff;
            padding: 15px;
        }

        .after-label {
            position: absolute;
            top: 25px;
            right: 25px;
            background: var(--primary-color);
            color: #fff;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            z-index: 2;
        }

        .before-after-item img {
            width: 100%;
            height: auto;
            border-radius: 10px;
            display: block;
        }

        .before-after-dots {
            display: none;
            justify-content: center;
            gap: 10px;
            margin-top: 30px;
        }

        .before-after-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--secondary-color);
            border: none;
            cursor: pointer;
            transition: all 0.3s;
            padding: 0;
        }

        .before-after-dot.active {
            background: var(--primary-color);
            transform: scale(1.2);
        }

        /* Mobile Styles */
        @media (max-width: 768px) {
            .before-after-section-top {
                padding: 60px 15px !important;
            }

            .before-after-carousel-wrapper {
                overflow: hidden;
            }

            .before-after-grid {
                display: flex;
                transition: transform 0.5s ease-in-out;
                gap: 0;
                grid-template-columns: none !important;
            }

            .before-after-item {
                min-width: 100%;
                flex: 0 0 100%;
                margin-right: 0;
                padding: 15px;
            }

            .after-label {
                top: 25px;
                right: 25px;
            }

            .before-after-item img {
                height: auto;
            }

            .before-after-dots {
                display: flex;
            }

            /* Hero Section Responsive */
            .hero-slider-section .row {
                grid-template-columns: 1fr !important;
                gap: 30px !important;
            }

            .hero-slider-content h2 {
                font-size: 60px !important;
                line-height: 1.15 !important;
                font-weight: 800 !important;
                letter-spacing: -1px !important;
                margin-bottom: 18px !important;
                text-shadow: 0 3px 12px rgba(0, 0, 0, 0.25) !important;
            }

            .hero-slider-content h1 {
                font-size: 22px !important;
                font-weight: 500 !important;
                color: rgba(255, 255, 255, 0.92) !important;
                opacity: 0.95 !important;
                margin-top: 6px !important;
                margin-bottom: 16px !important;
            }

            .hero-slider-content p {
                font-size: 10px !important;
                line-height: 1.5 !important;
                color: rgba(255, 255, 255, 0.92) !important;
            }

            .hero-slider-content > div:first-child {
                flex-direction: column !important;
                gap: 15px !important;
            }

            .hero-slider-content .btn-primary,
            .hero-slider-content .btn-whatsapp {
                width: 100% !important;
                max-width: 100% !important;
                padding: 16px 30px !important;
                font-size: 15px !important;
            }

            /* CTA Sections Responsive */
            .cta-section h2 {
                font-size: 32px !important;
            }

            .cta-section p {
                font-size: 16px !important;
            }

            .cta-section > div > div > div {
                flex-direction: column !important;
                align-items: center !important;
            }

            .cta-section a {
                width: 100% !important;
                max-width: 300px !important;
                padding: 16px 30px !important;
                font-size: 15px !important;
            }

            /* Before After Images Section Responsive */
            .before-after-images-section {
                padding: 60px 15px !important;
            }

            .before-after-images-grid {
                grid-template-columns: repeat(2, 1fr) !important;
                gap: 20px !important;
            }

            .before-after-images-section .section-title {
                font-size: 36px !important;
            }

            .before-after-images-section .section-subtitle {
                font-size: 16px !important;
            }
        }

        @media (max-width: 480px) {
            .hero-slider-content h2 {
                font-size: 46px !important;
                font-weight: 800 !important;
                line-height: 1.12 !important;
                letter-spacing: -0.8px !important;
                margin-bottom: 16px !important;
                text-shadow: 0 3px 10px rgba(0, 0, 0, 0.25) !important;
            }

            .hero-slider-content h1 {
                font-size: 18px !important;
                font-weight: 500 !important;
                color: rgba(255, 255, 255, 0.9) !important;
                margin-top: 6px !important;
                margin-bottom: 14px !important;
            }

            .hero-slider-content p {
                font-size: 12px !important;
                line-height: 1.4 !important;
                color: rgba(255, 255, 255, 0.9) !important;
            }

            .cta-section h2 {
                font-size: 28px !important;
            }

            .cta-section p {
                font-size: 14px !important;
            }

            .before-after-images-grid {
                grid-template-columns: 1fr !important;
                gap: 15px !important;
            }

            .before-after-images-section .section-title {
                font-size: 28px !important;
            }

            .before-after-images-section .section-subtitle {
                font-size: 14px !important;
            }

            /* WhatsApp Button Small Mobile - Ensure Visible */
            .whatsapp-float-btn,
            #whatsappFloatBtn {
                position: fixed !important;
                display: flex !important;
                visibility: visible !important;
                opacity: 1 !important;
                width: 60px !important;
                height: 60px !important;
                bottom: calc(20px + env(safe-area-inset-bottom)) !important;
                right: 20px !important;
                z-index: 2147483647 !important;
                background-color: #25D366 !important;
                color: #FFFFFF !important;
                border-radius: 50% !important;
                pointer-events: auto !important;
                box-shadow: 0 4px 12px rgba(37, 211, 102, 0.5) !important;
            }
        }
