/* ================================================================
   COSMO LOOKS — Main Stylesheet
   Brand: #832492  |  Font: Cormorant Garamond
   ================================================================ */

:root {
    --clr-primary:      #832492;
    --clr-primary-dk:   #6a1c78;
    --clr-primary-lt:   #9c3aad;
    --clr-primary-pale: #f7eefb;
    --clr-primary-mist: #f0e0f6;
    --clr-white:        #ffffff;
    --clr-dark:         #1c1c1c;
    --clr-muted:        #6b6b6b;
    --clr-border:       #e8d4f0;
    --clr-border-lt:    #f2e6f8;

    --font:             'Cormorant Garamond', Georgia, 'Times New Roman', serif;

    --header-h:         78px;
    --topbar-h:         38px;

    --ease:             cubic-bezier(0.4, 0, 0.2, 1);
    --dur:              0.28s;

    --shadow-md:        0 8px 32px rgba(131, 36, 146, 0.14), 0 2px 8px rgba(0,0,0,0.06);
    --shadow-lg:        0 20px 60px rgba(131, 36, 146, 0.18), 0 4px 16px rgba(0,0,0,0.08);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: var(--font);
    color: var(--clr-dark);
    background: var(--clr-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ================================================================
   TOP BAR
   ================================================================ */
.top-bar {
    background: var(--clr-primary);
    color: var(--clr-white);
    height: var(--topbar-h);
    display: flex;
    align-items: center;
    font-size: 13px;
    letter-spacing: 0.02em;
    position: relative;
    z-index: 900;
}

.top-bar-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.top-bar-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-style: italic;
    font-size: 13.5px;
    opacity: 0.95;
    letter-spacing: 0.03em;
}

.top-bar-badge svg { opacity: 0.85; flex-shrink: 0; }

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    letter-spacing: 0.05em;
    opacity: 0.9;
    transition: opacity var(--dur) var(--ease);
    white-space: nowrap;
}

.top-bar-link:hover { opacity: 1; text-decoration: underline; text-underline-offset: 2px; }

.top-bar-divider { opacity: 0.4; font-size: 11px; }

/* ================================================================
   MAIN HEADER
   ================================================================ */
.main-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    background: var(--clr-white);
    border-bottom: 1px solid var(--clr-border);
    transition: box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 24px;
}

/* ================================================================
   LOGO
   ================================================================ */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    flex-shrink: 0;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.logo:hover .logo-mark {
    background: var(--clr-primary-dk);
    transform: scale(1.04);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 3px;
}

.logo-name {
    font-family: var(--font);
    font-size: 24px;
    font-weight: 600;
    color: var(--clr-dark);
    letter-spacing: 0.02em;
    line-height: 1;
}

.logo-name em {
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 700;
}

.logo-tag {
    font-size: 9.5px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--clr-muted);
    font-weight: 400;
    font-style: italic;
}

/* ================================================================
   DESKTOP NAVIGATION
   ================================================================ */
.desktop-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 2px;
}

.nav-item { position: relative; }

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 7px 13px;
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-dark);
    letter-spacing: 0.04em;
    border-radius: 5px;
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
    white-space: nowrap;
    cursor: pointer;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 1px;
    background: var(--clr-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--dur) var(--ease);
}

.nav-link:hover,
.nav-item.has-dropdown:hover > .nav-link {
    color: var(--clr-primary);
    background: var(--clr-primary-pale);
}

.nav-link:hover::after,
.nav-item.has-dropdown:hover > .nav-link::after {
    transform: scaleX(1);
}

.chevron {
    width: 13px;
    height: 13px;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease);
    color: currentColor;
    opacity: 0.7;
}

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

/* ================================================================
   MEGA MENU DROPDOWN
   ================================================================ */
.mega-menu {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    min-width: 460px;
    background: var(--clr-white);
    border: 1px solid var(--clr-border);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity var(--dur) var(--ease),
        transform var(--dur) var(--ease),
        visibility var(--dur) var(--ease);
    z-index: 1100;
}

.mega-menu--skin {
    min-width: 560px;
    /* Shift left so it doesn't go off-screen on the right side */
    left: auto;
    right: -20px;
    transform: translateY(-10px);
}

/* Caret arrow */
.mega-menu::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    background: var(--clr-white);
    border-top: 1px solid var(--clr-border);
    border-left: 1px solid var(--clr-border);
    border-radius: 2px 0 0 0;
}

.mega-menu--skin::before {
    left: auto;
    right: 38px;
    transform: rotate(45deg);
}

/* Show on hover — add a bridge so mouse can reach the dropdown */
.nav-item.has-dropdown::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 16px;
}

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

.nav-item.has-dropdown:hover .mega-menu--skin {
    transform: translateY(0);
}

.mega-menu__inner { padding: 24px 24px 20px; }

.mega-menu__header {
    padding-bottom: 16px;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--clr-border-lt);
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.mega-menu__title {
    font-family: var(--font);
    font-size: 21px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.02em;
    font-style: italic;
}

.mega-menu__sub {
    font-size: 13px;
    font-weight: 500;
    color: var(--clr-muted);
    font-style: italic;
    letter-spacing: 0.03em;
}

/* Grid */
.mega-menu__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3px;
    margin-bottom: 18px;
}

.mega-menu__grid--3col { grid-template-columns: 1fr 1fr 1fr; }

/* Each item */
.mega-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 8px 10px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-dark);
    border-radius: 6px;
    letter-spacing: 0.025em;
    transition:
        background var(--dur) var(--ease),
        color var(--dur) var(--ease),
        transform var(--dur) var(--ease);
    position: relative;
    overflow: hidden;
}

.mega-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--clr-primary-pale);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.22s var(--ease);
    z-index: 0;
    border-radius: 6px;
}

.mega-item:hover::before { transform: scaleX(1); }

.mega-item:hover {
    color: var(--clr-primary);
    transform: translateX(3px);
}

.mega-item__dot {
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
    position: relative;
    z-index: 1;
}

.mega-item:hover .mega-item__dot { opacity: 1; transform: scale(1.4); }

.mega-item span ~ * { position: relative; z-index: 1; }

/* Footer CTA */
.mega-menu__footer {
    padding-top: 14px;
    border-top: 1px solid var(--clr-border-lt);
    text-align: right;
}

.mega-menu__cta {
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.05em;
    transition: letter-spacing var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

.mega-menu__cta:hover { letter-spacing: 0.08em; opacity: 0.8; }

/* ================================================================
   HEADER CTA BUTTONS
   ================================================================ */
.header-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
    border-radius: 5px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    transition:
        background var(--dur) var(--ease),
        color var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.btn-call:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
    box-shadow: 0 4px 14px rgba(131, 36, 146, 0.3);
}

.btn-book {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 5px;
    white-space: nowrap;
    transition:
        background var(--dur) var(--ease),
        transform var(--dur) var(--ease),
        box-shadow var(--dur) var(--ease);
}

.btn-book:hover {
    background: var(--clr-primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(131, 36, 146, 0.38);
}

/* ================================================================
   HAMBURGER
   ================================================================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 6px;
    transition: background var(--dur) var(--ease);
    margin-left: auto;
    flex-shrink: 0;
}

.hamburger:hover { background: var(--clr-primary-pale); }

.bar {
    display: block;
    width: 23px;
    height: 2px;
    background: var(--clr-dark);
    border-radius: 2px;
    transition:
        transform var(--dur) var(--ease),
        opacity var(--dur) var(--ease),
        background var(--dur) var(--ease);
    transform-origin: center;
}

/* Active (X) state */
.hamburger[aria-expanded="true"] .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background: var(--clr-primary);
}
.hamburger[aria-expanded="true"] .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.hamburger[aria-expanded="true"] .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background: var(--clr-primary);
}

