/* ============================================
   GLOBAL STYLES FOR healtouch
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Manrope:wght@400;500;600;700;800&family=Poppins:wght@400;500;600;700&display=swap');

:root {
    /* Brand Colors */
    --primary-green: #0B8A2F;
    --light-green: #7BCB13;
    --deep-blue: #0B57B7;
    --sky-blue: #1AA8FF;
    
    /* Backgrounds & Gradients */
    --white: #ffffff;
    --soft-gray: #f8fafc;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --bg-gradient: linear-gradient(135deg, #f0faf4 0%, #ffffff 100%);
    
    /* Typography */
    --text-dark: #0f172a;
    --text-light: #64748b;
    
    /* Shadows - Premium Soft */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 25px -5px rgba(11, 138, 47, 0.05), 0 10px 10px -5px rgba(11, 138, 47, 0.02);
    --shadow-xl: 0 25px 50px -12px rgba(11, 138, 47, 0.1);
    --shadow-glow: 0 0 20px rgba(11, 138, 47, 0.2);
    
    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease-in-out;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
}

.logo, .btn, .nav-menu a {
    font-family: 'Manrope', sans-serif;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    color: var(--deep-blue);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(11, 138, 47, 0.1);
    color: var(--primary-green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

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

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary, .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 60px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--light-green));
    color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(11, 138, 47, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(11, 138, 47, 0.4);
    background: linear-gradient(135deg, #0a7a29, var(--primary-green));
}

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

.btn-outline:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-small { padding: 10px 24px; font-size: 0.875rem; }
.btn-large { padding: 18px 48px; font-size: 1.125rem; }

/* ============================================
   HEADER — PREMIUM GLASSMORPHISM
   ============================================ */

/* Top accent bar */
.header-top-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green) 0%, var(--light-green) 50%, var(--deep-blue) 100%);
    background-size: 200% 100%;
    animation: shimmer-bar 4s linear infinite;
}

@keyframes shimmer-bar {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(11, 138, 47, 0.08);
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
}

.sticky-header.scrolled {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 4px 30px rgba(11, 138, 47, 0.08), 0 1px 0 rgba(226, 232, 240, 0.8);
    padding: 0;
}

/* Navbar layout */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    transition: padding 0.4s ease;
    gap: 2rem;
}

.sticky-header.scrolled .navbar {
    padding: 0.4rem 0;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    flex-shrink: 0;
    
    background: #ffffff;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    
    margin-top: -5px;
    margin-bottom: -45px; 
    
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1050;
    transition: all 0.4s ease;
}

.sticky-header.scrolled .logo-link {
    width: 90px;
    height: 90px;
    margin-bottom: -25px; /* Hangs down gracefully when header shrinks */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.logo-img {
    max-width: 78%;
    max-height: 78%;
    width: auto;
    height: auto;
    transform: none;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    width: 75px;
    height: 75px;
    margin-top: 0;
    margin-bottom: -5px; /* 75 - 0 - 5 = 70px flow height */
    box-shadow: 0 4px 12px rgba(11, 138, 47, 0.12);
    transform: translateY(0);
}

.logo-link:hover .logo-img {
    transform: scale(1.15); /* Slightly zooms the logo to fill the smaller circle better */
}

/* Nav menu */
.nav-menu {
    display: flex;
    gap: 0.25rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

/* Nav link base */
.nav-link {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0.5rem 0.85rem;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    border-radius: 10px;
    transition: color 0.25s ease, background 0.25s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: calc(100% - 1.7rem);
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
    border-radius: 2px;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: center;
}

.nav-link:hover {
    color: var(--primary-green);
    background: rgba(11, 138, 47, 0.06);
}

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

/* Active nav link */
.nav-link.active {
    color: var(--primary-green);
    background: rgba(11, 138, 47, 0.08);
}

.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
    background: linear-gradient(90deg, var(--primary-green), var(--light-green));
}

/* Chevron animation */
.nav-chevron {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-chevron,
.nav-dropdown.open .nav-chevron {
    transform: rotate(180deg);
}

/* ---- Dropdown ---- */
.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1), visibility 0.28s;
    z-index: 200;
    min-width: 280px;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-inner {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 20px 50px rgba(11, 138, 47, 0.12), 0 4px 12px rgba(0,0,0,0.08), 0 0 0 1px rgba(11,138,47,0.08);
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

/* Small arrow pointer */
.dropdown-inner::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 3px 0 0 0;
    border-left: 1px solid rgba(11, 138, 47, 0.08);
    border-top: 1px solid rgba(11, 138, 47, 0.08);
    rotate: 45deg;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1rem;
    border-radius: 14px;
    text-decoration: none;
    color: var(--text-dark);
    transition: background 0.2s ease, transform 0.2s ease;
}

.dropdown-item:hover {
    background: rgba(11, 138, 47, 0.07);
    transform: translateX(4px);
}

.dropdown-item.active {
    background: rgba(11, 138, 47, 0.1);
}

.dropdown-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(123, 203, 19, 0.15), rgba(11, 138, 47, 0.15));
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: background 0.2s ease;
}

