/* ===============================
   BAKARI HEALTH - MAIN STYLES 
   Author: Neo Monyebodi
   Email: neo1monyebodi@gmail.com
   ============================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --primary-navy: #0b2545;
    --primary-blue: #134074;
    --accent-blue: #8da9c4;
    --light-bg: #f4f7fa;
    --accent-bg-tint: #eef3fc;
    --text-dark: #1d2a44;
    --text-muted: #6c757d;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Inter', sans-serif;
    --gold: #b8860b;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 15px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--primary-navy);
    color: var(--white);
    border-color: var(--primary-navy);
}

.btn-primary:hover {
    background-color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-large {
    padding: 16px 36px;
    font-size: 16px;
}

.btn-gold {
    background-color: var(--gold);
    color: #fff;
    border-color: var(--gold);
}

.btn-gold:hover {
    background-color: #a0750a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

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

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

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 90px;
    position: relative;
}

/* ========================================
   LOGO STYLES - WITH DIVIDER LINE (UPDATED)
   ======================================== */

.logo a {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo-img {
    height: 90px;  /* INCREASED from 70px */
    width: auto;
}

.logo-divider {
    width: 2px;
    height: 65px;  /* INCREASED from 55px */
    background: linear-gradient(to bottom, transparent, #b8860b, transparent);
    opacity: 0.6;
    flex-shrink: 0;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-text {
    font-family: var(--font-serif);
    font-size: 22px;  /* DECREASED from 28px */
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-navy);
}

.logo-health {
    color: #b8860b;
    font-weight: 700;
}

.logo-tagline {
    font-size: 10px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    margin-top: 2px;
    text-transform: uppercase;
}

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

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-dark);
    transition: color 0.3s ease;
    text-transform: uppercase;
}

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

.nav-cta {
    padding: 10px 22px;
    font-size: 13px;
    letter-spacing: 0.5px;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-navy);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ==========================================
   HEADER / NAVBAR - FIXED FOR TABLETS (UPDATED)
   ========================================== */

/* Large Tablets / Nest Hub (around 1024px - 1100px) */
@media (max-width: 1100px) {
    .navbar {
        height: auto;
        padding: 12px 0;
        flex-wrap: wrap;
        gap: 8px;
    }

    .logo a {
        gap: 10px;
    }

    .logo-img {
        height: 60px;  /* INCREASED from 50px */
    }

    .logo-divider {
        height: 45px;  /* INCREASED from 35px */
    }

    .logo-text {
        font-size: 18px;  /* DECREASED from 20px */
    }

    .logo-tagline {
        font-size: 8px;
    }

    .nav-links {
        gap: 16px;
        flex-wrap: wrap;
    }

    .nav-links a {
        font-size: 11px;
        letter-spacing: 0.5px;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 11px;
    }
}

/* Tablets (768px - 1024px) */
@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 12px 0;
    }

    .logo-img {
        height: 55px;  /* INCREASED from 45px */
    }

    .logo-divider {
        height: 40px;  /* INCREASED from 32px */
    }

    .logo-text {
        font-size: 16px;  /* DECREASED from 18px */
    }

    .logo-tagline {
        font-size: 7px;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 20px 24px;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        border-top: 1px solid var(--border-color);
        gap: 12px;
        z-index: 1000;
    }

    .nav-links.active a {
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        color: var(--primary-navy);
        padding: 8px 0;
        border-bottom: 1px solid var(--light-bg);
        width: 100%;
        display: block;
        text-transform: uppercase;
    }

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

/* Small Tablets (600px - 768px) */
@media (max-width: 768px) {
    .logo-img {
        height: 50px;  /* INCREASED from 40px */
    }

    .logo-divider {
        height: 35px;  /* INCREASED from 28px */
    }

    .logo-text {
        font-size: 14px;  /* DECREASED from 16px */
    }

    .logo-tagline {
        font-size: 6.5px;
    }

    .navbar {
        height: auto;
        padding: 10px 0;
    }
}

/* Mobile (480px and below) */
@media (max-width: 480px) {
    .logo-img {
        height: 42px;  /* INCREASED from 35px */
    }

    .logo-divider {
        height: 28px;  /* INCREASED from 24px */
    }

    .logo-text {
        font-size: 13px;  /* DECREASED from 14px */
    }

    .logo-tagline {
        font-size: 6px;
    }

    .navbar {
        height: auto;
        padding: 8px 0;
    }
}

