@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 1001;
    transition: width 0.1s ease;
}

:root {
    --primary: #2A7FFF;
    /* Primary Blue */
    --primary-hover: #1E4DB7;
    /* Deep Blue */
    --primary-gradient: linear-gradient(135deg, #2A7FFF 0%, #1E4DB7 100%);
    --primary-light: #EAF3FF;
    /* Soft Blue Tint */

    --secondary: #22C1A6;
    /* Teal Green */
    --secondary-light: #E8FBF7;
    /* Light Mint */

    --accent-gold: #D4AF37;
    /* Soft Gold */
    --accent-coral: #FF6B6B;
    /* Coral Accent */

    --white: #FFFFFF;
    --bg-light: #F7F9FC;
    /* Light Gray */
    --text-muted: #6B7280;
    /* Medium Gray */
    --dark: #1F2937;
    /* Dark Gray */

    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;

    --glass: rgba(255, 255, 255, 0.95);
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 25px -5px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 40px -10px rgba(0, 0, 0, 0.12);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--bg-light);
    overflow-x: hidden;
    width: 100%;
}

body.nav-open {
    overflow: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    color: var(--dark);
    font-weight: 700;
    letter-spacing: -0.5px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.responsive-flex {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .responsive-flex {
        flex-direction: column;
    }
    .responsive-flex > div {
        width: 100% !important;
        min-width: 100% !important;
    }
}

.section-padding {
    padding: 80px 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 50px 0;
    }
}

/* Typography Helpers */
.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
}

/* Typography Scaling for Mobile */
@media (max-width: 768px) {
    .section-title { font-size: 1.8rem !important; }
    .hero-title { font-size: 2.5rem !important; }
    .about-hero-title { font-size: 2.2rem !important; }
    .cta-card h2 { font-size: 1.8rem !important; }
    .section-subtitle { font-size: 0.75rem !important; }
}

/* Contact Form Styles */
.appointment-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 600px) {
    .appointment-form {
        grid-template-columns: 1fr;
    }
    .appointment-form > div {
        grid-column: span 1 !important;
    }
    .contact-form-card {
        padding: 25px !important;
    }
}


.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(79, 162, 200, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(30deg);
    transition: 0.6s;
}

.btn-primary:hover::after {
    left: 120%;
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(79, 162, 200, 0.35);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary-gradient);
    color: var(--white);
    border-color: transparent;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 25px 0;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    padding: 10px 22px !important;
    font-size: 0.85rem !important;
    white-space: nowrap;
}

@media (max-width: 500px) {
    .nav-btn {
        display: none;
    }
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

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

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 250px;
    background: var(--glass);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    padding: 15px 0;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    padding: 10px 25px;
    display: block;
    font-size: 0.9rem;
    color: var(--dark);
}

.dropdown-menu li a:hover {
    background: var(--primary-light);
    color: var(--primary);
    padding-left: 30px;
}

/* Mobile Nav Styles */
@media (max-width: 968px) {
    header {
        background: var(--white);
        padding: 15px 0;
        box-shadow: var(--shadow-sm);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 40px;
        transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 999;
        display: flex;
        gap: 20px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation for menu items */
    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.5s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.6s; }

    .nav-links a {
        font-size: 1.5rem;
        font-family: 'Outfit', sans-serif;
        font-weight: 600;
        color: var(--dark);
        display: block;
        padding: 15px 0;
    }

    .mobile-toggle {
        display: block !important;
        position: relative;
        z-index: 1000;
        width: 40px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        background: var(--primary-light);
        color: var(--primary);
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        padding: 0;
        width: 100%;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        border: none;
        margin-top: 10px;
        border-radius: 10px;
    }

    .dropdown.active .dropdown-menu {
        height: auto;
        padding: 10px 0;
    }
}

/* Hero Section Overhaul */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #EAF3FF 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
    padding-top: 100px;
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 50px;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    margin: 20px 0;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.hero-image {
    flex: 1;
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-img-wrapper {
    position: relative;
    width: 80%;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* About Page True Hero */
.about-hero {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    padding-bottom: 50px;
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    box-shadow: var(--shadow-sm);
    background: var(--bg-light);
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    z-index: 0;
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.95) 45%, rgba(255,255,255,0.2) 80%, rgba(255,255,255,0) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 650px;
    padding: 30px 0;
}

.hero-badge {
    display: inline-block;
    padding: 8px 22px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 25px;
    border: 1px solid rgba(42, 127, 255, 0.2);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-hero-title {
    font-size: 4.5rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
}

.about-hero .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    font-weight: 500;
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 12px 35px;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.about-hero .breadcrumb a {
    color: var(--dark);
    transition: var(--transition);
}

.about-hero .breadcrumb a:hover {
    color: var(--primary);
}

.about-hero .breadcrumb span {
    color: var(--text-muted);
}

@media (max-width: 968px) {
    .about-hero {
        min-height: auto;
        padding-top: 150px;
        padding-bottom: 80px;
        border-bottom-left-radius: 40px;
        border-bottom-right-radius: 40px;
    }
    .about-hero-bg {
        background-position: center;
    }
    .about-hero-overlay {
        background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.85) 100%);
    }
    .about-hero-content {
        text-align: center;
        margin: 0 auto;
    }
    .about-hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .about-hero-title { font-size: 2.8rem; }
    .about-hero-subtitle { font-size: 1.1rem; margin-bottom: 30px; }
    .about-hero .breadcrumb { padding: 10px 25px; font-size: 0.9rem; }
}