.dropdown-item:hover .dropdown-icon {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
}

.dropdown-item.active .dropdown-icon {
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    color: white;
}

.dropdown-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.dropdown-text strong {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Poppins', sans-serif;
}

.dropdown-text small {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 400;
}

/* ---- Book CTA Button ---- */
.nav-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.6rem 1.4rem;
    background: linear-gradient(135deg, var(--primary-green) 0%, var(--light-green) 50%, var(--primary-green) 100%);
    background-size: 200% 100%;
    background-position: left center;
    color: white !important;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-position 0.4s ease;
    box-shadow: 0 4px 16px rgba(11, 138, 47, 0.3);
    white-space: nowrap;
}

.nav-book-btn:hover {
    background-position: right center;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 8px 24px rgba(11, 138, 47, 0.45);
    color: white !important;
}

/* ---- Hamburger ---- */
.mobile-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.5px;
    width: 44px;
    height: 44px;
    background: rgba(11, 138, 47, 0.07);
    border: 1.5px solid rgba(11, 138, 47, 0.15);
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    transition: background 0.3s ease, border-color 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu:hover {
    background: rgba(11, 138, 47, 0.12);
    border-color: rgba(11, 138, 47, 0.3);
}

.hamburger-bar {
    display: block;
    width: 22px;
    height: 2.5px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease, width 0.3s ease;
    transform-origin: center;
}

/* Active hamburger → X */
.mobile-menu.open .bar1 {
    transform: translateY(8px) rotate(45deg);
}
.mobile-menu.open .bar2 {
    opacity: 0;
    width: 0;
}
.mobile-menu.open .bar3 {
    transform: translateY(-8px) rotate(-45deg);
}

/* Nav backdrop (mobile overlay) */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(6, 25, 59, 0.45);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-backdrop.visible {
    display: block;
}

.nav-backdrop.active {
    opacity: 1;
}

/* ============================================
   HEADER — MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .mobile-menu { display: flex; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(340px, 85vw);
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: stretch;
        padding: 5.5rem 1.5rem 2rem;
        gap: 0.25rem;
        z-index: 999;
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        box-shadow: -10px 0 40px rgba(11, 138, 47, 0.1);
        overflow-y: auto;
        border-left: 1px solid rgba(11, 138, 47, 0.08);
    }

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

    /* Mobile nav links */
    .nav-link {
        padding: 0.9rem 1.25rem;
        border-radius: 14px;
        font-size: 1.05rem;
        justify-content: space-between;
    }

    .nav-link::after { display: none; }

    .nav-link.active {
        background: rgba(11, 138, 47, 0.1);
        color: var(--primary-green);
    }

    /* Mobile dropdown */
    .nav-dropdown-menu {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        pointer-events: all;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        display: block;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        max-height: 400px;
    }

    .dropdown-inner {
        box-shadow: none;
        border: 1px solid rgba(11, 138, 47, 0.1);
        margin-top: 0.35rem;
        padding: 0.5rem;
    }

    .dropdown-inner::before { display: none; }

    /* Mobile CTA */
    .nav-cta {
        margin-top: 1rem;
        padding-top: 1rem;
        border-top: 1px solid var(--gray-200);
    }

    .nav-book-btn {
        justify-content: center;
        width: 100%;
        padding: 0.85rem 1.5rem;
        font-size: 1rem;
    }
}

/* ============================================
   ICONS & BADGES
   ============================================ */
.feature-icon, .service-icon {
    width: 70px; height: 70px;
    background: linear-gradient(135deg, var(--light-green), var(--primary-green));
    border-radius: 20px; display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem; font-size: 2rem; color: white; box-shadow: var(--shadow-md);
}

/* ============================================
   CARDS & MODALS (PREMIUM)
   ============================================ */
.premium-card {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(11, 138, 47, 0.03) 0%, rgba(255,255,255,0) 100%);
    z-index: -1;
    opacity: 0;
    transition: var(--transition);
}

.premium-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(11, 138, 47, 0.2);
}

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

/* MODAL STYLES */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

.modal-content {
    background: var(--white);
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    border-radius: 32px;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95) translateY(20px);
    transition: var(--transition);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: grid;
    grid-template-columns: 30% 70%;
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

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

