
/* -- CSS Variables -- */
:root {
    --aura-cream:     #F7F7F7;
    --aura-beige:     #E4E4E4;
    --aura-gold: #858585;
    --aura-gold-dark: #3A3A3A;
    --aura-brown:     #2E2E2E;
    --aura-dark:      #1A1A1A;
    --aura-pink:      #D0D0D0;
    --aura-pink-soft: #EFEFEF;
    --aura-white:     #FFFFFF;
    --aura-gray:      #888888;
}

* { scroll-behavior: smooth; }

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--aura-cream);
    color: var(--aura-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* navbar */
.navbar-aura {
    background-color: rgba(247, 247, 247, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--aura-beige);
    padding: 1rem 0;
    transition: all 0.3s ease;
}
.navbar-aura.scrolled {
    padding: 0.6rem 0;
    box-shadow: 0 2px 20px rgba(26,26,26,0.12);
}
.navbar-brand-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--aura-brown) !important;
    letter-spacing: 1px;
}
.navbar-brand-sub {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aura-gold);
    display: block;
    line-height: 1;
    margin-top: -3px;
}
.navbar-aura .nav-link {
    color: var(--aura-dark) !important;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 400;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}
.navbar-aura .nav-link:hover,
.navbar-aura .nav-link.active {
    color: var(--aura-white) !important;
    background-color: var(--aura-brown) !important;
}
.btn-book-nav {
    background-color: var(--aura-gold);
    color: var(--aura-white) !important;
    border-radius: 0;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.55rem 1.5rem !important;
    transition: background-color 0.3s;
}
.btn-book-nav:hover {
    background-color: var(--aura-gold-dark);
    color: var(--aura-white) !important;
}
.navbar-toggler { border: 1px solid var(--aura-gold); }
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28201, 169, 110, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* buttons */
.btn-aura-primary {
    background-color: var(--aura-gold);
    color: var(--aura-white);
    border: 2px solid var(--aura-gold);
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.btn-aura-primary:hover {
    background-color: transparent;
    color: var(--aura-gold);
}
.btn-aura-outline {
    background-color: transparent;
    color: var(--aura-gold);
    border: 2px solid var(--aura-gold);
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.btn-aura-outline:hover {
    background-color: var(--aura-gold);
    color: var(--aura-white);
}
.btn-aura-white {
    background-color: var(--aura-white);
    color: var(--aura-brown);
    border: 2px solid var(--aura-white);
    border-radius: 0;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.75rem 2.5rem;
    transition: all 0.3s;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    display: inline-block;
    text-decoration: none;
    cursor: pointer;
}
.btn-aura-white:hover {
    background-color: transparent;
    color: var(--aura-white);
}

/* Controlled section padding (replaces inline padding:5rem 0 !important) */
.section-aura { padding: 5rem 0; }

/*  section helpers  */
.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--aura-brown);
    line-height: 1.2;
}
.section-subtitle {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--aura-gold);
    margin-bottom: 0.5rem;
}
.section-divider {
    width: 60px;
    height: 2px;
    background-color: var(--aura-gold);
    margin: 1rem auto 1.5rem;
}
.section-divider-left {
    width: 50px;
    height: 2px;
    background: var(--aura-gold);
    margin-bottom: 1.5rem;
}

/* --------------------------------------
   PAGE HERO
-------------------------------------- */
.page-hero {
    background: linear-gradient(135deg, var(--aura-beige) 0%, var(--aura-pink-soft) 100%);
    padding: 5rem 0 3rem;
    text-align: center;
}

/* --------------------------------------
   CARDS
-------------------------------------- */
.card-aura {
    border: none;
    border-radius: 0;
    background-color: var(--aura-white);
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
}
.card-aura:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(26,26,26,0.13);
}
.card-aura img { transition: transform 0.5s; }
.card-aura:hover img { transform: scale(1.05); }

/* --------------------------------------
   FORM CONTROLS
-------------------------------------- */
.form-control-aura {
    border: 1px solid var(--aura-beige);
    border-radius: 0;
    background-color: var(--aura-white);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    transition: border-color 0.3s;
}
.form-control-aura:focus {
    border-color: var(--aura-gold);
    box-shadow: 0 0 0 0.2rem rgba(90,90,90,0.18);
    outline: none;
}
.form-select-aura {
    border: 1px solid var(--aura-beige);
    border-radius: 0;
    background-color: var(--aura-white);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}
.form-select-aura:focus {
    border-color: var(--aura-gold);
    box-shadow: 0 0 0 0.2rem rgba(90,90,90,0.18);
}