/* ================================================================
   MOBILE MENU
   ================================================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -110%;
    width: min(82vw, 360px);
    height: 100dvh;
    background: var(--clr-white);
    z-index: 2000;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    box-shadow: -6px 0 40px rgba(0, 0, 0, 0.14);
    transition: right 0.38s var(--ease);
    overscroll-behavior: contain;
}

.mobile-menu.is-open { right: 0; }

.mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 22px;
    border-bottom: 1px solid var(--clr-border);
    flex-shrink: 0;
}

.mobile-logo {
    font-family: var(--font);
    font-size: 22px;
    font-weight: 600;
    color: var(--clr-dark);
    letter-spacing: 0.02em;
}

.mobile-logo em {
    font-style: italic;
    color: var(--clr-primary);
    font-weight: 700;
}

.mobile-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--clr-primary-pale);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--clr-primary);
    transition: background var(--dur) var(--ease);
    flex-shrink: 0;
}

.mobile-close:hover { background: var(--clr-primary-mist); }
.mobile-close svg { width: 18px; height: 18px; }

.mobile-nav { flex: 1; overflow-y: auto; }

.mobile-nav__list { list-style: none; }

.mobile-nav__link {
    display: block;
    padding: 15px 22px;
    font-family: var(--font);
    font-size: 17px;
    font-weight: 500;
    color: var(--clr-dark);
    border-bottom: 1px solid var(--clr-border-lt);
    letter-spacing: 0.04em;
    transition:
        color var(--dur) var(--ease),
        padding-left var(--dur) var(--ease),
        background var(--dur) var(--ease);
}

.mobile-nav__link:hover {
    color: var(--clr-primary);
    padding-left: 28px;
    background: var(--clr-primary-pale);
}

/* Mobile Accordion */
.mobile-accordion__btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 15px 22px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--clr-border-lt);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 500;
    color: var(--clr-dark);
    cursor: pointer;
    letter-spacing: 0.04em;
    text-align: left;
    transition: color var(--dur) var(--ease), background var(--dur) var(--ease);
}

.mobile-accordion__btn:hover,
.mobile-accordion__btn[aria-expanded="true"] {
    color: var(--clr-primary);
    background: var(--clr-primary-pale);
}

.acc-chevron {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease);
    color: currentColor;
    opacity: 0.7;
}

.mobile-accordion__btn[aria-expanded="true"] .acc-chevron {
    transform: rotate(180deg);
    opacity: 1;
}

.mobile-accordion__body {
    background: #fdf5ff;
    border-bottom: 1px solid var(--clr-border-lt);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.36s var(--ease);
}

.mobile-accordion__body:not([hidden]) { max-height: 800px; }

.mobile-sub__link {
    display: block;
    padding: 10px 22px 10px 34px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-dark);
    border-bottom: 1px solid rgba(131, 36, 146, 0.07);
    letter-spacing: 0.03em;
    transition: color var(--dur) var(--ease), padding-left var(--dur) var(--ease);
    position: relative;
}

.mobile-sub__link::before {
    content: '';
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
    opacity: 0.4;
}

.mobile-sub__link:last-child { border-bottom: none; }

.mobile-sub__link:hover {
    color: var(--clr-primary);
    padding-left: 40px;
}

.mobile-sub__link:hover::before { opacity: 1; }

/* Mobile CTA */
.mobile-menu__cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 22px 28px;
    border-top: 1px solid var(--clr-border);
    flex-shrink: 0;
}

.mobile-btn-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 13px;
    color: var(--clr-primary);
    border: 1.5px solid var(--clr-primary);
    border-radius: 6px;
    font-family: var(--font);
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: 0.05em;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease);
}

.mobile-btn-call:hover {
    background: var(--clr-primary);
    color: var(--clr-white);
}

.mobile-btn-book {
    display: block;
    text-align: center;
    padding: 13px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font);
    font-size: 15.5px;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-radius: 6px;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}

.mobile-btn-book:hover {
    background: var(--clr-primary-dk);
    transform: translateY(-1px);
}

/* ================================================================
   OVERLAY
   ================================================================ */
.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

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

/* ================================================================
   HERO SECTION — SLICK SLIDER
   ================================================================ */
.hero-section {
    position: relative;
    overflow: hidden;
    background: #0d0010;
}

/* Slide base */
.hero-slide {
    position: relative;
    height: 92vh;
    min-height: 560px;
    max-height: 860px;
    overflow: hidden;
    outline: none;
}

/* Background image */
.slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    transform: scale(1.05);
    transition: transform 8s ease;
}

.slick-active .slide-bg { transform: scale(1); }

/* Overlays */
.slide-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

/* Main left gradient — covers solid fill area + text zone */
.slide-overlay--left {
    background:
        /* Right-edge vignette: hides T&C watermark */
        linear-gradient(
            to left,
            rgba(10, 0, 15, 0.55)  0%,
            rgba(10, 0, 15, 0.20) 10%,
            transparent           18%
        ),
        /* Left content gradient */
        linear-gradient(
            100deg,
            rgba(131, 36, 146, 0.88)  0%,
            rgba(100, 20, 120, 0.72) 30%,
            rgba(40,  5,  55, 0.38)  55%,
            transparent              75%
        );
}

/* Top + bottom dark band for polish */
.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(to bottom,  rgba(0,0,0,0.18) 0%,  transparent 14%),
        linear-gradient(to top,     rgba(0,0,0,0.30) 0%,  transparent 18%);
}

/* Content wrapper */
.slide-content {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 7% 0 6%;
    max-width: 680px;

    /* Animate in */
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease 0.3s, transform 0.7s ease 0.3s;
}

.slick-active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-content--right {
    margin-left: auto;
    align-items: flex-end;
    text-align: right;
    padding: 0 6% 0 7%;
}

.slide-content--center {
    margin: 0 auto;
    max-width: 820px;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

/* Badge */
.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.slide-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    opacity: 0.8;
}

/* Title */
.slide-title {
    font-family: var(--font);
    font-size: clamp(36px, 5.2vw, 68px);
    font-weight: 700;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 18px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.slide-title em {
    font-style: italic;
    font-weight: 600;
    color: #f5d0ff;
    display: block;
}

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

/* Description */
.slide-desc {
    font-family: var(--font);
    font-size: clamp(15px, 1.6vw, 18px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
    letter-spacing: 0.02em;
}

.slide-desc--center { text-align: center; max-width: 620px; }

/* CTA Buttons */
.slide-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.slide-cta--center { justify-content: center; }

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    padding: 13px 28px;
    background: var(--clr-primary);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border-radius: 5px;
    border: 2px solid var(--clr-primary);
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    white-space: nowrap;
}

.hero-btn-primary:hover {
    background: var(--clr-primary-dk);
    border-color: var(--clr-primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(131, 36, 146, 0.5);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 11px 26px;
    background: transparent;
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 5px;
    border: 2px solid rgba(255,255,255,0.7);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    white-space: nowrap;
    backdrop-filter: blur(4px);
}

.hero-btn-secondary:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

/* Stats bar */
.slide-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 36px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.stat-num {
    font-family: var(--font);
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: 0.02em;
}

.stat-label {
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.stat-divider {
    width: 1px;
    height: 36px;
    background: rgba(255,255,255,0.25);
    flex-shrink: 0;
}

/* ================================================================
   SLICK — Dots (hide default, we use custom counter)
   ================================================================ */
.hero-slider .slick-dots {
    bottom: 22px;
    z-index: 10;
}

.hero-slider .slick-dots li button::before {
    font-size: 9px;
    color: rgba(255,255,255,0.5);
    opacity: 1;
    transition: color 0.3s ease, transform 0.3s ease;
}

.hero-slider .slick-dots li.slick-active button::before {
    color: var(--clr-primary);
    transform: scale(1.5);
}

/* Override slick-theme dot color */
.hero-slider .slick-dots li button:hover::before,
.hero-slider .slick-dots li button:focus::before {
    color: #fff;
}

/* ================================================================
   CUSTOM PREV / NEXT ARROWS
   ================================================================ */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131, 36, 146, 0.18);
    border: 1.5px solid rgba(131, 36, 146, 0.5);
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.hero-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-50%) scale(1.08);
}

.hero-arrow svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

/* ================================================================
   SLIDE COUNTER
   ================================================================ */