/* ==========================================
   HERO SECTION - FIXED FOR MOBILE
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    background: url('../images/hero-relax.png') no-repeat center center/cover;
    background-size: cover;
    background-attachment: scroll;
    padding-top: 60px;
    padding-bottom: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Add a pseudo-element for better mobile control */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-relax.png') no-repeat center center/cover;
    background-size: cover;
    z-index: 0;
    opacity: 0.15;
}

.hero-overlay {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 40px;
    padding: 40px 0 30px 0;
    width: 100%;
    position: relative;
    z-index: 2;
    flex: 1;
}

.hero-text {
    position: relative;
    z-index: 3;
    padding: 20px 0;
}

.hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    line-height: 1.15;
    color: var(--primary-navy);
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-title .highlight-blue {
    color: var(--primary-blue);
}

.hero-title .italic-revive {
    font-style: italic;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-buttons {
    margin-bottom: 36px;
}

.hero-buttons .btn {
    width: auto;
    display: inline-flex;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.trust-item i {
    color: var(--primary-navy);
}

.trust-dot {
    color: var(--text-muted);
}

.hero-image-container {
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hero Bottom Trust Bar - Stays at bottom */
.hero-bottom-bar {
    background-color: var(--accent-bg-tint);
    border-top: 1px solid var(--border-color);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    margin-top: auto;
    width: 100%;
}

.hero-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hero-bar-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.bar-icon {
    font-size: 24px;
    color: var(--primary-blue);
    margin-top: 2px;
}

.bar-text h4 {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-navy);
    margin-bottom: 4px;
}

.bar-text p {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.4;
}

/* ==========================================
   SERVICES PREVIEW SECTION
   ========================================== */
.services-preview {
    padding: 80px 0;
    background: var(--white);
}

.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.section-title {
    font-family: var(--font-serif);
    font-size: 36px;
    color: var(--primary-navy);
    font-weight: 700;
}

.section-title span {
    font-style: italic;
    font-weight: 400;
}

.section-header-right {
    text-align: right;
}

.section-header-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
    text-transform: capitalize;
}

.view-all-link {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.service-image-box {
    width: 100%;
    height: 160px;
    background-color: #f0f4f8;
    border-radius: 6px;
    margin-bottom: 15px;
    overflow: hidden;
}

.service-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-name {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 8px;
}

.service-desc {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learn-more-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.learn-more-link:hover {
    color: var(--primary-blue);
}

/* ==========================================
   WHY CHOOSE US
   ========================================== */
.why-choose-us {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-image-wrapper {
    width: 100%;
    height: 480px;
    border-radius: 8px;
    overflow: hidden;
}

.why-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-content-wrapper {
    width: 100%;
}

.why-content-wrapper .section-title {
    margin-bottom: 30px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.why-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.why-check {
    width: 24px;
    height: 24px;
    background-color: var(--accent-bg-tint);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-list h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 2px;
}

.why-list p {
    font-size: 13px;
    color: var(--text-muted);
}

.why-quote-card {
    background-color: var(--white);
    border-left: 4px solid var(--primary-blue);
    padding: 20px 24px;
    border-radius: 0 8px 8px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.quote-icon {
    color: var(--accent-blue);
    font-size: 20px;
    margin-bottom: 8px;
}

.why-quote-card p {
    font-family: var(--font-serif);
    font-size: 16px;
    font-style: italic;
    color: var(--primary-navy);
    margin-bottom: 12px;
}

.quote-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.quote-brand img {
    height: 16px;
    width: auto;
}

/* ==========================================
   CTA BANNER SECTION
   ========================================== */
.cta-banner {
    background: linear-gradient(135deg, #eef3fc 0%, #d8e6fd 100%);
    padding: 70px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-banner-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-title {
    font-family: var(--font-serif);
    font-size: 38px;
    color: var(--primary-navy);
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-desc {
    font-size: 15px;
    color: var(--text-muted);
}

.cta-banner-action {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.cta-phone {
    font-size: 15px;
    font-weight: 700;
    color: var(--primary-navy);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cta-phone i {
    color: var(--primary-blue);
}

/* ==========================================
   BOTTOM TRUST FEATURES BAR
   ========================================== */
.bottom-features-bar {
    background-color: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-bar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-bar-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 45px;
    height: 45px;
    background-color: var(--accent-bg-tint);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-bar-item h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--primary-navy);
}

.feature-bar-item p {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background-color: #071628;
    color: var(--white);
    padding: 70px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo-img {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: #a0aec0;
}

.footer-desc {
    font-size: 13px;
    color: #a0aec0;
    line-height: 1.6;
    margin: 20px 0;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.footer-social a:hover {
    background-color: var(--primary-blue);
}

.footer-links h4,
.footer-contact h4,
.footer-hours h4 {
    font-family: var(--font-serif);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 0.5px;
}

.footer-links ul,
.footer-contact ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a,
.footer-contact a {
    font-size: 13px;
    color: #a0aec0;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-contact li,
.footer-hours li {
    font-size: 13px;
    color: #a0aec0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact li i {
    color: var(--accent-blue);
    width: 16px;
}

.footer-hours span {
    color: var(--white);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #a0aec0;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: #a0aec0;
    transition: color 0.3s ease;
}

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

/* ========================================
   HIGHLIGHT - DARK BLUE
   ======================================== */
.highlight-blue {
    color: #1a2a6a;
    font-weight: 600;
}

/* ========================================
   DRIP GRID LAYOUT - 2 PER ROW (FIXED)
   ======================================== */
.drips-hero {
    padding: 140px 0 40px;
    text-align: center;
    background: #faf8f6;
}

.drips-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 2px;
}

.drips-hero h1 span {
    color: #b8860b;
}

.drips-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.drips-grid-section {
    padding: 20px 0 80px;
    background: #faf8f6;
}

.drips-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.drip-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
    max-width: 100%;
}

.drip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.drip-image {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.drip-image.white-bg {
    background: #ffffff;
    padding: 15px;
}

.drip-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.4s ease;
}

.drip-card:hover .drip-product-image {
    transform: scale(1.03);
}

.drip-name-wrapper {
    padding: 16px 20px 8px 20px;
    text-align: center;
    flex-shrink: 0;
}

.drip-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1.2;
}

.drip-description {
    width: 100%;
    height: auto;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.drip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px 18px 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-top: auto;
    flex-shrink: 0;
    flex-wrap: wrap;
    gap: 8px;
}

/* ========================================
   FIXED: DRIP PRICE - NOW VISIBLE
   ======================================== */
.drip-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #1a1a2e;
}

.drip-price span {
    font-size: 0.75rem;
    font-weight: 400;
    color: #888;
}

.btn-drip-book {
    padding: 6px 18px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.75rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    text-decoration: none;
    display: inline-block;
    white-space: nowrap;
}

.btn-drip-book:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* ========================================
   PREMIUM ADD-ONS & GROUP PACKAGES
   ======================================== */
.addons-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.addons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.addons-column .section-tag {
    margin-bottom: 8px;
}

.addons-column .section-title {
    margin-bottom: 12px;
}

.addons-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.addons-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.addon-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
}

.addon-item:last-child {
    border-bottom: none;
}

.addon-info {
    display: flex;
    flex-direction: column;
}

.addon-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--primary-navy);
}

.addon-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.addon-price {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-blue);
    white-space: nowrap;
    margin-left: 16px;
}

/* Packages Column */
.packages-column {
    background: var(--white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-color);
}

.packages-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 24px;
}

.package-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
}

.package-item:last-child {
    border-bottom: none;
}

.package-info {
    display: flex;
    flex-direction: column;
}

.package-name {
    font-weight: 700;
    font-size: 16px;
    color: var(--primary-navy);
}

.package-desc {
    font-size: 13px;
    color: var(--text-muted);
}

.package-discount {
    font-weight: 700;
    font-size: 18px;
    color: var(--gold);
    white-space: nowrap;
    margin-left: 16px;
}

.packages-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: var(--accent-bg-tint);
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.packages-note i {
    color: var(--primary-blue);
    font-size: 20px;
    margin-top: 2px;
}

.packages-note p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.packages-column .btn {
    width: 100%;
    justify-content: center;
}

/* ========================================
   BOOKING PAGE STYLES
   ======================================== */
.booking-hero {
    padding: 140px 0 40px;
    text-align: center;
    background: #faf8f6;
}

.booking-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
}

.booking-hero h1 span {
    color: #b8860b;
}

.booking-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.booking-section {
    padding: 20px 0 80px;
    background: #faf8f6;
}

.booking-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
    padding: 48px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.booking-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.booking-wrapper .subtitle {
    color: #888;
    margin-bottom: 32px;
    font-size: 0.95rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #faf8f6;
    color: #1a1a2e;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.1);
    background: #fff;
}

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

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

.selected-service {
    background: rgba(184, 134, 11, 0.06);
    border: 2px solid rgba(184, 134, 11, 0.15);
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.selected-service .service-label {
    font-size: 0.85rem;
    color: #888;
}

.selected-service .service-name-display {
    font-weight: 700;
    font-size: 1.1rem;
    color: #1a1a2e;
}

.selected-service .service-price-display {
    font-weight: 700;
    color: #b8860b;
    font-size: 1.2rem;
}

.deposit-section {
    background: #f8f6f4;
    border-radius: 8px;
    padding: 20px 24px;
    margin: 24px 0;
    border: 1px solid #eee;
}

.deposit-section h4 {
    font-size: 1rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.deposit-section .deposit-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #b8860b;
}

.deposit-section .deposit-note {
    font-size: 0.85rem;
    color: #888;
    margin-top: 4px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-success {
    display: none;
    text-align: center;
    padding: 40px 20px;
}

.booking-success.show {
    display: block;
    animation: fadeIn 0.6s ease;
}

.booking-success .success-icon {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 16px;
}

.booking-success h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.booking-success p {
    color: #666;
    max-width: 400px;
    margin: 0 auto 24px;
}

.booking-success .payment-info {
    background: #f8f6f4;
    border-radius: 8px;
    padding: 16px 20px;
    margin: 16px auto;
    max-width: 400px;
    text-align: left;
}

.booking-success .payment-info strong {
    color: #1a1a2e;
}

.btn-back-home {
    padding: 12px 32px;
    background: #1a1a2e;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background: #b8860b;
    transform: translateY(-2px);
}

/* ========================================
   ABOUT PAGE STYLES (UPDATED WITH NAVY BLUE AND IMAGE BG)
   ======================================== */
.about-hero {
    padding: 140px 0 60px;
    text-align: center;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.85) 0%, rgba(19, 64, 116, 0.85) 100%), url('../images/aboutHero.png ') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: overlay;
}

.about-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.about-hero h1 span {
    color: #0b2545;
}

.about-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-section {
    padding: 60px 0;
}

.about-section:nth-child(even) {
    background: #faf8f6;
}

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

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.about-content h2 span {
    color: #0b2545;
}

.about-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-content .highlight-text {
    color: #0b2545; 
    font-weight: 600;
}

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.about-image .placeholder {
    width: 100%;
    height: 350px;
    background: linear-gradient(145deg, #f5f0eb 0%, #e8e0d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #888;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
    margin-top: 32px;
}

.value-card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(11, 37, 69, 0.2);
}

.value-card .value-icon {
    font-size: 2.4rem;
    color: #0b2545;
    margin-bottom: 12px;
}

.value-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   OUR TEAM - LEAD PRACTITIONER LAYOUT (UPDATED)
   ======================================== */
.lead-practitioner-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.lead-practitioner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    padding: 40px;
    max-width: 500px;
    width: 100%;
    gap: 24px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lead-practitioner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
}

.lead-image-box {
    flex-shrink: 0;
    width: 280px;
    height: 280px;
    border-radius: 12px;  /* Soft corners */
    overflow: hidden;
    border: 4px solid #0b2545;
    position: relative;
    background: #eef3fc;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(11, 37, 69, 0.15);
}

.lead-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Fallback icon when image loads with error */
.lead-image-box.image-fallback .lead-avatar-fallback {
    display: flex !important;
}
.lead-image-box .lead-avatar-fallback {
    display: none;
    font-size: 5rem;
    color: #0b2545;
}

.lead-info-box {
    flex: 1;
    text-align: center;
    width: 100%;
}

.lead-info-box h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.lead-role {
    font-size: 1rem;
    color: #0b2545;
    font-weight: 600;
    margin-bottom: 12px;
}

.lead-info-box p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ========================================
   CTA About Section - Updated to match style
   ======================================== */
.cta-about {
    background: #0b2545;
    color: #ffffff;
    text-align: center;
    padding: 60px 0;
}

.cta-about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-about h2 span {
    color: #8da9c4;
}

.cta-about p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
}