/* --------------------------------------
   BOOKING SPINNERS
-------------------------------------- */
.booking-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.4);
    border-top-color: #fff;
    border-radius: 50%;
    animation: aura-spin 0.7s linear infinite;
    vertical-align: middle;
    flex-shrink: 0;
}
.booking-spinner-lg {
    width: 54px;
    height: 54px;
    border: 4px solid rgba(90,80,70,0.15);
    border-top-color: var(--aura-gold);
    border-radius: 50%;
    animation: aura-spin 0.8s linear infinite;
}
@keyframes aura-spin {
    to { transform: rotate(360deg); }
}

/* UTILITY / MISC  */
.text-gold     { color: var(--aura-gold) !important; }
.bg-cream      { background-color: var(--aura-cream) !important; }
.bg-beige      { background-color: var(--aura-beige) !important; }
.bg-pink-soft  { background-color: var(--aura-pink-soft) !important; }
.bg-dark-aura  { background-color: var(--aura-dark) !important; }
.border-gold   { border-color: var(--aura-gold) !important; }

.price-badge {
    background: var(--aura-gold);
    color: white;
    padding: 0.25rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
}

.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    z-index: 999;
    transition: transform 0.3s;
    text-decoration: none;
}
.whatsapp-float:hover {
    transform: scale(1.1);
    color: white;
}


#backToTop {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    background: var(--aura-dark);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s, transform 0.3s, visibility 0.3s, background 0.2s;
    box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}
#backToTop.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
#backToTop:hover {
    background: var(--aura-gold);
}

/* Footer */
.footer-aura {
    background-color: var(--aura-dark);
    color: rgba(250,246,241,0.8);
}
.footer-aura h5 {
    color: var(--aura-gold);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}
.footer-aura a {
    color: rgba(250,246,241,0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-aura a:hover { color: var(--aura-gold); }
.footer-divider { border-color: rgba(90,90,90,0.20); }
.social-icon {
    width: 38px; height: 38px;
    background-color: rgba(90,90,90,0.15);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--aura-gold);
    font-size: 1rem;
    transition: all 0.3s;
    text-decoration: none;
}
.social-icon:hover {
    background-color: var(--aura-gold);
    color: var(--aura-white);
}

/*  animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.7s ease forwards; }

/* home page  */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%),
                url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937?w=1600&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    /*background: linear-gradient(to top, var(--aura-cream), transparent);*/
}
.hero-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 500;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-sub {
    font-size: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.9;
    margin-bottom: 2rem;
}
.service-card-img {
    height: 220px;
    object-fit: cover;
    width: 100%;
}
.service-icon {
    width: 60px; height: 60px;
    background: var(--aura-pink-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: -30px auto 1rem;
    font-size: 1.5rem;
    color: var(--aura-gold);
    position: relative;
    z-index: 1;
    border: 3px solid var(--aura-white);
    box-shadow: 0 4px 15px rgba(90,90,90,0.20);
}
.campaign-banner {
    background: linear-gradient(135deg, var(--aura-brown) 0%, var(--aura-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}
.campaign-banner::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(90,90,90,0.15) 0%, transparent 70%);
}
.testimonial-card {
    background: var(--aura-white);
    padding: 2rem;
    position: relative;
    border-top: 3px solid var(--aura-gold);
}
.testimonial-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 5rem;
    color: var(--aura-gold);
    opacity: 0.2;
    position: absolute;
    top: 0.5rem;
    left: 1rem;
    line-height: 1;
}
.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}
.stat-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--aura-gold);
    line-height: 1;
}
.countdown-unit {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    min-width: 80px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.2);
}
.countdown-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}
.countdown-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
}