.slide-counter {
    position: absolute;
    bottom: 26px;
    right: 30px;
    z-index: 20;
    display: flex;
    align-items: baseline;
    gap: 4px;
    font-family: var(--font);
    color: rgba(255,255,255,0.85);
}

.counter-current {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.counter-sep {
    font-size: 16px;
    opacity: 0.5;
    margin: 0 2px;
}

.counter-total {
    font-size: 15px;
    font-weight: 500;
    opacity: 0.7;
}

/* ================================================================
   HERO RESPONSIVE
   ================================================================ */
@media (max-width: 768px) {
    .hero-slide {
        height: 85vh;
        min-height: 500px;
        max-height: 700px;
    }

    .slide-overlay--right {
        background: linear-gradient(
            180deg,
            rgba(131, 36, 146, 0.5) 0%,
            rgba(90, 15, 105, 0.75) 60%,
            rgba(20, 0, 30, 0.88) 100%
        );
    }

    .slide-content,
    .slide-content--right {
        max-width: 100%;
        margin: 0;
        padding: 0 22px;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-end;
        padding-bottom: 90px;
    }

    .slide-content--center {
        align-items: flex-start;
        text-align: left;
    }

    .slide-cta--center { justify-content: flex-start; }

    .slide-desc--center { text-align: left; }

    .slide-title--center { text-align: left; }

    .slide-stats { gap: 14px; }

    .stat-num { font-size: 22px; }

    .hero-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-arrow svg { width: 18px; height: 18px; }

    .hero-arrow--prev { left: 14px; }
    .hero-arrow--next { right: 14px; }

    .slide-counter { bottom: 18px; right: 18px; }
    .counter-current { font-size: 22px; }
}

@media (max-width: 480px) {
    .hero-slide {
        height: 88vh;
        min-height: 480px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 11px 20px;
        font-size: 13.5px;
    }

    .slide-cta { gap: 10px; }

    .hero-arrow { display: none; }
}

/* ================================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ================================================================ */
@media (max-width: 1024px) {
    .desktop-nav  { display: none; }
    .header-cta   { display: none; }
    .hamburger    { display: flex; }

    .header-container {
        justify-content: space-between;
    }
}

/* ================================================================
   RESPONSIVE — SMALL TABLET (≤ 768px)
   ================================================================ */
@media (max-width: 768px) {
    :root {
        --header-h:   66px;
        --topbar-h:   auto;
    }

    .top-bar { padding: 8px 0; }

    .top-bar-container {
        flex-direction: column;
        gap: 4px;
        text-align: center;
        padding: 0 16px;
    }

    .top-bar-right { gap: 10px; }
}

/* ================================================================
   RESPONSIVE — MOBILE (≤ 480px)
   ================================================================ */
@media (max-width: 480px) {
    .header-container { padding: 0 16px; }

    .logo-mark { width: 36px; height: 36px; font-size: 14px; }
    .logo-name { font-size: 21px; }
    .logo-tag  { font-size: 8.5px; }

    .top-bar-badge { display: none; }
}

/* ================================================================
   SECTION 1 — OUR SERVICES
   ================================================================ */
.services-section {
    padding: 90px 0 80px;
    background: #fdfaff;
    position: relative;
    overflow: hidden;
}

/* Subtle bg decoration */
.services-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(131,36,146,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.services-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Section Header ─────────────────────────────────────────── */
.sec-header {
    text-align: center;
    margin-bottom: 48px;
}

.sec-label {
    display: inline-block;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--clr-primary);
    background: var(--clr-primary-pale);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.sec-title {
    font-family: var(--font);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.2;
    letter-spacing: 0.01em;
    margin-bottom: 14px;
}

.sec-title em {
    font-style: italic;
    color: var(--clr-primary);
}

.sec-sub {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 400;
    color: var(--clr-muted);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

/* ── Category Tabs ──────────────────────────────────────────── */
.svc-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.svc-tab {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 22px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    color: var(--clr-muted);
    background: var(--clr-white);
    border: 1.5px solid var(--clr-border);
    border-radius: 50px;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: all var(--dur) var(--ease);
    outline: none;
}

.svc-tab:hover {
    color: var(--clr-primary);
    border-color: var(--clr-primary);
    background: var(--clr-primary-pale);
}

.svc-tab.is-active {
    background: var(--clr-primary);
    color: var(--clr-white);
    border-color: var(--clr-primary);
    box-shadow: 0 6px 20px rgba(131, 36, 146, 0.30);
}

.svc-tab svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.svc-tab.is-active svg { opacity: 1; }

/* ── Service Cards Grid ─────────────────────────────────────── */
.svc-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Hidden cards (filtered out) */
.svc-card.is-hidden {
    display: none;
}

/* ── Individual Card ────────────────────────────────────────── */
.svc-card {
    background: var(--clr-white);
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--clr-border-lt);
    box-shadow: 0 2px 12px rgba(131, 36, 146, 0.06);
    transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    display: flex;
    flex-direction: column;
}

.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(131, 36, 146, 0.16);
}

/* Card image */
.svc-card__img {
    height: 200px;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.svc-card:hover .svc-card__img {
    transform: scale(1.04);
}

/* Category badge on image */
.svc-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 50px;
    z-index: 2;
}

/* Image overlay for readability */
.svc-card__img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(20, 0, 30, 0.28) 0%,
        transparent 60%
    );
}

/* Card body */
.svc-card__body {
    padding: 20px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.svc-card__title {
    font-family: var(--font);
    font-size: 19px;
    font-weight: 700;
    color: var(--clr-dark);
    line-height: 1.25;
    letter-spacing: 0.01em;
}

.svc-card__tag {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: var(--clr-primary);
    letter-spacing: 0.05em;
    font-style: italic;
}

.svc-card__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 2px;
    flex: 1;
}

.svc-card__list li {
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--clr-muted);
    letter-spacing: 0.02em;
    padding-left: 14px;
    position: relative;
}

.svc-card__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 5px;
    background: var(--clr-primary);
    border-radius: 50%;
    opacity: 0.55;
}

/* Book Now CTA on card */
.svc-card__btn {
    display: inline-flex;
    align-items: center;
    margin-top: 12px;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 700;
    color: var(--clr-primary);
    letter-spacing: 0.06em;
    border-top: 1px solid var(--clr-border-lt);
    padding-top: 12px;
    transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
    gap: 4px;
}

.svc-card__btn:hover {
    color: var(--clr-primary-dk);
    gap: 8px;
}

/* ── View More / Less + Book CTA ───────────────────────────── */
.svc-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 44px;
    flex-wrap: wrap;
}

/* View More / Less toggle button */
.svc-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--clr-white);
    color: var(--clr-primary);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.06em;
    border: 2px solid var(--clr-primary);
    border-radius: 6px;
    cursor: pointer;
    transition: background var(--dur) var(--ease), color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
    outline: none;
}

.svc-toggle:hover {
    background: var(--clr-primary-pale);
    box-shadow: 0 4px 16px rgba(131, 36, 146, 0.18);
}

.svc-toggle__count {
    font-size: 13px;
    font-weight: 500;
    opacity: 0.75;
}

.svc-toggle__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--dur) var(--ease);
}

.svc-toggle[aria-expanded="true"] .svc-toggle__icon {
    transform: rotate(180deg);
}

/* Hide toggle when not needed */
.svc-toggle.is-hidden { display: none; }