/* ========================================
   PRIVACY & TERMS PAGES
   ======================================== */
.legal-hero {
    padding: 140px 0 40px;
    background: #faf8f6;
    text-align: center;
}

.legal-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    color: #1a1a2e;
}

.legal-hero h1 span {
    color: #b8860b;
}

.legal-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.legal-content {
    padding: 40px 0 80px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content .last-updated {
    color: #888;
    font-size: 0.85rem;
    margin-bottom: 32px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}

.legal-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #1a1a2e;
    margin-top: 40px;
    margin-bottom: 12px;
}

.legal-content h2:first-of-type {
    margin-top: 0;
}

.legal-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    padding-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.legal-content .highlight {
    color: #b8860b;
    font-weight: 600;
}

/* ========================================
   FAQ PAGE STYLES
   ======================================== */
.faq-hero {
    padding: 140px 0 40px;
    text-align: center;
    background: #faf8f6;
}

.faq-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.faq-hero h1 span {
    color: #b8860b;
}

.faq-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.faq-section {
    padding: 40px 0 80px;
    background: #ffffff;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background: #faf8f6;
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border-color: rgba(184, 134, 11, 0.15);
}

.faq-item .faq-question {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 8px;
}

.faq-item .faq-question i {
    color: #b8860b;
    font-size: 1.2rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.faq-item .faq-question h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a2e;
    font-weight: 700;
    line-height: 1.4;
}