/* --------------------------------------
   ABOUT PAGE
-------------------------------------- */
.team-card { text-align: center; }
.team-img {
    width: 150px; height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--aura-gold);
    margin: 0 auto 1rem;
    display: block;
}
.hygiene-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--aura-white);
    margin-bottom: 1rem;
}
.hygiene-icon {
    width: 48px; height: 48px;
    background: var(--aura-pink-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--aura-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}

/*  Service Page  */
.service-detail-card {
    background: var(--aura-white);
    border-left: 4px solid var(--aura-gold);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}
.service-detail-card:hover {
    box-shadow: 0 8px 30px rgba(26,26,26,0.10);
}
.duration-badge {
    background: var(--aura-beige);
    color: var(--aura-brown);
    padding: 0.25rem 0.75rem;
    font-size: 0.8rem;
    display: inline-block;
}
.package-card {
    background: linear-gradient(135deg, var(--aura-dark) 0%, var(--aura-brown) 100%);
    color: white;
    padding: 2.5rem 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}
.package-card:hover { transform: translateY(-5px); }
.package-card::before {
    content: '';
    position: absolute; top: -30%; right: -10%;
    width: 200px; height: 200px;
    border-radius: 50%;
    background: rgba(90,90,90,0.15);
}
.package-card.featured {
    background: linear-gradient(135deg, var(--aura-gold-dark) 0%, var(--aura-gold) 100%);
    border: none;
}
.package-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

/* Campaign page  */
.offer-card {
    background: var(--aura-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(26,26,26,0.15);
}
.offer-badge {
    background: var(--aura-gold);
    color: white;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 0.35rem 1rem;
    display: inline-block;
}
.countdown-mini {
    background: var(--aura-dark);
    color: white;
    padding: 1rem;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.countdown-mini-unit {
    text-align: center;
    min-width: 55px;
}
.countdown-mini-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--aura-gold);
    display: block;
    line-height: 1;
}
.countdown-mini-lbl {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.6;
}

/*  gallery Page  */
.gallery-filter .btn {
    border-radius: 0;
    font-size: 0.78rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid var(--aura-beige);
    color: var(--aura-brown);
    padding: 0.5rem 1.2rem;
    transition: all 0.3s;
    background: transparent;
}
.gallery-filter .btn.active,
.gallery-filter .btn:hover {
    background: var(--aura-gold);
    border-color: var(--aura-gold);
    color: white;
}
.gallery-item {
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s;
    display: block;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26,26,26,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { color: white; font-size: 2rem; }

/* -- Pagination (public pages) -- */
.pagination {
    gap: 4px;
}
.pagination .page-link {
    border-radius: 0;
    border: 1px solid var(--aura-beige);
    color: var(--aura-brown);
    font-family: 'Lato', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.85rem;
    transition: all 0.3s;
    background: transparent;
}
.pagination .page-link:hover {
    background: var(--aura-dark);
    border-color: var(--aura-dark);
    color: var(--aura-white);
}
.pagination .page-item.active .page-link {
    background: var(--aura-dark);
    border-color: var(--aura-dark);
    color: var(--aura-white);
}
.pagination .page-item.disabled .page-link {
    background: var(--aura-cream);
    border-color: var(--aura-beige);
    color: var(--aura-gray);
    opacity: 0.6;
}

.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border: 2px solid rgba(90,90,90,0.30);
    display: block;
    z-index: 10;
    position: relative;
}
.lightbox-close {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}
.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(90,90,90,0.30);
    border: none;
    padding: 0.5rem 0.8rem;
    transition: background 0.2s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--aura-gold); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-caption {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-align: center;
}
.gallery-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 0.2rem 0.6rem;
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    z-index: 1;
}
.gallery-video-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    z-index: 1;
    background: rgba(198, 40, 40, 0.9);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.2rem 0.55rem;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.lightbox-video {
    display: none;
    flex-direction: column;
    width: 90vw;
    max-width: 960px;
    z-index: 10;
    position: relative;
    background: #000;
}
/* Player area — keeps 16:9 ratio */
#lightboxPlayerWrap {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}
#lightboxPlayerWrap iframe,
#lightboxPlayerWrap > div:first-child {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/* Click-to-play/pause overlay */
.lightbox-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    background: rgba(0,0,0,0.15);
    transition: opacity 0.3s;
}
.lightbox-play-overlay i {
    font-size: 4rem;
    color: rgba(255,255,255,0.85);
    text-shadow: 0 2px 12px rgba(0,0,0,0.5);
    transition: transform 0.2s, opacity 0.3s;
}
.lightbox-play-overlay:hover i { transform: scale(1.15); }
/* While playing, hide the overlay after a moment (shown on hover) */
.lightbox-play-overlay.is-playing {
    opacity: 0;
}
.lightbox-play-overlay.is-playing:hover {
    opacity: 1;
}
/* Custom controls bar */
.lightbox-controls {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.75rem;
    background: rgba(30,30,30,0.92);
}
.lightbox-timer {
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.75);
    min-width: 3.2em;
    text-align: center;
    user-select: none;
}
/* Seek range input */
.lightbox-seek {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
    outline: none;
    cursor: pointer;
}
.lightbox-seek::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--aura-white, #fff);
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: transform 0.15s;
}
.lightbox-seek::-webkit-slider-thumb:hover { transform: scale(1.3); }
.lightbox-seek::-moz-range-thumb {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--aura-white, #fff);
    border: none;
    box-shadow: 0 0 4px rgba(0,0,0,0.4);
    cursor: pointer;
}
.lightbox-seek::-moz-range-track {
    height: 4px;
    border-radius: 2px;
    background: rgba(255,255,255,0.2);
}