/* Book CTA button */
.svc-book-cta {
    display: inline-flex;
    align-items: center;
    padding: 14px 28px;
    background: var(--clr-primary);
    color: var(--clr-white);
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.07em;
    border-radius: 6px;
    transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.svc-book-cta:hover {
    background: var(--clr-primary-dk);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(131, 36, 146, 0.36);
}

/* ── Services Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
    .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .services-section { padding: 60px 0; }
    .svc-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .services-wrap { padding: 0 18px; }
    .sec-header { margin-bottom: 32px; }
    .svc-tabs { gap: 6px; margin-bottom: 28px; }
    .svc-tab { padding: 8px 16px; font-size: 14px; }
}

@media (max-width: 480px) {
    .svc-grid { grid-template-columns: 1fr; }
    .svc-card__img { height: 220px; }
    .svc-tab svg { display: none; }
}

/* ================================================================
   SECTION 2 — REELS
   ================================================================ */
.reels-section {
    padding: 90px 0 80px;
    background: #0d0010;
    position: relative;
    overflow: hidden;
}

/* Bg glow accents */
.reels-section::before,
.reels-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.reels-section::before {
    width: 500px; height: 500px;
    top: -180px; left: -120px;
    background: radial-gradient(circle, rgba(131,36,146,0.22) 0%, transparent 70%);
}
.reels-section::after {
    width: 400px; height: 400px;
    bottom: -140px; right: -100px;
    background: radial-gradient(circle, rgba(131,36,146,0.18) 0%, transparent 70%);
}

.reels-section .sec-header { position: relative; z-index: 1; }
.reels-section .sec-label  { background: rgba(131,36,146,0.25); color: #d9a0f0; }
.reels-section .sec-title  { color: #fff; }
.reels-section .sec-sub    { color: rgba(255,255,255,0.6); }

.reels-wrap {
    max-width: 1340px;
    margin: 0 auto;
    padding: 0 28px;
    position: relative;
    z-index: 1;
}

/* ── Slider outer (arrows sit outside) ──────────────────────── */
.reels-slider-outer {
    position: relative;
    margin: 0 -10px;
    padding: 0 10px;
}

/* ── Individual reel slide ──────────────────────────────────── */
.reel-slide { padding: 0 10px; }

.reel-card {
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 9 / 16;
    cursor: pointer;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.reel-card:hover { transform: scale(1.02); box-shadow: 0 16px 48px rgba(131,36,146,0.45); }

/* Background photo */
.reel-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.reel-card:hover .reel-bg { transform: scale(1.06); }

/* Dark gradient overlay */
.reel-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 16px;
    background: linear-gradient(
        180deg,
        rgba(10,0,20,0.55)  0%,
        rgba(10,0,20,0.10) 35%,
        rgba(10,0,20,0.10) 55%,
        rgba(10,0,20,0.80) 100%
    );
}

/* Top row: tag + stats */
.reel-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.reel-tag {
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: var(--clr-primary);
    padding: 4px 10px;
    border-radius: 50px;
}

.reel-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
}

.reel-stats span {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.04em;
}

.reel-stats span svg { flex-shrink: 0; }
.reel-stats span:first-child svg { fill: #ff6b9d; }

/* Center play button */
.reel-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    background: rgba(255,255,255,0.18);
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
    outline: none;
}

.reel-play:hover,
.reel-card:hover .reel-play {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translate(-50%, -50%) scale(1.12);
}

/* Pulse ring animation */
.reel-play::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.35);
    animation: reelPulse 2s ease-in-out infinite;
}

@keyframes reelPulse {
    0%   { transform: scale(1);    opacity: 0.7; }
    50%  { transform: scale(1.18); opacity: 0.2; }
    100% { transform: scale(1);    opacity: 0.7; }
}

/* Bottom info */
.reel-bottom { text-align: left; }

.reel-title {
    font-family: var(--font);
    font-size: 17px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
    text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

.reel-desc {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.75);
    letter-spacing: 0.03em;
    line-height: 1.4;
}

/* ── Video Reel Card ────────────────────────────────────────── */
.reel-card--video .reel-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* Live tag variant */
.reel-tag--live {
    background: #e53935;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.live-dot {
    width: 6px;
    height: 6px;
    background: #fff;
    border-radius: 50%;
    flex-shrink: 0;
    animation: livePulse 1.2s ease-in-out infinite;
}

@keyframes livePulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Play/Pause + Mute controls wrapper */
.reel-controls {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

/* Mute toggle button */
.reel-mute-btn {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.45);
    border: 1.5px solid rgba(255,255,255,0.4);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.2s ease, border-color 0.2s ease;
    outline: none;
}

.reel-mute-btn:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
}

/* When video is playing — hide pulse ring on play btn */
.reel-card--video.is-playing .reel-play::after { animation: none; opacity: 0; }

/* ── Slick dot customisation for reels ─────────────────────── */
.reels-slider .slick-dots { bottom: -28px; }
.reels-slider .slick-dots li button::before {
    color: rgba(255,255,255,0.4);
    font-size: 8px;
}
.reels-slider .slick-dots li.slick-active button::before {
    color: var(--clr-primary);
}

/* ── Custom arrows ──────────────────────────────────────────── */
.reels-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131,36,146,0.22);
    border: 1.5px solid rgba(131,36,146,0.55);
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    outline: none;
}

.reels-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-50%) scale(1.1);
}

.reels-arrow svg { width: 20px; height: 20px; }
.reels-arrow--prev { left: -16px; }
.reels-arrow--next { right: -16px; }

/* ── Instagram CTA ──────────────────────────────────────────── */
.reels-cta {
    text-align: center;
    margin-top: 52px;
}

.insta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 30px;
    background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 50%, #fcb045 100%);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.05em;
    border-radius: 50px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
    box-shadow: 0 6px 24px rgba(131,36,146,0.4);
}

.insta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(131,36,146,0.55);
    opacity: 0.93;
}

.insta-btn svg { flex-shrink: 0; }

/* ── Reels Responsive ───────────────────────────────────────── */
@media (max-width: 900px) {
    .reels-arrow--prev { left: -6px; }
    .reels-arrow--next { right: -6px; }
    .reels-section { padding: 60px 0 70px; }
}

@media (max-width: 600px) {
    .reels-wrap { padding: 0 16px; }
    .reels-arrow { width: 38px; height: 38px; }
    .reels-arrow svg { width: 17px; height: 17px; }
    .reels-arrow--prev { left: -4px; }
    .reels-arrow--next { right: -4px; }
    .reel-slide { padding: 0 6px; }
}

/* ================================================================
   TESTIMONIALS SECTION
   ================================================================ */
.testimonials-section {
    background: linear-gradient(160deg, #1a0028 0%, #2d0044 50%, #1a0028 100%);
    padding: 0 0 0;
    position: relative;
    overflow: hidden;
}

/* Ambient glow blobs */
.testimonials-section::before,
.testimonials-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.testimonials-section::before {
    width: 600px; height: 600px;
    top: -200px; left: -200px;
    background: radial-gradient(circle, rgba(131,36,146,0.28) 0%, transparent 65%);
}
.testimonials-section::after {
    width: 500px; height: 500px;
    bottom: -150px; right: -150px;
    background: radial-gradient(circle, rgba(131,36,146,0.22) 0%, transparent 65%);
}

/* Wave decorations */
.testi-wave-top,
.testi-wave-bot {
    line-height: 0;
    position: relative;
    z-index: 2;
}
.testi-wave-top svg,
.testi-wave-bot svg { display: block; width: 100%; height: 50px; }

.testi-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 28px 70px;
    position: relative;
    z-index: 2;
}

/* Override sec-header colours for dark bg */
.testimonials-section .sec-label {
    background: rgba(131,36,146,0.3);
    color: #d9a0f0;
}
.testimonials-section .sec-title { color: #fff; }
.testimonials-section .sec-sub   { color: rgba(255,255,255,0.6); }

/* ── Overall Rating Bar ─────────────────────────────────────── */
.testi-rating-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-bottom: 48px;
    padding: 18px 28px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 14px;
    backdrop-filter: blur(10px);
    flex-wrap: wrap;
}

.rating-score {
    display: flex;
    align-items: center;
    gap: 12px;
}

.rating-num {
    font-family: var(--font);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}

.rating-stars {
    display: flex;
    gap: 3px;
}

.rating-stars svg {
    width: 20px;
    height: 20px;
    fill: #f5c518;
}

.rating-label {
    font-family: var(--font);
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    letter-spacing: 0.04em;
    font-style: italic;
}

.rating-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    background: rgba(131,36,146,0.25);
    border: 1px solid rgba(131,36,146,0.45);
    border-radius: 50px;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    color: #d9a0f0;
    letter-spacing: 0.04em;
}