.modal-close:hover {
    background: #fee2e2;
    color: #ef4444;
}

.modal-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-body {
    padding: 3rem;
}

@media (max-width: 768px) {
    .modal-content { grid-template-columns: 1fr; max-height: 85vh; }
    .modal-image-wrapper { height: 200px; }
    .modal-body { padding: 2rem; }
}

/* ============================================
   FORMS (GLASSMORPHISM & MODERN)
   ============================================ */
.glass-form {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: var(--shadow-lg);
    border-radius: 24px;
    padding: 2.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}
.form-row .form-group {
    margin-bottom: 0;
}
@media (max-width: 768px) {
    .form-row {
        display: block;
    }
    .form-row .form-group {
        margin-bottom: 1.5rem;
    }
    .form-row .form-group:last-child {
        margin-bottom: 0;
    }
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: var(--transition-fast);
    color: var(--text-dark);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(11, 138, 47, 0.1);
}

/* ============================================
   FOOTER STYLES (PREMIUM DARK)
   ============================================ */
.premium-footer {
    background: #06193b;
    color: var(--white);
    padding: 100px 0 30px;
    position: relative;
    border-top: 5px solid var(--primary-green);
    overflow: hidden;
    font-family: 'Inter', sans-serif;
}

.premium-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: radial-gradient(circle at center 10%, rgba(11, 138, 47, 0.15) 0%, rgba(6, 25, 59, 0) 60%);
    z-index: 0;
}

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

.footer-brand-section {
    text-align: center;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main-logo {
    height: 200px;
    width: auto;
    margin-bottom: 1.5rem;
    background: rgba(255,255,255,0.95);
    padding: 20px 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    transition: var(--transition);
}

.footer-main-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(11, 138, 47, 0.4);
}

.footer-social-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.footer-social-modern a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: var(--transition);
}

.footer-social-modern a:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(11, 138, 47, 0.4);
    border-color: var(--primary-green);
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-links-modern h4, .footer-contact-modern h4 {
    color: var(--white);
    font-size: 1.25rem;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links-modern h4::after, .footer-contact-modern h4::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 2px;
}

.footer-links-modern ul {
    list-style: none;
    padding: 0;
}

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

.footer-links-modern a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-fast);
    display: inline-block;
}

.footer-links-modern a:hover {
    color: var(--light-green);
    transform: translateX(5px);
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item .icon-box {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(11, 138, 47, 0.15);
    color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.contact-item .label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-item .value {
    display: block;
    color: var(--white);
    font-weight: 500;
    font-size: 1.05rem;
}

.contact-item .value a {
    color: var(--white);
    text-decoration: none;
    transition: var(--transition-fast);
}

.contact-item .value a:hover {
    color: var(--light-green);
}

.footer-bottom-modern {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-300);
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 1.5rem;
}

.legal-links a {
    color: var(--gray-300);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: var(--white);
}

/* ============================================
   WHATSAPP FLOAT & STICKY BOOKING
   ============================================ */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25D366; width: 65px; height: 65px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.25rem; color: white;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transition: var(--transition); z-index: 99; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1) translateY(-5px); }

/* ============================================
   RESPONSIVE DESIGN — FOOTER BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
    /* Tablet: two-column footer grid */
    .footer-grid-modern { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    section { padding: 60px 0; }
    .section-title { font-size: 2rem; }

    /* Footer grid → single column */
    .footer-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    /* Center the underline decoration on headings */
    .footer-links-modern h4::after,
    .footer-contact-modern h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    /* Center footer brand text & shrink logo */
    .footer-main-logo {
        height: 120px;
        padding: 12px 24px;
    }

    /* Footer brand section spacing */
    .footer-brand-section {
        margin-bottom: 2.5rem;
        padding-bottom: 2rem;
    }

    /* Contact card full-width, left-aligned items */
    .contact-card {
        padding: 1.5rem;
        text-align: left;
    }

    /* Footer bottom: stack copyright + legal links */
    .footer-bottom-modern {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .whatsapp-float { bottom: 20px; right: 20px; width: 55px; height: 55px; font-size: 1.8rem; }
}

@media (max-width: 480px) {
    /* Extra small: tighten footer padding */
    .premium-footer {
        padding: 60px 0 24px;
    }

    .footer-main-logo {
        height: 90px;
        padding: 10px 18px;
    }

    .footer-grid-modern {
        gap: 1.5rem;
    }

    .contact-card {
        padding: 1.25rem;
    }

    .footer-bottom-modern {
        font-size: 0.8rem;
    }
}