/*  TESTIMONIALS PAGE  */
.review-card {
    background: var(--aura-white);
    padding: 2rem;
    border-top: 3px solid transparent;
    transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.review-card:hover {
    border-top-color: var(--aura-gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(26,26,26,0.10);
}
.review-card::before {
    content: '"';
    font-family: 'Cormorant Garamond', serif;
    font-size: 6rem;
    color: var(--aura-gold);
    opacity: 0.12;
    position: absolute;
    top: 0; left: 1rem;
    line-height: 1;
}
.star-rating { color: var(--aura-gold); font-size: 0.9rem; }
.reviewer-avatar {
    width: 52px; height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--aura-gold);
}
.review-tag {
    font-size: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    background: var(--aura-beige);
    color: var(--aura-brown);
    padding: 0.2rem 0.7rem;
    display: inline-block;
}
.rating-summary-bar {
    height: 8px;
    background: var(--aura-beige);
    border-radius: 4px;
    overflow: hidden;
}
.rating-summary-fill {
    height: 100%;
    background: var(--aura-gold);
    border-radius: 4px;
}

/* BOOKING PAGE */
.booking-step {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--aura-beige);
    color: var(--aura-brown);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    flex-shrink: 0;
}
.booking-step.active {
    background: var(--aura-gold);
    color: white;
}
.info-block {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.info-icon {
    width: 48px; height: 48px;
    background: var(--aura-pink-soft);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--aura-gold);
    font-size: 1.3rem;
    flex-shrink: 0;
}
#map-embed {
    width: 100%;
    height: 300px;
    border: none;
    filter: sepia(30%) saturate(70%);
}

/* blog page  */
.blog-card {
    background: var(--aura-white);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(26,26,26,0.12);
}
.blog-card img {
    height: 220px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s;
}
.blog-card:hover img { transform: scale(1.05); }
.blog-category {
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--aura-gold);
    color: white;
    padding: 0.2rem 0.7rem;
    display: inline-block;
    margin-bottom: 0.75rem;
}
.blog-card .read-more {
    color: var(--aura-gold);
    font-size: 0.85rem;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    transition: color 0.2s;
}
.blog-card .read-more:hover { color: var(--aura-gold-dark); }
.search-box {
    border: 1px solid var(--aura-beige);
    border-radius: 0;
    padding: 0.75rem 1rem;
    width: 100%;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.3s;
}
.search-box:focus { border-color: var(--aura-gold); }
.tag-badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--aura-beige);
    color: var(--aura-brown);
    font-size: 0.78rem;
    margin: 0.2rem;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.tag-badge:hover {
    background: var(--aura-gold);
    color: white;
}

/* Responsiveness */


html, body { overflow-x: hidden; max-width: 100%; }

/* -- 992px and below (tablets) -- */
@media (max-width: 991px) {
    .section-title { font-size: 2.2rem; }
    .package-price { font-size: 2.2rem; }
    .stat-number   { font-size: 2.8rem; }
    .hero-tagline  { font-size: clamp(2.2rem, 7vw, 3.8rem); }

    /* Collapsed menu panel */
    .navbar-aura .navbar-collapse {
        border-top: 1px solid var(--aura-beige);
        padding: 0.5rem 0 1.25rem;
        margin-top: 0.75rem;
    }

    .navbar-aura .navbar-nav {
        gap: 0 !important;
        width: 100%;
    }

    .navbar-aura .nav-link {
        padding: 0.9rem 0.25rem !important;
        border-bottom: 1px solid var(--aura-beige);
        font-size: 0.82rem;
        letter-spacing: 1.5px;
    }

    /* Last nav item (Book Now) — extra top breathing room */
    .navbar-aura .nav-item:last-child {
        margin-top: 1rem;
        padding: 0;
    }

    /* Book Now button — full width, centred, taller tap target */
    .btn-book-nav {
        display: block !important;
        width: 100% !important;
        text-align: center !important;
        padding: 0.85rem 1.5rem !important;
        font-size: 0.8rem;
    }
}