.rating-badge svg { fill: #f5c518; flex-shrink: 0; }

/* ── Slider Outer ───────────────────────────────────────────── */
.testi-slider-outer {
    position: relative;
    margin: 0 -12px;
    padding: 0 12px;
}

.testi-slide { padding: 0 12px; }

/* ── Testimonial Card ───────────────────────────────────────── */
.testi-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 32px 28px 26px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.testi-card:hover {
    background: rgba(131,36,146,0.18);
    border-color: rgba(131,36,146,0.5);
    transform: translateY(-5px);
}

/* Big quote mark */
.testi-quote-icon {
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 0.6;
    color: var(--clr-primary);
    opacity: 0.55;
    user-select: none;
    margin-bottom: 4px;
}

/* Stars */
.testi-stars {
    display: flex;
    gap: 3px;
}

.testi-stars svg {
    width: 17px;
    height: 17px;
    fill: #f5c518;
}

/* Review text */
.testi-text {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.75;
    letter-spacing: 0.02em;
    font-style: italic;
    flex: 1;
}

/* Client row */
.testi-client {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}

/* Avatar circle */
.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-avatar--p { background: #832492; }
.testi-avatar--r { background: #b5179e; }
.testi-avatar--a { background: #5a189a; }
.testi-avatar--n { background: #c9184a; }
.testi-avatar--s { background: #7b2d8b; }
.testi-avatar--k { background: #9c27b0; }
.testi-avatar--v { background: #6a0572; }

.testi-info { flex: 1; }

.testi-name {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.testi-city {
    font-family: var(--font);
    font-size: 12.5px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
    font-style: italic;
}

.testi-treatment {
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 600;
    color: #d9a0f0;
    background: rgba(131,36,146,0.28);
    border: 1px solid rgba(131,36,146,0.4);
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-left: auto;
}

/* ── Slick dots for testimonials ────────────────────────────── */
.testi-slider .slick-dots { bottom: -36px; }
.testi-slider .slick-dots li button::before {
    color: rgba(255,255,255,0.35);
    font-size: 8px;
}
.testi-slider .slick-dots li.slick-active button::before {
    color: var(--clr-primary);
    transform: scale(1.5);
}

/* ── Custom Arrows ──────────────────────────────────────────── */
.testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 46px;
    height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(131,36,146,0.25);
    border: 1.5px solid rgba(131,36,146,0.5);
    border-radius: 50%;
    cursor: pointer;
    color: #fff;
    backdrop-filter: blur(8px);
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    outline: none;
}

.testi-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    transform: translateY(-50%) scale(1.1);
}

.testi-arrow svg { width: 20px; height: 20px; }
.testi-arrow--prev { left: -18px; }
.testi-arrow--next { right: -18px; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .testi-arrow--prev { left: -8px; }
    .testi-arrow--next { right: -8px; }
}

@media (max-width: 768px) {
    .testi-wrap { padding: 50px 18px 60px; }
    .testi-rating-bar { gap: 16px; padding: 14px 18px; }
    .rating-num { font-size: 34px; }
    .testi-arrow { width: 38px; height: 38px; }
    .testi-arrow svg { width: 17px; height: 17px; }
    .testi-arrow--prev { left: -4px; }
    .testi-arrow--next { right: -4px; }
}

@media (max-width: 480px) {
    .testi-card { padding: 24px 20px 20px; }
    .testi-quote-icon { font-size: 56px; }
    .testi-text { font-size: 15px; }
    .rating-score { flex-wrap: wrap; gap: 8px; }
    .testi-treatment { margin-left: 0; margin-top: 6px; }
}

/* ================================================================
   HOT DEALS SECTION
   ================================================================ */
.hotdeals-section {
    position: relative;
    background: linear-gradient(160deg, #180428 0%, #2d0845 40%, #1a0230 100%);
    padding: 0;
    overflow: hidden;
}

/* Wave decorations */
.hd-wave-top,
.hd-wave-bot {
    position: relative;
    line-height: 0;
    pointer-events: none;
}
.hd-wave-top svg,
.hd-wave-bot svg { display: block; width: 100%; height: 60px; }

/* Main wrap */
.hd-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 40px 70px;
}

/* Section header */
.hd-header {
    text-align: center;
    margin-bottom: 48px;
}
.hd-eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d9a8f0;
    background: rgba(131,36,146,0.25);
    border: 1px solid rgba(180,100,210,0.35);
    border-radius: 30px;
    padding: 5px 18px;
    margin-bottom: 14px;
}
.hd-title {
    font-family: var(--font);
    font-size: clamp(36px, 5vw, 58px);
    font-weight: 700;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 14px;
}
.hd-title span {
    color: var(--clr-primary-lt);
    font-style: italic;
}
.hd-subtitle {
    font-family: var(--font);
    font-size: clamp(15px, 2vw, 18px);
    font-weight: 400;
    color: rgba(255,255,255,0.65);
    max-width: 560px;
    margin: 0 auto;
}

/* Slider outer — holds arrows + slider */
.hd-slider-outer {
    position: relative;
    padding: 0 52px;
}

/* Deal cards */
.hd-card {
    padding: 0 10px;
    outline: none;
}
.hd-card__img-wrap {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.45);
    cursor: pointer;
    transition: transform 0.32s var(--ease), box-shadow 0.32s var(--ease);
}
.hd-card__img-wrap:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 48px rgba(0,0,0,0.55);
}
.hd-card__img-wrap img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.hd-card__img-wrap:hover img {
    transform: scale(1.04);
}

/* Overlay — bottom gradient + Claim Now button */
.hd-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,0,18,0.72) 0%, rgba(10,0,18,0.18) 38%, transparent 60%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 20px;
    opacity: 0.85;
    transition: opacity 0.3s var(--ease);
}
.hd-card__img-wrap:hover .hd-card__overlay {
    opacity: 1;
}

/* Claim Now button */
.hd-claim-btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #fff;
    background: var(--clr-primary);
    border: 2px solid rgba(255,255,255,0.25);
    border-radius: 50px;
    padding: 9px 28px;
    text-decoration: none;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
    box-shadow: 0 4px 18px rgba(131,36,146,0.5);
}
.hd-claim-btn:hover {
    background: var(--clr-primary-lt);
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 8px 28px rgba(131,36,146,0.65);
}

/* Custom arrows */
.hd-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid rgba(180,100,210,0.5);
    background: rgba(131,36,146,0.22);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hd-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary-lt);
    transform: translateY(-50%) scale(1.1);
}
.hd-arrow--prev { left: 0; }
.hd-arrow--next { right: 0; }

/* Slick dots override for hot deals */
.hd-slider-outer .slick-dots {
    bottom: -38px;
}
.hd-slider-outer .slick-dots li button::before {
    color: rgba(180,100,210,0.5);
    font-size: 9px;
}
.hd-slider-outer .slick-dots li.slick-active button::before {
    color: var(--clr-primary-lt);
    opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hd-wrap { padding: 40px 28px 60px; }
    .hd-slider-outer { padding: 0 44px; }
}

@media (max-width: 768px) {
    .hd-wrap { padding: 32px 18px 55px; }
    .hd-header { margin-bottom: 36px; }
    .hd-slider-outer { padding: 0 36px; }
    .hd-arrow { width: 38px; height: 38px; }
    .hd-card { padding: 0 7px; }
    .hd-claim-btn { font-size: 13px; padding: 8px 22px; }
}

@media (max-width: 480px) {
    .hd-slider-outer { padding: 0 28px; }
    .hd-arrow { width: 34px; height: 34px; }
    .hd-arrow svg { width: 18px; height: 18px; }
    .hd-card { padding: 0 5px; }
    .hd-card__overlay { padding-bottom: 14px; }
    .hd-claim-btn { font-size: 12px; padding: 7px 18px; letter-spacing: 0.8px; }
}

/* ================================================================
   COMPARE SERVICES SECTION
   ================================================================ */
.compare-section {
    background: #fff;
    padding: 80px 0 72px;
}