.faq-item .faq-answer {
    padding-left: 36px;
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.faq-item .faq-answer strong {
    color: #1a1a2e;
}

/* FAQ CTA */
.faq-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.faq-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.faq-cta h2 span {
    color: #b8860b;
}

.faq-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
}

.faq-cta .btn-primary {
    background: #b8860b;
    border-color: #b8860b;
}

.faq-cta .btn-primary:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

/* ========================================
   HOW IT WORKS PAGE STYLES
   ======================================== */
.hiw-hero {
    padding: 140px 0 40px;
    text-align: center;
    background: #faf8f6;
}

.hiw-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #1a1a2e;
}

.hiw-hero h1 span {
    color: #b8860b;
}

.hiw-hero p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 8px auto 0;
}

.hiw-intro {
    padding: 40px 0 20px;
    text-align: center;
    background: #ffffff;
}

.hiw-intro p {
    font-size: 1.15rem;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.hiw-steps {
    padding: 40px 0 80px;
    background: #ffffff;
}

.steps-container {
    max-width: 1000px;
    margin: 0 auto;
}

.step-wrapper {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.step-wrapper:last-child {
    margin-bottom: 0;
}

.step-wrapper.reverse {
    flex-direction: row-reverse;
}

.step-number-circle {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-navy);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-number-circle.gold {
    background: #b8860b;
}

.step-content {
    flex: 1;
    padding-top: 8px;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.step-content h3 span {
    color: #b8860b;
}

.step-content p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 6px;
}

.step-content .step-detail {
    font-size: 0.95rem;
    color: #888;
    line-height: 1.6;
}

.step-content .step-icon {
    font-size: 1.8rem;
    color: #b8860b;
    margin-right: 10px;
}

.hiw-features {
    background: var(--light-bg);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.hiw-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.hiw-feature-item {
    padding: 20px;
}

.hiw-feature-item .feature-icon {
    font-size: 2.4rem;
    color: #b8860b;
    margin-bottom: 12px;
}

.hiw-feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.hiw-feature-item p {
    font-size: 0.9rem;
    color: #666;
}

.hiw-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: #fff;
    text-align: center;
    padding: 60px 0;
}

.hiw-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.hiw-cta h2 span {
    color: #b8860b;
}

.hiw-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
}

.hiw-cta .btn-primary {
    background: #b8860b;
    border-color: #b8860b;
}

.hiw-cta .btn-primary:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-hero {
    padding: 140px 0 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(11, 37, 69, 0.92) 0%, rgba(19, 64, 116, 0.9) 100%), url('../images/aboutHero.png') no-repeat center center/cover;
    background-size: cover;
    background-blend-mode: overlay;
    color: #fff;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #ffffff;
}