/* Glass Card Enhanced */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 25px;
    padding: 35px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.glass-card:hover::before {
    left: 100%;
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px -15px rgba(27, 93, 143, 0.2);
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Accents for Icons */
.glass-card i,
.badge-item i,
.footer i {
    color: var(--secondary) !important;
}

.section-subtitle {
    color: var(--primary) !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

.glass-card:hover {
    border-color: var(--primary);
    background: var(--white);
}

.badge-item i {
    color: var(--accent-gold) !important;
}

/* Trust Grid Redesign */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--primary-light);
    transition: var(--transition);
}

.trust-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.trust-card .icon-box {
    width: 70px;
    height: 70px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    transition: var(--transition);
}

.trust-card:hover .icon-box {
    background: var(--primary);
    color: var(--white);
    transform: rotate(10deg);
}

.trust-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.trust-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Before/After Slider Enhanced */
.comparison-container {
    position: relative;
    width: 100%;
    height: 450px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--dark);
}

@media (max-width: 768px) {
    .comparison-container {
        height: 300px;
    }
}

.comparison-container .image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.comparison-container .before-image {
    z-index: 1;
    filter: grayscale(0.5);
}

.comparison-container .after-image {
    z-index: 2;
    width: 50%;
    border-right: 3px solid var(--white);
}

.comparison-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    opacity: 0;
    cursor: ew-resize;
}

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

.gallery-transform-item {
    display: flex;
    gap: 10px;
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    box-shadow: var(--shadow-sm);
}

@media (max-width: 600px) {
    .gallery-transform-item {
        height: 250px;
        flex-direction: column;
    }
    .gallery-transform-item > div {
        flex: 1 !important;
        min-width: 100% !important;
    }
}

.slider-handle {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background: var(--white);
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
}

.slider-handle::after {
    content: '\f337';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.faq-item {
    background: white;
    margin-bottom: 15px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}

.faq-question {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
}

.faq-answer {
    padding: 0 30px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    color: var(--text-muted);
}

.faq-item.active .faq-answer {
    padding-bottom: 30px;
    max-height: 200px;
}

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

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* CTA Card */
.cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
    color: white;
    padding: 80px 40px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.cta-card h2 {
    font-size: 3.5rem;
    color: white !important;
    margin-bottom: 20px;
}

.cta-card p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-white {
    background-color: var(--white);
    color: var(--primary);
    padding: 18px 40px;
    font-size: 1.1rem;
    border: none;
}

.cta-card .btn-white:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    background-color: var(--primary-light);
}

/* Floating Appointment Button */
.appointment-fab {
    position: fixed;
    bottom: 110px;
    right: 30px;
    background: var(--primary-gradient);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
    font-size: 24px;
    animation: pulse 2s infinite;
}

.appointment-fab span {
    display: none;
}

.appointment-fab:hover {
    transform: scale(1.05) translateY(-5px);
    color: white;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(42, 127, 255, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(42, 127, 255, 0); }
    100% { box-shadow: 0 0 0 0 rgba(42, 127, 255, 0); }
}

@media (max-width: 768px) {
    .appointment-fab { bottom: 100px; }
}

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-5px);
}

/* Responsive */
@media (max-width: 968px) {
    .container {
        padding: 0 30px;
    }

    .hero {
        padding-top: 150px;
        height: auto;
        padding-bottom: 80px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-title {
        font-size: 3rem;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        font-size: 1.1rem;
    }
    
    .hero-image {
        display: block;
        width: 100%;
        margin-top: 30px;
    }

    .hero-image .glass-card {
        display: none !important; /* Hide floating cards on mobile to prevent clutter */
    }

    .hero-img-wrapper {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero-btns {
        justify-content: center;
    }
}

/* Footer Styles */
/* Footer Styles - Premium Tinted Redesign */
.footer {
    background: #eef6ff; /* Slightly Deeper Ice Blue for better contrast */
    color: var(--dark);
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 127, 255, 0.1);
}

/* Stunning Top Wave Divider - Enhanced Visibility */
.footer-divider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    filter: drop-shadow(0 -5px 10px rgba(0,0,0,0.03)); /* Subtle shadow to make it pop */
    z-index: 5;
}