/* Wrap */
.compare-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.compare-header {
    margin-bottom: 52px;
}
.compare-eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 12px;
}
.compare-title {
    font-family: var(--font);
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.15;
    margin: 0 0 10px;
    max-width: 680px;
}
.compare-title span {
    color: var(--clr-primary);
    font-style: italic;
}
.compare-subtitle {
    font-family: var(--font);
    font-size: clamp(15px, 1.8vw, 18px);
    font-weight: 500;
    color: #666;
    margin: 0;
}

/* 4-column grid */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* Individual compare item */
.compare-item {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #f0e0f6;
    background: #fdfaff;
    transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
}
.compare-item:hover {
    box-shadow: 0 12px 40px rgba(131,36,146,0.13);
    transform: translateY(-4px);
}

/* Image pair */
.compare-item__images {
    position: relative;
    display: flex;
    height: 170px;
    overflow: hidden;
}
.compare-img-wrap {
    flex: 1;
    overflow: hidden;
    position: relative;
}
.compare-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    transition: transform 0.45s var(--ease);
}
.compare-item:hover .compare-img-wrap img {
    transform: scale(1.06);
}

/* VS badge */
.compare-vs-badge {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #1a1a2e;
    color: #fff;
    font-family: var(--font);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2.5px solid #fff;
    box-shadow: 0 3px 14px rgba(0,0,0,0.25);
    flex-shrink: 0;
}

/* Labels row */
.compare-item__labels {
    display: flex;
    padding: 16px 16px 4px;
    gap: 8px;
}
.compare-item__label {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}
.compare-item__label--right {
    text-align: right;
}
.compare-category {
    font-family: var(--font);
    font-size: 12px;
    font-weight: 500;
    color: #999;
    line-height: 1.3;
}
.compare-treatment {
    font-family: var(--font);
    font-size: 15px;
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.3;
}

/* Compare CTA button */
.compare-cta-btn {
    display: block;
    margin: 14px 16px 18px;
    margin-top: auto;
    padding: 11px 12px;
    border: 1.5px solid var(--clr-primary);
    border-radius: 8px;
    text-align: center;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: none;
    transition: background 0.22s var(--ease), color 0.22s var(--ease);
    letter-spacing: 0.3px;
}
.compare-cta-btn:hover {
    background: var(--clr-primary);
    color: #fff;
}

/* View All link */
.compare-view-all-wrap {
    text-align: left;
    padding-top: 4px;
}
.compare-view-all {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 600;
    color: var(--clr-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
    letter-spacing: 0.2px;
}
.compare-view-all:hover {
    color: var(--clr-primary-dk);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1100px) {
    .compare-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .compare-item__images { height: 160px; }
}

@media (max-width: 768px) {
    .compare-section { padding: 60px 0 56px; }
    .compare-wrap { padding: 0 18px; }
    .compare-header { margin-bottom: 36px; }
    .compare-grid { gap: 16px; }
    .compare-item__images { height: 145px; }
    .compare-vs-badge { width: 34px; height: 34px; font-size: 10px; }
    .compare-treatment { font-size: 14px; }
}

@media (max-width: 540px) {
    .compare-grid { grid-template-columns: 1fr; }
    .compare-item__images { height: 200px; }
    .compare-vs-badge { width: 36px; height: 36px; }
    .compare-item__labels { padding: 14px 14px 2px; }
    .compare-cta-btn { margin: 12px 14px 16px; font-size: 13px; }
}

/* ================================================================
   RECENT BLOGS SECTION
   ================================================================ */
.blogs-section {
    background: var(--clr-primary-pale);
    padding: 80px 0 90px;
}

/* Wrap */
.blogs-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header row */
.blogs-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 44px;
}
.blogs-eyebrow {
    display: inline-block;
    font-family: var(--font);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--clr-primary);
    margin-bottom: 10px;
}
.blogs-title {
    font-family: var(--font);
    font-size: clamp(32px, 4.5vw, 52px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.1;
    margin: 0 0 10px;
}
.blogs-title span {
    color: var(--clr-primary);
    font-style: italic;
}
.blogs-subtitle {
    font-family: var(--font);
    font-size: clamp(14px, 1.8vw, 17px);
    font-weight: 500;
    color: #666;
    margin: 0;
}
.blogs-view-all-btn {
    flex-shrink: 0;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--clr-primary);
    border: 2px solid var(--clr-primary);
    border-radius: 50px;
    padding: 10px 26px;
    text-decoration: none;
    transition: background 0.22s var(--ease), color 0.22s var(--ease);
    white-space: nowrap;
}
.blogs-view-all-btn:hover {
    background: var(--clr-primary);
    color: #fff;
}

/* Slider outer */
.blogs-slider-outer {
    position: relative;
    padding: 0 52px;
}

/* Blog card */
.blog-card {
    padding: 0 10px;
    outline: none;
}
.blog-card__img-link {
    display: block;
    text-decoration: none;
}
.blog-card__img-wrap {
    position: relative;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    aspect-ratio: 16 / 10;
}
.blog-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    display: block;
    transition: transform 0.45s var(--ease);
}
.blog-card:hover .blog-card__img-wrap img {
    transform: scale(1.06);
}

/* Category badge */
.blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 30px;
    color: #fff;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.blog-card__cat--hair    { background: rgba(131,36,146,0.88); }
.blog-card__cat--skin    { background: rgba(0,120,180,0.88); }
.blog-card__cat--wellness{ background: rgba(0,150,100,0.88); }

/* Card body */
.blog-card__body {
    background: #fff;
    border-radius: 0 0 12px 12px;
    padding: 22px 22px 24px;
    border: 1px solid var(--clr-border);
    border-top: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-shadow: 0 6px 24px rgba(131,36,146,0.07);
    transition: box-shadow 0.28s var(--ease);
}
.blog-card:hover .blog-card__body {
    box-shadow: 0 12px 36px rgba(131,36,146,0.14);
}

/* Meta row */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
}
.blog-date,
.blog-read-time {
    font-family: var(--font);
    font-size: 13px;
    font-weight: 500;
    color: #999;
    display: flex;
    align-items: center;
    gap: 5px;
}
.blog-date svg { color: var(--clr-primary); flex-shrink: 0; }
.blog-read-time::before {
    content: '·';
    margin-right: 0;
}

/* Title */
.blog-card__title {
    font-family: var(--font);
    font-size: clamp(17px, 2vw, 20px);
    font-weight: 700;
    color: #1a1a2e;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Excerpt */
.blog-card__excerpt {
    font-family: var(--font);
    font-size: 14.5px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More link */
.blog-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font);
    font-size: 14px;
    font-weight: 700;
    color: var(--clr-primary);
    text-decoration: none;
    margin-top: 4px;
    transition: gap 0.2s var(--ease), color 0.2s;
}
.blog-card__link:hover {
    gap: 10px;
    color: var(--clr-primary-dk);
}