.contact-hero h1 span {
    color: #b8860b;
}

.contact-hero p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #ffffff;
}

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

/* Left Column - Contact Info */
.contact-info-column h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-info-column h2 span {
    color: #b8860b;
}

.contact-info-column > p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.detail-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(11, 37, 69, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #b8860b;
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-text h4 {
    font-size: 0.85rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.detail-text a,
.detail-text p {
    font-size: 1rem;
    color: #1a1a2e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.detail-text a:hover {
    color: #b8860b;
}

/* Contact Social */
.contact-social h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.contact-social .social-icons {
    display: flex;
    gap: 14px;
}

.contact-social .social-icons a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 37, 69, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a2e;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.contact-social .social-icons a:hover {
    background: #b8860b;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(184, 134, 11, 0.3);
}

/* Right Column - Contact Form */
.contact-form-column {
    background: #faf8f6;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-form-column h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.contact-form-column .form-subtitle {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 24px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.contact-form .form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: #1a1a2e;
    margin-bottom: 4px;
}

.contact-form .form-group label .required {
    color: #e74c3c;
    margin-left: 2px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #ffffff;
    color: #1a1a2e;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    outline: none;
    border-color: #b8860b;
    box-shadow: 0 0 0 4px rgba(184, 134, 11, 0.08);
}

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

.contact-form .btn-submit {
    width: 100%;
    padding: 14px;
    background: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-form .btn-submit:hover {
    background: #b8860b;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.3);
}

.contact-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Form Success Message */
.form-success {
    display: none;
    text-align: center;
    padding: 30px 20px;
}

.form-success.show {
    display: block;
    animation: fadeIn 0.6s ease;
}

.form-success .success-icon {
    font-size: 3.5rem;
    color: #2ecc71;
    margin-bottom: 12px;
}

.form-success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.form-success p {
    color: #666;
    font-size: 0.95rem;
}

/* Map Section */
.map-section {
    padding: 0 0 60px 0;
    background: #ffffff;
}

.map-section iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d4a 100%);
    color: #fff;
    text-align: center;
    padding: 70px 0;
}

.contact-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 12px;
}

