:root {
            --primary-green: #00d4aa;
            --dark-bg: #000000;
            --section-bg: #0a0a0a;
            --card-bg: #111111;
            --text-white: #ffffff;
            --text-gray: #888888;
            --text-light-gray: #666666;
            --border-color: #1a1a1a;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        html {
    width: 100%;
    overflow-x: hidden !important;
}

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--dark-bg);
            color: var(--text-white);
            line-height: 1.6;
            overflow-x: hidden !important;
        }

        .container {
            max-width: 100%;
            padding-left: 15px;
            padding-right: 15px;
        }

        /* Navigation - Enhanced Responsive */
        .navbar {
            background-color: var(--dark-bg) !important;
            padding: 1.2rem 0;
            border-bottom: 1px solid var(--border-color);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(0, 0, 0, 0.95) !important;
            backdrop-filter: blur(15px);
            padding: 0.8rem 0;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.3rem;
            color: var(--text-white) !important;
            margin-right: 0;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .navbar-brand::before {
            content: '';
            width: 35px;
            height: 35px;
            background-color: var(--text-white);
            border-radius: 50%;
            display: inline-block;
            flex-shrink: 0;
        }

        .navbar-nav {
            margin: 0 auto;
            display: flex;
            gap: 2rem;
        }

        .navbar-nav .nav-link {
            color: var(--text-gray) !important;
            font-weight: 400;
            font-size: 0.9rem;
            transition: color 0.3s ease;
            padding: 0.5rem 0 !important;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--text-white) !important;
        }

        .navbar-nav .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 2px;
            background-color: var(--primary-green);
        }

        .navbar-buttons {
            display: flex;
            gap: 0.5rem;
            align-items: center;
        }

        .btn-appointment {
            background-color: transparent;
            color: var(--text-white);
            font-weight: 500;
            padding: 0.6rem 1.2rem;
            border: 1px solid var(--text-white);
            border-radius: 6px;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-appointment:hover {
            background-color: var(--text-white);
            color: var(--dark-bg);
        }

        .btn-contact {
            background-color: var(--primary-green);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 0.6rem 1.2rem;
            border-radius: 6px;
            border: none;
            font-size: 0.8rem;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-contact:hover {
            background-color: #00b894;
            color: var(--dark-bg);
            transform: translateY(-1px);
        }

        /* WhatsApp Floating Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            right: 30px;
            background-color: #25d366;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 1.5rem;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            animation: pulse 2s infinite;
        }

        .whatsapp-float:hover {
            background-color: #128c7e;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
            }
            70% {
                box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
            }
        }

        /* Hero Section - Enhanced Responsive */
        .hero-section {
            padding: 120px 1rem 80px;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 50%, var(--primary-green) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 70% 30%, rgba(0, 212, 170, 0.1) 0%, transparent 50%);
            pointer-events: none;
        }

        .hero-content h1 {
            font-size: clamp(2.5rem, 8vw, 4.5rem);
            font-weight: 900;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            line-height: 1;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            font-size: clamp(1.2rem, 4vw, 1.8rem);
            color: var(--primary-green);
            font-weight: 600;
            margin-bottom: 2rem;
            line-height: 1.2;
        }

        .hero-description {
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            color: var(--text-gray);
            line-height: 1.8;
            margin-bottom: 2.5rem;
            max-width: 100%;
        }

        .hero-buttons {
            display: flex;
            gap: 1rem;
            margin-bottom: 3rem;
            flex-wrap: wrap;
        }

        .btn-hero-primary {
            background-color: var(--primary-green);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 1rem 2rem;
            border-radius: 8px;
            border: none;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-hero-primary:hover {
            background-color: #00b894;
            color: var(--dark-bg);
            transform: translateY(-2px);
        }

        .btn-hero-secondary {
            background-color: transparent;
            color: var(--text-white);
            font-weight: 500;
            padding: 1rem 2rem;
            border: 1px solid var(--text-white);
            border-radius: 8px;
            font-size: clamp(0.9rem, 2vw, 1rem);
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            white-space: nowrap;
        }

        .btn-hero-secondary:hover {
            background-color: var(--text-white);
            color: var(--dark-bg);
        }

        .hero-rating {
            display: flex;
            align-items: center;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .rating-avatars {
            display: flex;
            margin-right: 1rem;
        }

        .rating-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--text-white);
            margin-left: -10px;
            border: 2px solid var(--dark-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.8rem;
            color: var(--dark-bg);
            font-weight: 600;
        }

        .rating-avatar:first-child {
            margin-left: 0;
        }

        .rating-info {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .stars {
            color: #ffd700;
            font-size: 1.1rem;
            display: flex;
            gap: 0.2rem;
        }

        .rating-text {
            color: var(--text-gray);
            font-size: clamp(0.8rem, 2vw, 0.95rem);
        }

        .hero-image-container {
            position: relative;
            height: clamp(300px, 50vw, 500px);
            display: flex;
            align-items: center;
            justify-content: center;
            max-width: 100%;
        }

        .hero-image {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('img/home.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.4; /* Increase opacity so it’s visible */
            z-index: 0; /* Ensure it stays behind content */
        }

        /* Floating Animation */
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-20px); }
        }

        .floating-element {
            animation: float 6s ease-in-out infinite;
        }

        /* Background Animation */
        .animated-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: -1;
        }

        .bg-circle {
            position: absolute;
            border-radius: 50%;
            max-width: 80%;
            max-height: 80%;
            background: linear-gradient(45deg, var(--primary-green), transparent);
            opacity: 0.1;
            animation: moveCircle 20s linear infinite;
        }

        .bg-circle:nth-child(1) {
            width: 300px;
            height: 300px;
            top: 10%;
            left: 10%;
            animation-delay: 0s;
        }

        .bg-circle:nth-child(2) {
            width: 200px;
            height: 200px;
            top: 60%;
            right: 10%;
            animation-delay: -5s;
        }

        .bg-circle:nth-child(3) {
            width: 150px;
            height: 150px;
            bottom: 20%;
            left: 20%;
            animation-delay: -10s;
        }

        @keyframes moveCircle {
            0% { transform: translate(0, 0) rotate(0deg); }
            33% { transform: translate(30px, -30px) rotate(120deg); }
            66% { transform: translate(-20px, 20px) rotate(240deg); }
            100% { transform: translate(0, 0) rotate(360deg); }
        }

        /* Section Styling - Enhanced */
        .section {
            padding: clamp(60px, 10vw, 100px) 0;
        }

        .section-dark {
            background-color: var(--section-bg);
        }

        .section-title {
            font-size: clamp(1.8rem, 5vw, 2.5rem);
            font-weight: 700;
            text-align: center;
            margin-bottom: 1rem;
            color: var(--text-white);
            position: relative;
        }

        .section-subtitle {
            text-align: center;
            color: var(--text-gray);
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
            margin-bottom: 4rem;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 1rem;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background-color: var(--primary-green);
        }

        /* About Section - Enhanced Responsive */
        .about-section {
            background-color: var(--section-bg);
        }

        .about-image {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            height: clamp(250px, 40vw, 400px);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
            margin-bottom: 2rem;
        }

        .about-image::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('img/about.jpg') no-repeat center center;
            background-size: cover;
            opacity: 0.4; /* Increase opacity so it’s visible */
            z-index: 0; /* Ensure it stays behind content */
        }

        .about-content h3 {
            font-size: clamp(1.3rem, 4vw, 1.8rem);
            font-weight: 700;
            margin-bottom: 1.5rem;
            color: var(--text-white);
        }

        .about-content p {
            color: var(--text-gray);
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
            line-height: 1.8;
            margin-bottom: 1.5rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            margin-top: 2.5rem;
        }

        .stat-item {
            background-color: var(--card-bg);
            padding: 1.5rem;
            border-radius: 10px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            border-color: var(--primary-green);
            transform: translateY(-3px);
        }

        .stat-item h5 {
            color: var(--text-white);
            font-weight: 600;
            margin-bottom: 0.5rem;
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .stat-item p {
            color: var(--text-gray);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            margin: 0;
        }

        /* Cards - Enhanced Responsive */
        .achievement-card,
        .service-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1rem, 3vw, 2rem);
            height: 100%;
            transition: all 0.3s ease;
            text-align: center;
            margin-bottom: 2rem;
        }

        .achievement-card:hover,
        .service-card:hover {
            transform: translateY(-8px);
            border-color: var(--primary-green);
            box-shadow: 0 20px 40px rgba(0, 212, 170, 0.1);
        }

        .service-card.featured {
            border-color: var(--primary-green);
            background: linear-gradient(135deg, var(--card-bg) 0%, rgba(0, 212, 170, 0.05) 100%);
        }

        .achievement-icon,
        .service-icon {
            width: clamp(50px, 8vw, 60px);
            height: clamp(50px, 8vw, 60px);
            background-color: var(--primary-green);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--dark-bg);
            font-size: clamp(1.2rem, 3vw, 1.5rem);
        }

        .service-card.featured .service-icon {
            background-color: var(--text-white);
        }

        .achievement-card h5,
        .service-card h5 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-white);
            font-size: clamp(0.9rem, 2.5vw, 1.1rem);
        }

        .achievement-card p,
        .service-card p {
            color: var(--text-gray);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            line-height: 1.6;
            margin: 0;
        }

        /* Services Section */
        .services-section {
            background-color: var(--section-bg);
        }

        /* Treatment Results - Enhanced Responsive */
        .treatment-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: 1.5rem;
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
            cursor: pointer;
            position: relative;
        }

        .treatment-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
        }

        .treatment-image-container {
            position: relative;
            height: clamp(150px, 25vw, 200px);
            margin-bottom: 1rem;
            border-radius: 10px;
            overflow: hidden;
        }

        .treatment-image {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            border-radius: 10px;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            position: relative;
            transition: all 0.3s ease;
        }

        .treatment-image.after {
            background: linear-gradient(135deg, var(--primary-green) 0%, #00b894 100%);
            opacity: 0;
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
        }

        .treatment-image.after.show {
            opacity: 1;
        }

        .treatment-toggle {
            position: absolute;
            top: 10px;
            right: 10px;
            background-color: var(--primary-green);
            color: var(--dark-bg);
            border: none;
            border-radius: 20px;
            padding: 0.3rem 0.8rem;
            font-size: clamp(0.6rem, 1.5vw, 0.7rem);
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .treatment-toggle:hover {
            background-color: #00b894;
        }

        .treatment-card h5 {
            font-weight: 600;
            margin-bottom: 0.8rem;
            color: var(--text-white);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .treatment-card p {
            color: var(--text-gray);
            font-size: clamp(0.75rem, 2vw, 0.8rem);
            line-height: 1.5;
            margin: 0;
        }

        /* Timeline - Enhanced Responsive */
        .timeline-section {
            background-color: var(--section-bg);
        }

        .timeline-column h3 {
            font-size: clamp(1.2rem, 3vw, 1.5rem);
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text-white);
        }

        .timeline-item {
            position: relative;
            padding-left: 2rem;
            margin-bottom: 2rem;
            border-left: 2px solid var(--primary-green);
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -6px;
            top: 0;
            width: 10px;
            height: 10px;
            background-color: var(--primary-green);
            border-radius: 50%;
        }

        .timeline-date {
            color: var(--primary-green);
            font-weight: 600;
            font-size: clamp(0.7rem, 2vw, 0.8rem);
            margin-bottom: 0.5rem;
        }

        .timeline-title {
            font-weight: 600;
            color: var(--text-white);
            margin-bottom: 0.5rem;
            font-size: clamp(0.85rem, 2.5vw, 0.95rem);
        }

        .timeline-desc {
            color: var(--text-gray);
            font-size: clamp(0.75rem, 2vw, 0.85rem);
            line-height: 1.5;
        }

        /* Testimonials - Enhanced Responsive */
        .testimonial-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .testimonial-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
        }

        .testimonial-rating {
            color: #ffd700;
            margin-bottom: 1rem;
            font-size: clamp(0.75rem, 2vw, 0.85rem);
        }

        .testimonial-text {
            color: var(--text-gray);
            margin-bottom: 1.5rem;
            font-style: italic;
            font-size: clamp(0.8rem, 2vw, 0.85rem);
            line-height: 1.6;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .author-avatar {
            width: 40px;
            height: 40px;
            background-color: var(--primary-green);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-bg);
            font-weight: 600;
            font-size: 0.8rem;
            flex-shrink: 0;
        }

        .author-info .name {
            font-weight: 600;
            color: var(--text-white);
            font-size: clamp(0.8rem, 2vw, 0.85rem);
        }

        .author-info .title {
            color: var(--text-gray);
            font-size: clamp(0.7rem, 1.8vw, 0.75rem);
        }

        /* Office Hours & Location - Enhanced Responsive */
        .office-section {
            background-color: var(--section-bg);
        }

        .office-hours {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            margin-bottom: 2rem;
        }

        .office-hours h3,
        .location-section h3 {
            font-size: clamp(1.1rem, 3vw, 1.3rem);
            font-weight: 700;
            margin-bottom: 2rem;
            color: var(--text-white);
        }

        .hours-row {
            display: flex;
            justify-content: space-between;
            margin-bottom: 1rem;
            padding: 0.5rem 0;
            border-bottom: 1px solid var(--border-color);
            flex-wrap: wrap;
            gap: 0.5rem;
        }

        .hours-row:last-child {
            border-bottom: none;
        }

        .day {
            font-weight: 500;
            color: var(--text-white);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .time {
            color: var(--text-gray);
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .location-map {
            background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
            border-radius: 15px;
            height: clamp(250px, 40vw, 350px);
            display: flex;
            align-items: center;
            justify-content: center;
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .location-map::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23333" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
            opacity: 0.1;
        }

        /* Contact Section - Enhanced Responsive */
        .contact-info-card {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: clamp(1.5rem, 3vw, 2rem);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            margin-bottom: 2rem;
        }

        .contact-info-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-green);
            transform: translate(0px, 0px);
    opacity: 1;
    transition-delay: 100ms;
        }

        .contact-icon {
            width: clamp(40px, 6vw, 50px);
            height: clamp(40px, 6vw, 50px);
            background-color: var(--primary-green);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: var(--dark-bg);
            font-size: clamp(1rem, 2.5vw, 1.2rem);
        }

        .contact-info-card h5 {
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--text-white);
            font-size: clamp(0.9rem, 2.5vw, 1rem);
        }

        .contact-info-card p {
            color: var(--text-gray);
            margin: 0;
            font-size: clamp(0.8rem, 2vw, 0.85rem);
        }

        /* Contact Form - Enhanced Responsive */
        .contact-form {
            background-color: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 15px;
            padding: clamp(2rem, 5vw, 3rem);
            margin-top: 3rem;
        }

        .contact-form h3 {
            text-align: center;
            margin-bottom: 2rem;
            color: var(--text-white);
            font-size: clamp(1.3rem, 3vw, 1.6rem);
            font-weight: 700;
        }

        .form-control {
            background-color: var(--section-bg);
            border: 1px solid var(--border-color);
            color: var(--text-white);
            border-radius: 8px;
            padding: 0.8rem 1rem;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
        }

        .form-control:focus {
            background-color: var(--section-bg);
            border-color: var(--primary-green);
            color: var(--text-white);
            box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
        }

        .form-control::placeholder {
            color: var(--text-light-gray);
        }

        .form-select {
            background-color: var(--section-bg);
            border: 1px solid var(--border-color);
            color: var(--text-white);
        }

        .form-select:focus {
            background-color: var(--section-bg);
            border-color: var(--primary-green);
            color: var(--text-white);
            box-shadow: 0 0 0 0.2rem rgba(0, 212, 170, 0.25);
        }

        .btn-submit {
            background-color: var(--primary-green);
            color: var(--dark-bg);
            font-weight: 600;
            padding: 1rem 3rem;
            border-radius: 8px;
            border: none;
            font-size: clamp(0.8rem, 2vw, 0.9rem);
            transition: all 0.3s ease;
        }

        .btn-submit:hover {
            background-color: #00b894;
            transform: translateY(-2px);
        }

        /* Footer - Enhanced Responsive */
        .footer {
            background-color: var(--section-bg);
            padding: 2rem 0;
            border-top: 1px solid var(--border-color);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 1rem;
        }

        .footer p {
            color: var(--text-gray);
            margin: 0;
            font-size: clamp(0.75rem, 2vw, 0.85rem);
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--text-gray);
            font-size: clamp(1rem, 2.5vw, 1.1rem);
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: var(--card-bg);
        }

        .social-links a:hover {
            color: var(--primary-green);
            background-color: var(--border-color);
        }

        /* Enhanced Responsive Breakpoints */
        @media (max-width: 1200px) {
            .container {
                padding: 0 2rem;
            }
        }

        @media (max-width: 992px) {
            .navbar-nav {
                gap: 1rem;
                margin: 1rem 0;
            }

            .navbar-buttons {
                flex-direction: column;
                width: 100%;
                gap: 0.5rem;
            }
            
            .navbar-buttons a {
                width: 100%;
                text-align: center;
            }

            .hero-buttons {
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
                gap: 1rem;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 120px 0 80px;
                text-align: center;
            }

            .hero-image-container {
                margin-top: 2rem;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }

            .btn-hero-primary,
            .btn-hero-secondary {
                width: 100%;
                max-width: 300px;
            }

            .rating-avatars {
                margin-right: 0.5rem;
            }

            .rating-avatar {
                width: 35px;
                height: 35px;
                margin-left: -8px;
            }

            .about-content {
                text-align: center;
                margin-top: 2rem;
            }

            .timeline-column {
                margin-bottom: 3rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .whatsapp-float {
                width: 50px;
                height: 50px;
                bottom: 20px;
                right: 20px;
                font-size: 1.3rem;
            }
        }

        @media (max-width: 576px) {
            .rating-avatar {
                margin-left: 0 !important;
            }
            .container {
                padding: 0 1rem;
            }

            .section {
                padding: 50px 0;
            }

            .navbar {
                padding: 0.8rem 0;
            }

            .navbar-brand {
                font-size: 1.1rem;
            }

            .navbar-brand::before {
                width: 30px;
                height: 30px;
            }

            .btn-appointment,
            .btn-contact {
                padding: 0.5rem 1rem;
                font-size: 0.75rem;
            }

            .hero-rating {
                justify-content: center;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .contact-form {
                padding: 1.5rem;
            }
        }

        /* Loading State - Prevent Flash */
        .hero-content > *,
        .hero-image-container {
            visibility: hidden;
        }

        .hero-content.loaded > *,
        .hero-image-container.loaded {
            visibility: visible;
        }

        /* Smooth Scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: var(--dark-bg);
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary-green);
            border-radius: 4px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: #00b894;
        }
        
        
        /* Fix unwanted horizontal scroll */
body, html {
    max-width: 100%;
    overflow-x: hidden !important;
}

section, .container, .row {
    max-width: 100% !important;
}

/* Prevent absolute/fixed elements from overflowing */
img, iframe {
    max-width: 100%;
    height: auto;
}

/* Map iframe fix */
.location-map iframe {
    width: 100% !important;
    height: 100% !important;
    display: block;
}


.row {
    margin-left: 0 !important;
    margin-right: 0 !important;
}


.achievement-card, .service-card, .testimonial-card, .treatment-card {
    width: 100%;
}