/* -- 768px and below (phones / small tablets) -- */
@media (max-width: 768px) {

    /* -- Global -- */
    .section-title    { font-size: 1.9rem; }
    .section-subtitle { font-size: 0.7rem; letter-spacing: 2px; }
    .navbar-brand-text { font-size: 1.3rem; }

    /* -- Page Hero -- */
    .page-hero { padding: 5rem 0 2.5rem !important; }

    /* -- Buttons -- */
    .btn-aura-primary,
    .btn-aura-outline,
    .btn-aura-white {
        padding: 0.65rem 1.5rem;
        letter-spacing: 1px;
        font-size: 0.78rem;
    }

    /* -- Services page – category nav: horizontal scroll -- */
    .services-cat-nav {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start !important;
        flex-wrap: nowrap !important;
        padding-bottom: 4px;
        gap: 0.4rem !important;
        scrollbar-width: none;
    }
    .services-cat-nav::-webkit-scrollbar { display: none; }
    .services-cat-nav .nav-item          { flex-shrink: 0; }
    .services-cat-nav .nav-link  {
        white-space: nowrap;
        font-size: 0.72rem;
        padding: 0.4rem 0.85rem !important; }

    /* -- Services page – section padding -- */
    .services-section,
    .section-aura { padding: 3rem 0; }

    /* -- Package cards -- */
    .package-card   { padding: 1.75rem 1.25rem; }
    .package-price  { font-size: 2rem; }

    /* -- Service detail card -- */
    .service-detail-card { padding: 1rem; }

    /* -- Hero -- */
    .hero-section { min-height: 80vh; }
    .hero-sub     { font-size: 0.85rem; letter-spacing: 2px; }

    /* -- Countdown -- */
    .countdown-unit    { min-width: 60px; padding: 0.75rem; }
    .countdown-number  { font-size: 1.8rem; }
    .countdown-mini-num { font-size: 1.6rem; }

    /* -- Stats -- */
    .stat-number { font-size: 2.5rem; }
    .stat-item   { padding: 1.25rem 0.75rem; }

    /* -- Testimonial card -- */
    .testimonial-card { padding: 1.5rem; }

    /* -- Blog card -- */
    .blog-card img { height: 180px; }

    /* -- Gallery -- */
    .gallery-item img { height: 200px; }
    .lightbox-video { width: 95vw; }
    .lightbox-prev,
    .lightbox-next { padding: 0.4rem 0.6rem; font-size: 1.5rem; }
    .lightbox-close { font-size: 2rem; top: 1rem; right: 1rem; }

    /* -- WhatsApp float & back-to-top -- */
    .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 50px; height: 50px; font-size: 1.5rem; }
    #backToTop      { bottom: 4.75rem; right: 1.25rem; }

    /* -- Booking steps -- */
    .booking-step { width: 34px; height: 34px; font-size: 0.85rem; }

    /* -- Review card -- */
    .review-card { padding: 1.5rem 1.25rem; }

    /* -- Team image -- */
    .team-img { width: 120px; height: 120px; }

    /* -- Hygiene item -- */
    .hygiene-item { gap: 0.75rem; padding: 0.75rem; }
    .hygiene-icon { width: 40px; height: 40px; font-size: 1.1rem; }

    /* -- Footer spacing -- */
    .footer-aura .row > [class*="col-"] { margin-bottom: 1.5rem; }
}

/* -- 575px and below (small phones) -- */
@media (max-width: 575px) {
    .section-title { font-size: 1.65rem; }
    .page-hero     { padding: 4.5rem 0 2rem !important; }

    /* Package card – full width, compact */
    .package-card  { padding: 1.5rem 1rem; }
    .package-price { font-size: 1.75rem; }

    /* Gallery items on tiny phones */
    .gallery-item img { height: 165px; }
    .gallery-video-badge { font-size: 0.6rem; padding: 0.15rem 0.4rem; }
    .lightbox-video { width: 98vw; }
    .lightbox-prev { left: 0.5rem; }
    .lightbox-next { right: 0.5rem; }

    /* Countdown */
    .countdown-unit     { min-width: 52px; padding: 0.6rem; }
    .countdown-number   { font-size: 1.5rem; }
    .countdown-mini-num { font-size: 1.4rem; }
    .countdown-mini-unit { min-width: 44px; }

    /* Waxing service detail card – full width text */
    .service-detail-card .d-flex { flex-direction: column; align-items: flex-start !important; gap: 0.5rem; }

    /* Blog search sidebar stacks */
    .blog-sidebar { margin-top: 2rem; }

     .btn-book-nav {
        padding: 0.85rem 1.5rem !important;
        font-size: 0.72rem;
        letter-spacing: 1px;
    }
}