.footer-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 70px; /* Bit taller to be more visible */
}

.footer-divider .shape-fill {
    fill: #ffffff; /* Using pure white for max contrast against the blue footer */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 60px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.footer-col .logo-wrapper {
    margin-bottom: 25px;
    display: inline-block;
}

.footer-col .logo-wrapper img {
    height: 65px;
    transition: var(--transition);
}

.footer-col .logo-wrapper:hover img {
    transform: scale(1.05);
}

.footer-about {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 35px;
    line-height: 1.8;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.social-btn {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    transition: var(--transition);
    border: 1px solid rgba(42, 127, 255, 0.1);
}

.social-btn:hover {
    background: var(--primary-gradient);
    color: var(--white) !important; /* Overriding global important rule */
    transform: translateY(-8px) rotate(5deg);
    box-shadow: 0 15px 30px rgba(42, 127, 255, 0.2);
    border-color: transparent;
}

.social-btn:hover i {
    color: var(--white) !important;
}

.footer-col h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 35px;
    position: relative;
    font-weight: 700;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 40px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 10px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-links a {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.footer-links a i {
    font-size: 0.75rem;
    color: var(--primary);
    transition: var(--transition);
    opacity: 0.5;
}

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

.footer-links a:hover i {
    opacity: 1;
    transform: scale(1.2);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 45px;
    height: 45px;
    background: var(--secondary-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: var(--transition);
    border: 1px solid rgba(34, 193, 166, 0.1);
}

.contact-item:hover .contact-icon {
    background: var(--secondary);
    color: white !important; /* Overriding global important rule */
    transform: scale(1.1);
}

.contact-item:hover .contact-icon i {
    color: white !important;
}

.contact-text {
    flex: 1;
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-text p, .contact-text a {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.5;
    margin: 0;
    transition: var(--transition);
}

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

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(42, 127, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 1rem;
}

.footer-bottom strong {
    color: var(--primary);
}

.footer-bottom-links {
    display: flex;
    gap: 30px;
}

.footer-bottom-links a {
    color: var(--text-muted);
}

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

/* Treatments Section Design */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.treatment-card {
    text-align: center;
    transition: var(--transition);
}

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

.treatment-img {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    object-fit: cover;
    margin-bottom: 20px;
    box-shadow: var(--shadow-md);
}

.treatment-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.treatment-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.4;
    min-height: 2.8em;
}

.btn-enquire {
    background: var(--primary-gradient); /* Theme color */
    color: white;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(42, 127, 255, 0.2);
}

.btn-enquire:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(42, 127, 255, 0.35);
    color: white;
}

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

@media (max-width: 768px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .treatment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

/* Soft Decorative Blobs */
.footer-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(42, 127, 255, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.blob-1 { top: -200px; right: -100px; }
.blob-2 { bottom: -200px; left: -100px; }

/* Responsive adjustments */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
        padding-bottom: 30px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        text-align: left;
    }
    .footer-col:first-child, 
    .footer-col:last-child {
        grid-column: span 2;
        text-align: center;
    }
    .footer-about {
        margin-bottom: 25px;
        font-size: 0.95rem;
    }
    .footer-col h3 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    .footer-col h3::after {
        left: 0;
        transform: none;
    }
    .footer-col:first-child h3::after,
    .footer-col:last-child h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-socials {
        justify-content: center;
    }
    .footer-links a {
        justify-content: flex-start;
        font-size: 0.9rem;
    }
    .contact-item {
        flex-direction: row; 
        text-align: left;
        gap: 15px;
        justify-content: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
        font-size: 0.9rem;
    }
    .footer-bottom-links {
        gap: 15px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        gap: 20px;
    }
    .footer-about {
        display: none; 
    }
}

/* Facilities Section */
.facilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.facility-card {
    background: var(--white);
    padding: 30px;
    border-radius: 25px;
    border: 1px solid rgba(42, 127, 255, 0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
}

.facility-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    border-radius: 25px;
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.facility-card:hover h3, 
.facility-card:hover p, 
.facility-card:hover .hindi-text {
    color: white !important;
}

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

.facility-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: var(--transition);
}

.facility-card:hover .facility-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.facility-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--dark);
    transition: var(--transition);
    line-height: 1.3;
}

.facility-card .hindi-text {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: block;
    transition: var(--transition);
}

.facility-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
    transition: var(--transition);
}

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

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

@media (max-width: 576px) {
    .facilities-grid {
        grid-template-columns: 1fr;
    }
    .facility-card {
        padding: 25px;
    }
}