/* Custom arrows */
.blog-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--clr-border);
    background: #fff;
    color: var(--clr-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.22s var(--ease), border-color 0.22s var(--ease), transform 0.22s var(--ease);
    box-shadow: 0 4px 16px rgba(131,36,146,0.12);
}
.blog-arrow:hover {
    background: var(--clr-primary);
    border-color: var(--clr-primary);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.blog-arrow--prev { left: 0; }
.blog-arrow--next { right: 0; }

/* Slick dots override */
.blogs-slider-outer .slick-dots {
    bottom: -36px;
}
.blogs-slider-outer .slick-dots li button::before {
    color: var(--clr-border);
    font-size: 9px;
}
.blogs-slider-outer .slick-dots li.slick-active button::before {
    color: var(--clr-primary);
    opacity: 1;
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
    .blogs-wrap { padding: 0 28px; }
    .blogs-slider-outer { padding: 0 44px; }
}

@media (max-width: 768px) {
    .blogs-section { padding: 60px 0 75px; }
    .blogs-wrap { padding: 0 18px; }
    .blogs-header { flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
    .blogs-slider-outer { padding: 0 36px; }
    .blog-card { padding: 0 7px; }
    .blog-arrow { width: 38px; height: 38px; }
    .blog-card__body { padding: 18px 18px 20px; }
}

@media (max-width: 480px) {
    .blogs-slider-outer { padding: 0 28px; }
    .blog-arrow { width: 34px; height: 34px; }
    .blog-card { padding: 0 5px; }
    .blog-card__body { padding: 16px 16px 18px; gap: 8px; }
    .blog-card__excerpt { -webkit-line-clamp: 3; line-clamp: 3; }
}

/* ================================================================
   SITE FOOTER
   ================================================================ */
.site-footer {
    background: #0f0118;
    color: rgba(255,255,255,0.75);
    font-family: var(--font);
}

/* Wave at top */
.footer-wave {
    line-height: 0;
    pointer-events: none;
}
.footer-wave svg { display: block; width: 100%; height: 70px; }

/* Main content area */
.footer-main {
    padding: 60px 0 50px;
}
.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 2fr 1.4fr 1.4fr 1.5fr;
    gap: 48px;
    align-items: start;
}

/* ── Column 1: Brand ─────────────────────────────────── */
.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 18px;
}
.footer-logo__cosmo {
    font-size: 30px;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.5px;
}
.footer-logo__looks {
    font-size: 30px;
    font-weight: 300;
    font-style: italic;
    color: var(--clr-primary-lt);
    letter-spacing: -0.5px;
}

.footer-about {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.75;
    color: rgba(255,255,255,0.62);
    margin: 0 0 22px;
}
.footer-about strong {
    color: rgba(255,255,255,0.88);
    font-weight: 600;
}

.footer-cta-btn {
    display: inline-block;
    font-family: var(--font);
    font-size: 13.5px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--clr-primary-lt);
    border: 2px solid var(--clr-primary-lt);
    border-radius: 50px;
    padding: 10px 26px;
    text-decoration: none;
    transition: background 0.22s var(--ease), color 0.22s var(--ease);
    margin-bottom: 28px;
}
.footer-cta-btn:hover {
    background: var(--clr-primary-lt);
    color: #fff;
}

/* Quick links grid */
.footer-quick-links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 16px;
}
.footer-quick-links a {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s;
    padding: 2px 0;
}
.footer-quick-links a:hover { color: var(--clr-primary-lt); }

/* ── Column 2: Links ─────────────────────────────────── */
.footer-col--links {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-group__title {
    font-family: var(--font);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(180,100,210,0.2);
}

/* Social links */
.footer-social-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.62);
    text-decoration: none;
    transition: color 0.2s var(--ease);
}
.footer-social-link svg { flex-shrink: 0; color: var(--clr-primary-lt); }
.footer-social-link:hover { color: #fff; }

/* Service link list */
.footer-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-link-list a {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255,255,255,0.58);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
    display: block;
}
.footer-link-list a:hover {
    color: var(--clr-primary-lt);
    padding-left: 6px;
}

/* ── Column 3: Clinics ───────────────────────────────── */
.footer-clinic-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-clinic {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.footer-clinic__icon {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--clr-primary-lt);
}
.footer-clinic strong {
    display: block;
    font-size: 14.5px;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2px;
}
.footer-clinic span {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255,255,255,0.48);
    line-height: 1.5;
}

/* ── Column 4: Contact ───────────────────────────────── */
.footer-col--contact {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.footer-contact-block {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.footer-contact-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(131,36,146,0.18);
    border: 1px solid rgba(180,100,210,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--clr-primary-lt);
}
.footer-contact-label {
    display: block;
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 5px;
}

/* Boxed phone number */
.footer-phone-box {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: var(--clr-primary-lt);
    border: 1.5px solid rgba(180,100,210,0.4);
    border-radius: 6px;
    padding: 5px 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: border-color 0.2s, color 0.2s;
}
.footer-phone-box:hover {
    border-color: var(--clr-primary-lt);
    color: #fff;
}

.footer-address {
    font-style: normal;
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.58);
    line-height: 1.65;
}

.footer-email-link {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-email-link:hover { color: var(--clr-primary-lt); }

.footer-hours {
    font-size: 13.5px;
    font-weight: 400;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

/* ── Bottom Bar ──────────────────────────────────────── */
.footer-bottom {
    background: rgba(0,0,0,0.35);
    border-top: 1px solid rgba(180,100,210,0.12);
    padding: 18px 40px;
}
.footer-bottom__inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-copyright {
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255,255,255,0.38);
}
.footer-bottom-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.footer-bottom-nav a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    padding: 0 10px;
    border-right: 1px solid rgba(255,255,255,0.12);
    transition: color 0.2s;
}
.footer-bottom-nav a:last-child { border-right: none; }
.footer-bottom-nav a:hover { color: var(--clr-primary-lt); }

/* ── Responsive ─────────────────────────────────────── */
@media (max-width: 1100px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-quick-links { max-width: 600px; }
}

@media (max-width: 768px) {
    .footer-main { padding: 48px 0 40px; }
    .footer-container {
        grid-template-columns: 1fr 1fr;
        padding: 0 20px;
        gap: 28px;
    }
    .footer-col--brand { grid-column: 1 / -1; }
    .footer-bottom { padding: 16px 20px; }
    .footer-bottom__inner { flex-direction: column; align-items: flex-start; gap: 10px; }
}

@media (max-width: 540px) {
    .footer-container { grid-template-columns: 1fr; }
    .footer-logo__cosmo, .footer-logo__looks { font-size: 26px; }
    .footer-bottom-nav { flex-wrap: wrap; gap: 4px; }
    .footer-bottom-nav a { font-size: 12px; padding: 0 8px; }
}

/* ================================================================
   SCROLL-REVEAL ANIMATIONS
   ================================================================ */

/* Scroll offset so anchor links clear the sticky header */
html {
    scroll-padding-top: calc(var(--topbar-h) + var(--header-h) + 12px);
}

/* Base hidden state for each reveal direction */
[data-reveal] {
    opacity: 0;
    transition:
        opacity  0.75s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal="fade-up"]    { transform: translateY(52px); }
[data-reveal="fade-down"]  { transform: translateY(-32px); }
[data-reveal="fade-left"]  { transform: translateX(-52px); }
[data-reveal="fade-right"] { transform: translateX(52px); }
[data-reveal="zoom-in"]    { transform: scale(0.88); }
[data-reveal="fade"]       { transform: none; }

/* Stagger delays */
[data-delay="80"]  { transition-delay:  80ms; }
[data-delay="150"] { transition-delay: 150ms; }
[data-delay="220"] { transition-delay: 220ms; }
[data-delay="300"] { transition-delay: 300ms; }
[data-delay="380"] { transition-delay: 380ms; }
[data-delay="460"] { transition-delay: 460ms; }
[data-delay="540"] { transition-delay: 540ms; }

/* Revealed state — resets both opacity and any transform */
[data-reveal].is-visible {
    opacity: 1;
    transform: none;
}

/* Honour reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
    [data-reveal] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ================================================================
   SKELETON LOADERS
   ================================================================ */

@keyframes sk-shimmer {
    0%   { background-position: -600px 0; }
    100% { background-position:  600px 0; }
}

/* Base shimmer block — light purple for pale sections */
.sk-block {
    border-radius: 6px;
    background: linear-gradient(
        90deg,
        #e5cff0 25%, #f3e4fa 50%, #e5cff0 75%
    );
    background-size: 600px 100%;
    animation: sk-shimmer 1.6s linear infinite;
}

/* Ghost shimmer for dark-bg sections */
.sk-hero .sk-block,
.sk-testi .sk-block,
.sk-hd    .sk-block {
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0.06) 25%,
        rgba(255,255,255,0.14) 50%,
        rgba(255,255,255,0.06) 75%
    );
    background-size: 600px 100%;
}