.contact-cta h2 span {
    color: #b8860b;
}

.contact-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto 24px;
}

.contact-cta .btn-primary {
    background: #b8860b;
    border-color: #b8860b;
    font-size: 1.05rem;
    padding: 16px 40px;
}

.contact-cta .btn-primary:hover {
    background: #fff;
    color: #1a1a2e;
    border-color: #fff;
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.4);
}

/* ========================================
   RESPONSIVE STYLES
   ======================================== */

/* Tablets & Small Laptops */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .hero {
        min-height: 90vh;
        background-position: center center;
        background-size: cover;
    }

    .hero::before {
        background-position: center center;
        background-size: cover;
    }

    .hero-content {
        gap: 30px;
        padding: 30px 0 20px 0;
    }

    .hero-image-container {
        height: 400px;
    }

    .hero-bar-grid,
    .features-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .why-container {
        gap: 30px;
    }

    .hiw-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .faq-grid {
        grid-template-columns: 1fr;
        max-width: 700px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form-column {
        padding: 30px;
    }

    .contact-hero h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 0;
        background-position: center top;
        background-size: cover;
        justify-content: flex-start;
    }

    .hero::before {
        background-position: center top;
        background-size: cover;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
        padding: 20px 0 30px 0;
        flex: 0 1 auto;
    }

    .hero-text {
        padding: 10px 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

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

    .hero-image-container {
        height: 350px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-bottom-bar {
        padding: 20px 0;
        margin-top: 20px;
        position: relative;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .about-grid.reverse {
        direction: ltr;
    }

    .about-grid.reverse > * {
        direction: ltr;
    }

    .about-image img,
    .about-image .placeholder {
        height: 250px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    /* ====== WHY CHOOSE US - FULL WIDTH ON MOBILE ====== */
    .why-container {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .why-image-wrapper {
        display: none;
    }

    .why-content-wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero {
        min-height: auto;
        padding-top: 85px;
        padding-bottom: 0;
        background-position: center top 20%;
        background-size: cover;
        background-attachment: scroll;
    }

    .hero::before {
        background-position: center top 20%;
        background-size: cover;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
        padding: 20px 0 30px 0;
    }

    .hero-text {
        padding: 10px 0;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 0.9rem;
        margin-bottom: 16px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        margin-bottom: 20px;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
        min-width: 200px;
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        font-size: 0.8rem;
    }

    .hero-image-container {
        height: 250px;
        max-width: 100%;
        margin: 0 auto;
    }

    .hero-bottom-bar {
        padding: 16px 0;
        margin-top: 16px;
    }

    .hero-bar-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .hero-bar-item {
        gap: 10px;
        padding: 4px 0;
    }

    .bar-icon {
        font-size: 18px;
    }

    .bar-text h4 {
        font-size: 12px;
    }

    .bar-text p {
        font-size: 10px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .section-header-right {
        text-align: left;
    }

    .cta-banner-action {
        align-items: flex-start;
        width: 100%;
    }

    .features-bar-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    /* Logo Mobile */
    .logo-img {
        height: 50px;
    }

    .logo-divider {
        height: 35px;
    }

    .logo-text {
        font-size: 14px;
    }

    .logo-tagline {
        font-size: 8px;
    }

    .footer-logo-img {
        height: 38px;
    }

    .drips-hero h1 {
        font-size: 2.4rem;
    }

    .drips-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 16px;
    }

    .drip-image {
        height: 180px;
    }

    .drip-image.white-bg {
        height: 180px;
        padding: 16px;
    }

    .drip-name {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }

    .drip-description {
        font-size: 0.8rem;
        padding: 0 16px 12px 16px;
    }

    .drip-footer {
        padding: 10px 16px 14px 16px;
        flex-direction: column;
        gap: 8px;
        align-items: stretch;
    }

    .drip-price {
        font-size: 1rem;
        text-align: center;
        color: #1a1a2e;
    }

    .btn-drip-book {
        text-align: center;
        padding: 8px 16px;
        font-size: 0.75rem;
        width: 100%;
    }

    .drip-card {
        min-height: 320px;
    }

    .addons-section {
        padding: 60px 0;
    }

    .addons-grid {
        gap: 30px;
    }

    .addon-item {
        flex-wrap: wrap;
        gap: 4px;
    }

    .addon-price {
        margin-left: 0;
    }

    .package-item {
        flex-wrap: wrap;
        gap: 4px;
    }

    .package-discount {
        margin-left: 0;
    }

    .packages-column {
        padding: 24px;
    }

    .booking-hero h1 {
        font-size: 2.2rem;
    }

    .booking-wrapper {
        padding: 24px 20px;
        margin: 0 12px;
    }

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

    .selected-service {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .about-hero h1 {
        font-size: 2.4rem;
    }

    .about-hero p {
        font-size: 1rem;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-hero h1 {
        font-size: 2.4rem;
    }

    .faq-hero p {
        font-size: 1rem;
    }

    .faq-section {
        padding: 30px 0 60px;
    }

    .faq-item {
        padding: 18px 20px;
    }

    .faq-item .faq-question h3 {
        font-size: 1rem;
    }

    .faq-item .faq-answer {
        padding-left: 28px;
        font-size: 0.9rem;
    }

    .faq-cta h2 {
        font-size: 2rem;
    }

    .faq-cta p {
        font-size: 1rem;
    }

    .hiw-hero h1 {
        font-size: 2.4rem;
    }

    .hiw-hero p {
        font-size: 1rem;
    }

    .hiw-intro p {
        font-size: 1rem;
    }

    .step-content h3 {
        font-size: 1.3rem;
    }

    .step-content p {
        font-size: 0.95rem;
    }

    .hiw-features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .hiw-cta h2 {
        font-size: 2rem;
    }

    .hiw-cta p {
        font-size: 1rem;
    }

    /* ========================================
       LEAD PRACTITIONER - RESPONSIVE TWEAKS
       ======================================== */
    .lead-practitioner-card {
        padding: 30px 20px;
        gap: 20px;
        margin: 0 10px;
        max-width: 100%;
    }
    
    .lead-image-box {
        width: 200px;
        height: 200px;
    }
    
    .lead-image-box .lead-avatar-fallback {
        font-size: 3.5rem;
    }
    
    .lead-info-box h4 {
        font-size: 1.4rem;
    }
    
    .lead-info-box p {
        font-size: 0.95rem;
    }

    /* Contact Page Mobile */
    .contact-hero {
        padding: 120px 0 40px;
        min-height: 220px;
    }

    .contact-hero h1 {
        font-size: 2.2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-info-column h2 {
        font-size: 2rem;
    }

    .contact-detail-item {
        gap: 12px;
    }

    .detail-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .contact-form-column {
        padding: 24px 20px;
    }

    .contact-form-column h3 {
        font-size: 1.5rem;
    }

    .map-section iframe {
        height: 280px;
    }

    .contact-cta {
        padding: 50px 0;
    }

    .contact-cta h2 {
        font-size: 2rem;
    }

    .contact-cta p {
        font-size: 1rem;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding-top: 75px;
        padding-bottom: 0;
        background-position: center top 15%;
        background-size: 180% auto;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero::before {
        background-position: center top 15%;
        background-size: 180% auto;
    }

    .hero-content {
        padding: 0 0 12px 0;
        gap: 12px;
    }

    .hero-title {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 0.82rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
        min-width: 160px;
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .hero-trust {
        gap: 6px;
        font-size: 0.7rem;
    }

    .hero-image-container {
        height: 180px;
    }

    .hero-bottom-bar {
        padding: 12px 0;
        margin-top: 12px;
    }

    .hero-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-bar-item {
        gap: 6px;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 4px 0;
    }

    .bar-icon {
        font-size: 14px;
        margin-top: 0;
    }

    .bar-text h4 {
        font-size: 10px;
        margin-bottom: 2px;
        letter-spacing: 0.5px;
    }

    .bar-text p {
        font-size: 8px;
        line-height: 1.3;
    }

    .section-title {
        font-size: 26px;
    }

    .section-tag {
        font-size: 10px;
        letter-spacing: 1.5px;
    }

    .services-preview {
        padding: 50px 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 12px;
    }

    .service-image-box {
        height: 140px;
    }

    .why-choose-us {
        padding: 50px 0;
    }

    .why-image-wrapper {
        height: 300px;
    }

    .why-quote-card {
        padding: 15px;
    }

    .why-quote-card p {
        font-size: 14px;
    }

    .cta-banner {
        padding: 45px 0;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-desc {
        font-size: 13px;
    }

    .cta-banner-action .btn {
        width: 100%;
        text-align: center;
    }

    .footer {
        padding: 50px 0 20px;
    }

    .footer-grid {
        gap: 25px;
    }

    .drips-hero h1 {
        font-size: 1.8rem;
    }

    .drips-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
        padding: 0 12px;
    }

    .drip-image {
        height: 200px;
    }

    .drip-image.white-bg {
        height: 200px;
        padding: 12px;
    }

    .drip-name {
        font-size: 1.2rem;
    }

    .drip-card {
        min-height: 300px;
        max-width: 100%;
    }

    .drip-price {
        color: #1a1a2e;
    }

    .addons-section {
        padding: 40px 0;
    }

    .addons-column .section-title {
        font-size: 26px;
    }

    .packages-column {
        padding: 20px;
    }

    .package-name {
        font-size: 14px;
    }

    .package-discount {
        font-size: 16px;
    }

    .addon-name {
        font-size: 14px;
    }

    .booking-hero h1 {
        font-size: 1.6rem;
    }

    .booking-wrapper {
        padding: 16px;
    }

    .deposit-section .deposit-amount {
        font-size: 1.6rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .cta-about h2 {
        font-size: 1.8rem;
    }

    .faq-hero h1 {
        font-size: 1.8rem;
    }

    .faq-item {
        padding: 14px 16px;
    }

    .faq-item .faq-question {
        gap: 10px;
    }

    .faq-item .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-item .faq-answer {
        padding-left: 20px;
        font-size: 0.85rem;
    }

    .faq-cta h2 {
        font-size: 1.6rem;
    }

    .hiw-hero h1 {
        font-size: 1.8rem;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .hiw-features-grid {
        grid-template-columns: 1fr;
    }

    .hiw-cta h2 {
        font-size: 1.6rem;
    }

    /* Logo small mobile */
    .logo-img {
        height: 42px;
    }

    .logo-divider {
        height: 28px;
    }

    .logo-text {
        font-size: 13px;
    }

    .logo-tagline {
        font-size: 7px;
    }

    /* Lead Practitioner Small Mobile */
    .lead-image-box {
        width: 160px;
        height: 160px;
        border-width: 3px;
    }
    
    .lead-image-box .lead-avatar-fallback {
        font-size: 2.8rem;
    }
    
    .lead-info-box h4 {
        font-size: 1.2rem;
    }
    
    .lead-practitioner-card {
        padding: 24px 16px;
    }

    /* Contact Page Small Mobile */
    .contact-hero h1 {
        font-size: 1.8rem;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }

    .contact-section {
        padding: 30px 0;
    }

    .contact-grid {
        gap: 30px;
    }

    .contact-info-column h2 {
        font-size: 1.6rem;
    }

    .contact-info-column > p {
        font-size: 0.95rem;
    }

    .contact-detail-item {
        gap: 10px;
    }

    .detail-icon {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .detail-text a,
    .detail-text p {
        font-size: 0.9rem;
    }

    .contact-form-column {
        padding: 20px 16px;
    }

    .contact-form-column h3 {
        font-size: 1.3rem;
    }

    .contact-social .social-icons a {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }

    .map-section iframe {
        height: 200px;
    }

    .contact-cta h2 {
        font-size: 1.6rem;
    }

    .contact-cta .btn-primary {
        font-size: 0.9rem;
        padding: 14px 28px;
    }
}

@media (max-width: 360px) {
    .hero {
        padding-top: 70px;
        background-position: center top 10%;
        background-size: 200% auto;
    }

    .hero::before {
        background-position: center top 10%;
        background-size: 200% auto;
    }

    .hero-title {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.75rem;
    }

    .hero-image-container {
        height: 150px;
    }

    .hero-bar-grid {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }

    .hero-bar-item {
        padding: 2px 0;
    }

    .bar-text h4 {
        font-size: 9px;
    }

    .bar-text p {
        font-size: 7px;
    }

    .section-title {
        font-size: 23px;
    }

    .logo-tagline {
        font-size: 7px;
    }

    /* Logo 360px */
    .logo-img {
        height: 38px;
    }

    .logo-divider {
        height: 24px;
    }

    .logo-text {
        font-size: 12px;
    }

    .logo-tagline {
        font-size: 6px;
    }

    .hero-buttons .btn {
        width: auto;
        max-width: none;
        min-width: 140px;
        font-size: 0.8rem;
        padding: 8px 16px;
    }

    /* Lead Practitioner 360px */
    .lead-image-box {
        width: 140px;
        height: 140px;
    }
    
    .lead-image-box .lead-avatar-fallback {
        font-size: 2.5rem;
    }
}

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