/* Overlay wrapper — sits above each section's real content */
.sk-overlay {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.page-loaded .sk-overlay { opacity: 0; }

/* Sections need relative positioning (hero/testi/hd already have it) */
.services-section,
.reels-section,
.compare-section,
.blogs-section { position: relative; }

/* ──────── HERO ──────────────────────────────────────────── */
.sk-hero {
    background: #0d0010;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 60px 56px;
    gap: 20px;
}
.sk-hero-text { display: flex; flex-direction: column; gap: 14px; max-width: 520px; }
.sk-hero-eyebrow { height: 14px; width: 160px; border-radius: 20px; }
.sk-hero-h1a     { height: 44px; width: 380px; }
.sk-hero-h1b     { height: 44px; width: 280px; }
.sk-hero-sub     { height: 15px; width: 340px; margin-top: 8px; }
.sk-hero-sub2    { height: 15px; width: 260px; }
.sk-hero-btns    { display: flex; gap: 16px; margin-top: 10px; }
.sk-hero-btn     { height: 50px; width: 196px; border-radius: 50px; }
.sk-hero-foot    { display: flex; align-items: center; justify-content: space-between; }
.sk-hero-count   { height: 28px; width: 80px; border-radius: 4px; }
.sk-dots         { display: flex; gap: 8px; }
.sk-dot          { width: 10px; height: 10px; border-radius: 50%; }

/* ──────── SERVICES ──────────────────────────────────────── */
.sk-services {
    background: #fff;
    padding: 80px 40px 64px;
}
.sk-sec-hdr {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; margin-bottom: 36px;
}
.sk-eyebrow { height: 13px; width: 120px; border-radius: 20px; }
.sk-title   { height: 38px; width: 300px; }
.sk-sub     { height: 14px; width: 440px; margin-top: 4px; }
.sk-sub2    { height: 14px; width: 320px; }
.sk-tabs-row {
    display: flex; justify-content: center;
    gap: 12px; margin-bottom: 36px;
}
.sk-tab { height: 44px; width: 136px; border-radius: 50px; }
.sk-grid-4 {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 24px; max-width: 1300px; margin: 0 auto;
}
.sk-card-wrap { border-radius: 14px; overflow: hidden; display: flex; flex-direction: column; }
.sk-card-img  { height: 180px; width: 100%; border-radius: 14px 14px 0 0; }
.sk-card-body { padding: 16px; display: flex; flex-direction: column; gap: 10px; background: #fafafa; }
.sk-tag   { height: 12px; width: 56px; border-radius: 20px; }
.sk-h3    { height: 20px; width: 80%; }
.sk-line  { height: 12px; width: 92%; }
.sk-line2 { height: 12px; width: 66%; }
.sk-btn   { height: 38px; width: 130px; border-radius: 50px; margin-top: 4px; }

/* ──────── REELS ─────────────────────────────────────────── */
.sk-reels {
    background: #f7eefb;
    padding: 72px 40px 64px;
}
.sk-reels-row { display: flex; gap: 16px; margin-top: 36px; }
.sk-reel-card { flex: 1; border-radius: 16px; aspect-ratio: 9/16; max-height: 340px; }

/* ──────── TESTIMONIALS ──────────────────────────────────── */
.sk-testi {
    background: #1a0028;
    padding: 80px 40px 72px;
}
.sk-testi-hdr {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; margin-bottom: 36px;
}
.sk-rating-bar-sk {
    display: flex; align-items: center; gap: 32px;
    max-width: 900px; margin: 0 auto 36px;
}
.sk-rating-score-box { height: 72px; width: 140px; border-radius: 14px; flex-shrink: 0; }
.sk-rating-bars { flex: 1; display: flex; flex-direction: column; gap: 10px; }
.sk-bar-row { display: flex; align-items: center; gap: 10px; }
.sk-bar-label { height: 12px; width: 18px; }
.sk-bar-track { height: 10px; flex: 1; border-radius: 6px; }
.sk-bar-count { height: 12px; width: 28px; }
.sk-testi-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1300px; margin: 0 auto;
}
.sk-tcard {
    border-radius: 16px; padding: 22px;
    display: flex; flex-direction: column; gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
}
.sk-stars      { height: 16px; width: 100px; }
.sk-p1         { height: 13px; width: 100%; }
.sk-p2         { height: 13px; width: 88%; }
.sk-p3         { height: 13px; width: 72%; }
.sk-avatar-row { display: flex; align-items: center; gap: 12px; margin-top: 6px; }
.sk-avatar     { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.sk-name       { height: 14px; width: 110px; }
.sk-city       { height: 12px; width: 72px; margin-top: 4px; }

/* ──────── HOT DEALS ─────────────────────────────────────── */
.sk-hd {
    background: #180428;
    padding: 80px 40px 72px;
}
.sk-hd-hdr {
    display: flex; flex-direction: column; align-items: center;
    gap: 12px; margin-bottom: 40px;
}
.sk-hd-title { height: 46px; width: 240px; }
.sk-hd-grid  {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; max-width: 1300px; margin: 0 auto;
}
.sk-hd-card { border-radius: 14px; aspect-ratio: 3/4; }

/* ──────── COMPARE ───────────────────────────────────────── */
.sk-compare {
    background: #fff;
    padding: 80px 40px 72px;
}
.sk-compare-grid {
    display: grid; grid-template-columns: repeat(4, 1fr);
    gap: 20px; max-width: 1280px; margin: 0 auto;
}
.sk-cmp-card {
    border-radius: 14px; overflow: hidden;
    display: flex; flex-direction: column;
    border: 1px solid #f0e0f6;
}
.sk-cmp-imgs { height: 170px; width: 100%; }
.sk-cmp-body { padding: 14px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.sk-cmp-cat  { height: 11px; width: 130px; }
.sk-cmp-name { height: 18px; width: 90%; }
.sk-cmp-btn  { height: 38px; width: 100%; border-radius: 8px; margin-top: auto; }

/* ──────── BLOGS ─────────────────────────────────────────── */
.sk-blogs {
    background: #f7eefb;
    padding: 80px 40px 88px;
}
.sk-blogs-hdr {
    display: flex; justify-content: space-between; align-items: flex-end;
    margin-bottom: 36px; max-width: 1300px; margin-left: auto; margin-right: auto;
}
.sk-blogs-left { display: flex; flex-direction: column; gap: 10px; }
.sk-blogs-btn  { height: 42px; width: 136px; border-radius: 50px; }
.sk-grid-3 {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px; max-width: 1300px; margin: 0 auto;
}
.sk-blog-img  { height: 220px; width: 100%; border-radius: 14px 14px 0 0; }
.sk-blog-body {
    padding: 20px; display: flex; flex-direction: column; gap: 10px;
    background: #fff; border-radius: 0 0 14px 14px;
}
.sk-blog-meta   { display: flex; gap: 16px; margin-top: 4px; }
.sk-meta-item   { height: 11px; width: 80px; }

/* ──────── Responsive ────────────────────────────────────── */
@media (max-width: 1100px) {
    .sk-compare-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .sk-grid-4    { grid-template-columns: repeat(2, 1fr); }
    .sk-hd-grid   { grid-template-columns: repeat(2, 1fr); }
    .sk-grid-3    { grid-template-columns: repeat(2, 1fr); }
    .sk-testi-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .sk-hero { padding: 0 24px 48px; }
    .sk-hero-h1a { max-width: 90%; }
    .sk-hero-h1b { max-width: 70%; }
    .sk-hero-sub, .sk-hero-sub2 { max-width: 85%; }
    .sk-sub, .sk-sub2 { max-width: 90%; }
    .sk-rating-bar-sk { flex-direction: column; align-items: flex-start; gap: 20px; }
}
@media (max-width: 640px) {
    .sk-grid-4    { grid-template-columns: 1fr; }
    .sk-hd-grid   { grid-template-columns: 1fr; }
    .sk-grid-3    { grid-template-columns: 1fr; }
    .sk-testi-row { grid-template-columns: 1fr; }
    .sk-compare-grid { grid-template-columns: 1fr; }
    .sk-reels-row .sk-reel-card:nth-child(n+3) { display: none; }
    .sk-tabs-row  .sk-tab:nth-child(n+4)       { display: none; }
}

/* Reduced motion — skip skeleton fade entirely */
@media (prefers-reduced-motion: reduce) {
    .sk-overlay { display: none; }
}
