/* =========================================
   1. GLOBAL RESET
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: var(--bg-deep);
    font-family: var(--font-body);
    color: var(--text-white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

.container {
    width: var(--container-width);
    max-width: var(--container-max);
    margin: 0 auto;
    height: 100%;
}

.mt-30 {
    margin-top: 30px;
    display: inline-block;
}

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
/* Wrapper */
.vibe-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 2px solid;
    border-image: var(--gold-gradient) 1;
}

/* Top Bar */
.top-layer {
    height: var(--h-top);
    background: var(--bg-black);
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-sm);
    text-transform: uppercase;
    color: var(--text-muted);
}

.flex-edge {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left i {
    color: var(--gold-flat);
    margin-right: var(--gap-xs);
}

.top-right {
    display: flex;
    align-items: center;
    gap: var(--gap-md);
}

.top-right i {
    font-size: var(--fs-icon-sm);
}

.top-right i:hover {
    color: var(--text-white);
    transform: scale(1.2);
    transition: var(--transition-fast);
}

.divider {
    height: 12px;
    width: 1px;
    background: var(--border-color);
}

/* Main Bar */
.main-layer {
    height: var(--h-main);
    background: var(--bg-glass);
    backdrop-filter: blur(var(--blur-amount));
    box-shadow: var(--shadow-glass);
}

.flex-center-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
}

/* Logo Design */
.brand-core {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
}

.img-ring {
    height: 50px;
    width: 50px;
    border-radius: var(--radius-circle);
    padding: 3px;
    background: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-ring img {
    height: 100%;
    width: 100%;
    border-radius: var(--radius-circle);
    object-fit: cover;
    border: 2px solid var(--bg-black);
}

.text-stack {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: var(--fs-xxl);
    font-weight: 700;
    color: var(--text-white);
    letter-spacing: var(--ls-sm);
    text-shadow: var(--shadow-text);
}

.brand-tag {
    font-size: var(--fs-xs);
    letter-spacing: var(--ls-md);
    text-transform: uppercase;
    margin-top: 3px;
}

/* Navigation Links */
.nav-side {
    display: flex;
    align-items: center;
    gap: var(--gap-lg);
}

.nav-side.left {
    margin-right: auto;
}

.nav-side.right {
    margin-left: auto;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0.7;
}

.nav-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.main-txt {
    font-size: var(--fs-reg);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: var(--ls-sm);
}

.sub-txt {
    font-size: var(--fs-xs);
    color: var(--gold-flat);
    font-style: italic;
    opacity: 0;
    transition: var(--transition-fast);
    position: absolute;
    bottom: -12px;
}

.nav-item:hover .sub-txt {
    opacity: 1;
    bottom: -15px;
}

/* Header Button (Pill Shape) */
.btn-luxury {
    padding: 10px 25px;
    background: var(--gold-gradient);
    color: var(--bg-black);
    font-weight: 700;
    font-size: var(--fs-md);
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    box-shadow: 0 0 15px var(--gold-shadow);
    letter-spacing: var(--ls-sm);
}

.btn-luxury:hover {
    filter: brightness(1.2);
    box-shadow: 0 0 25px var(--gold-hover-glow);
}

/* Mobile Hamburger */
.mobile-menu-btn {
    display: none;
    cursor: pointer;
}

.dot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.dot-grid span {
    width: 6px;
    height: 6px;
    background: var(--gold-flat);
    border-radius: var(--radius-circle);
    transition: var(--transition-fast);
}

.mobile-menu-btn:hover .dot-grid span {
    background: var(--text-white);
}

/* Mobile Menu Canvas */
.mobile-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--bg-panel);
    z-index: 2000;
    overflow: hidden;
    transition: 0.5s ease-in-out;
    display: flex;
    flex-direction: column;
}

.mobile-canvas.active {
    height: 100vh;
}

.canvas-head {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    border-bottom: 1px solid var(--border-color);
}

.canvas-logo {
    font-family: var(--font-logo);
    font-size: var(--fs-logo-xl);
    color: var(--text-white);
}

.canvas-close {
    font-size: 35px;
    color: var(--gold-flat);
    cursor: pointer;
}

.canvas-links {
    padding: 40px 5%;
}

.canvas-links li {
    border-bottom: 1px solid var(--border-faint);
    margin-bottom: 20px;
}

.canvas-links a {
    font-family: var(--font-logo);
    font-size: var(--fs-mob-link);
    color: var(--text-grey);
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    text-transform: uppercase;
}

.canvas-links span {
    /* font-size: var(--fs-icon-sm); */
    color: var(--gold-flat);
    font-family: var(--font-body);
}

.canvas-links a:hover {
    color: var(--text-white);
    padding-left: 10px;
}

.btn-canvas {
    margin: 0 5%;
    padding: 18px;
    text-align: center;
    background: var(--gold-gradient);
    color: var(--bg-black);
    font-weight: 700;
    text-transform: uppercase;
    display: block;
    width: 90%;
}

/* =========================================
   3. LANDING PAGE / HERO SECTION
   ========================================= */
.hero-container {
    position: relative;
    width: 100%;
    height: calc(100vh - var(--h-desk-total));
    display: flex;
    overflow: hidden;
    background: var(--bg-black);
}

.split-panel {
    position: relative;
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all var(--transition-slow) var(--ease-out-expo);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    border-right: 1px solid var(--border-faint);
}

.side-men {
    background-image: var(--img-men);
}

.side-women {
    background-image: var(--img-women);
}

/* Overlays */
.panel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-medium);
    transition: 0.5s;
}

/* Hero Content */
.panel-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: 0.5s;
    padding: 20px;
}

.hero-title {
    font-family: var(--font-logo);
    font-size: var(--fs-hero-title);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: var(--ls-lg);
    margin-bottom: 10px;
    text-shadow: var(--shadow-glass);
}

.hero-sub {
    font-family: var(--font-body);
    font-size: var(--fs-hero-sub);
    color: var(--gold-flat);
    letter-spacing: var(--ls-md);
    text-transform: uppercase;
    margin-bottom: 35px;
    display: block;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* --- Hero Interactions --- */
.hero-container:hover .split-panel {
    opacity: 0.4;
    filter: grayscale(80%);
}

.hero-container .split-panel:hover {
    flex: 2.5;
    opacity: 1;
    filter: grayscale(0%);
}

.hero-container .split-panel:hover .panel-overlay {
    background: var(--overlay-light);
}

/* --- Center Badge --- */
.center-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    pointer-events: none;
}

.badge-ring {
    height: 60px;
    width: 60px;
    border-radius: var(--radius-circle);
    background: var(--bg-black);
    border: 2px solid var(--gold-flat);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-flat);
    font-size: 20px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.badge-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* --- Hero Button (Glass + Gold) --- */
.btn-hero-creative {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 35px;
    background: var(--glass-surface);
    backdrop-filter: blur(5px);
    border: 1px solid var(--glass-border);
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: var(--fs-md);
    font-weight: 700;
    transition: all var(--transition-smooth) ease;
    overflow: hidden;
}

.btn-hero-creative::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-gradient);
    transition: var(--transition-smooth) ease;
    z-index: -1;
}

.btn-hero-creative:hover {
    border-color: var(--gold-flat);
    color: var(--bg-black);
    box-shadow: 0 0 20px var(--gold-shadow);
}

.btn-hero-creative:hover::before {
    width: 100%;
}

.btn-hero-creative i {
    transition: 0.3s;
}

.btn-hero-creative:hover i {
    transform: translateX(5px);
}

/* =========================================
   4. WELCOME SECTION
   ========================================= */
.welcome-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-xl);
    align-items: center;
}

.gold-tag {
    color: var(--gold-flat);
    font-size: var(--fs-sm);
    letter-spacing: var(--ls-md);
    text-transform: uppercase;
    display: block;
    margin-bottom: 10px;
}

.section-head {
    font-family: var(--font-logo);
    font-size: var(--fs-section-head);
    line-height: 1.1;
    margin-bottom: 25px;
}

.gold-text {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.body-text {
    color: var(--text-grey);
    line-height: 1.8;
    font-size: var(--fs-lg);
    margin-bottom: 30px;
}

/* Feature Icons */
.features-icon-row {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.feature-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-white);
}

.feature-box i {
    font-size: 24px;
    color: var(--gold-flat);
}

.feature-box span {
    font-size: var(--fs-md);
    text-transform: uppercase;
    letter-spacing: var(--ls-sm);
    text-align: center;
}

/* Welcome Image */
.welcome-image {
    position: relative;
}

.welcome-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    filter: sepia(20%);
}

.floating-box {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: #111;
    padding: 20px 40px;
    border: 1px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-strong);
}

.floating-box span {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-flat);
}

.floating-box small {
    color: var(--text-muted);
    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 2px;
}

/* =========================================
   5. RESPONSIVE DESIGN
   ========================================= */
.spacer-block {
    height: var(--h-desk-total);
}

@media (max-width: 1024px) {

    /* Header Adjustments */
    .nav-side {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .brand-core {
        position: static;
        transform: none;
    }

    .flex-center-split {
        justify-content: space-between;
    }

    .top-layer {
        height: var(--h-top-mob);
        font-size: var(--fs-xs);
    }

    .main-layer {
        height: var(--h-main-mob);
    }

    .spacer-block {
        height: var(--h-mob-total);
    }

    .img-ring {
        height: 40px;
        width: 40px;
    }

    .brand-name {
        font-size: var(--fs-mob-head);
    }

    .brand-tag {
        display: none;
    }

    /* Hero Adjustments */
    .hero-container {
        flex-direction: column;
        height: auto;
    }

    .split-panel {
        height: 50vh;
        width: 100%;
        flex: none !important;
    }

    .hero-container:hover .split-panel {
        opacity: 1;
        filter: none;
    }

    .hero-title {
        font-size: var(--fs-hero-title-mob);
    }

    .hero-sub {
        opacity: 1;
        transform: translateY(0);
        margin-bottom: 20px;
    }

    /* Welcome Adjustments */
    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-head {
        font-size: 2.5rem;
    }

    .welcome-image img {
        height: 300px;
    }

    .floating-box {
        left: 0;
        bottom: -20px;
        width: 150px;
    }
}


/* =========================================
    SERVICES MENU SECTION 
    ========================================= */
.services-menu-section {
    position: relative;
    padding: 120px 0;
    background-image: var(--bg-services-men);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transition: background-image 0.8s ease-in-out;
    overflow: hidden;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.relative-z {
    position: relative;
    z-index: 2;
}

.text-center {
    text-align: center;
}

.mb-60 {
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--font-logo);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin: 10px 0;
    color: var(--text-white);
}

.section-sub {
    color: var(--text-grey);
    font-family: var(--font-body);
    letter-spacing: 1px;
}

.menu-glass-container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    padding: 12px 30px;
    font-family: var(--font-logo);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: 0.4s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tab-btn i {
    font-size: 16px;
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--gold-gradient);
    color: var(--bg-black);
    box-shadow: 0 0 20px var(--gold-shadow);
}

.menu-pane {
    display: none;
    animation: fadeIn 0.6s ease;
}

.menu-pane.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    position: relative;
}

.menu-info {
    flex: 1;
}

.menu-title {
    font-family: var(--font-logo);
    font-size: 1.4rem;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.menu-desc {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-grey);
    font-style: italic;
}

.menu-separator {
    flex: 1;
    border-bottom: 2px dotted rgba(212, 175, 55, 0.3);
    margin: 0 15px;
    margin-bottom: 8px;
    opacity: 0.6;
}

.menu-price {
    font-family: var(--font-logo);
    font-size: 1.6rem;
    color: var(--gold-flat);
    font-weight: 700;
    letter-spacing: 1px;
}

.menu-price span {
    font-size: 1rem;
}

/* For the '+' sign */

.menu-footer {
    text-align: center;
    margin-top: 50px;
}

@media (max-width: 768px) {
    .services-menu-section {
        padding: 80px 0;
    }

    .menu-glass-container {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .menu-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .menu-separator {
        display: none;
    }

    .menu-price {
        align-self: flex-end;
        margin-top: -20px;
    }
}



/* =========================================
   LOOKBOOK SECTION (Updated for HTML Images)
   ========================================= */
.lookbook-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
}

.mb-60 {
    margin-bottom: 60px;
}

.mt-60 {
    margin-top: 60px;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: none;
    color: var(--text-grey);
    font-family: var(--font-logo);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    cursor: pointer;
    padding: 5px 15px;
    position: relative;
    transition: var(--transition-fast);
}

.filter-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gold-flat);
    transition: var(--transition-fast);
    transform: translateX(-50%);
}

.filter-btn:hover,
.filter-btn.active {
    color: var(--text-white);
}

.filter-btn:hover::after,
.filter-btn.active::after {
    width: 80%;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: var(--gap-md);
}

.grid-item.tall {
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.grid-item {
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    cursor: crosshair;
    transition: transform 0.4s, opacity 0.4s;
}

.grid-item.hidden {
    transform: scale(0.8);
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s var(--ease-out-expo);
}

.grid-item:hover .gallery-img {
    transform: scale(1.1);
}

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.9) 0%, rgba(5, 5, 5, 0.1) 100%);
    display: flex;
    align-items: flex-end;
    padding: 30px;
    z-index: 1;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-smooth) var(--ease-out-expo);
}

.grid-item:hover .item-overlay {
    opacity: 1;
    transform: translateY(0);
}

.item-details {
    text-align: left;
    width: 100%;
}

.item-cat {
    display: block;
    font-size: var(--fs-xs);
    color: var(--gold-flat);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s 0.1s;
}

.item-title {
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s 0.2s;
}

.item-stylist {
    display: block;
    font-size: var(--fs-sm);
    color: var(--text-grey);
    font-style: italic;
    opacity: 0;
    transform: translateY(10px);
    transition: 0.3s 0.3s;
}

.grid-item:hover .item-cat,
.grid-item:hover .item-title,
.grid-item:hover .item-stylist {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }

    .grid-item.wide {
        grid-column: span 1;
    }
}

@media (max-width: 600px) {
    .masonry-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .grid-item.tall {
        grid-row: span 1;
    }

    .grid-item.wide {
        grid-column: span 1;
    }

    .gallery-filters {
        gap: 5px;
    }

    .filter-btn {
        font-size: 11px;
        padding: 5px 10px;
    }
}




/* =========================================
   TEAM SECTION (Cinematic Accordion)
   ========================================= */
.team-accordion-section {
    padding: 100px 0;
    background: #000;
    overflow: hidden;
}

.container-fluid {
    width: 96%;
    max-width: 1600px;
    margin: 0 auto;
}

.mb-40 {
    margin-bottom: 40px;
}

/* --- THE ACCORDION CONTAINER --- */
.masters-gallery {
    display: flex;
    height: 600px;
    /* Fixed Height for cinematic look */
    gap: 10px;
    width: 100%;
}

/* --- THE INDIVIDUAL PANEL --- */
.master-panel {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: top center;
    border-radius: 40px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1), filter 0.5s;
    filter: grayscale(100%) brightness(0.7);
}

.master-panel:hover {
    flex: 4;
    filter: grayscale(0%) brightness(1);
}

.masters-gallery:hover .master-panel:not(:hover) {
    filter: grayscale(100%) brightness(0.4);
}

.panel-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, transparent 60%);
}

.vertical-name {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    white-space: nowrap;
    transform-origin: center;
    font-family: var(--font-logo);
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 5px;
    text-transform: uppercase;
    transition: 0.3s;
    opacity: 1;
}

.master-panel:hover .vertical-name {
    opacity: 0;
}

.master-details {
    position: absolute;
    bottom: 40px;
    left: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s 0.2s;
    width: 80%;
}

.master-panel:hover .master-details {
    opacity: 1;
    transform: translateY(0);
}

.role-badge {
    background: var(--gold-gradient);
    color: #000;
    padding: 5px 12px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    margin-bottom: 10px;
    display: inline-block;
}

.expanded-name {
    font-family: var(--font-logo);
    font-size: 3rem;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.gold-sep {
    height: 2px;
    width: 50px;
    background: var(--gold-flat);
    margin-bottom: 15px;
}

.master-spec {
    font-size: 1.1rem;
    color: var(--text-grey);
    margin-bottom: 20px;
}

.social-btn {
    color: var(--gold-flat);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-btn:hover {
    color: #fff;
}

@media (max-width: 1024px) {
    .masters-gallery {
        flex-direction: row;
        height: 500px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        padding-bottom: 20px;
        gap: 20px;
    }

    .master-panel {
        flex: none;
        width: 85vw;
        scroll-snap-align: center;
        filter: grayscale(0%) brightness(0.9);
        border-radius: 20px;
    }

    .vertical-name {
        display: none;
    }

    .master-details {
        opacity: 1;
        transform: translateY(0);
        bottom: 30px;
        left: 20px;
    }

    .expanded-name {
        font-size: 2rem;
    }
}


/* =========================================
   BRANDS STRIP (Infinite Scroll)
   ========================================= */
.brand-strip {
    background: #0f0f0f;
    padding: 40px 0;
    overflow: hidden;
    /* Hide scrollbar */
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
}

.marquee-wrapper {
    width: 100%;
    display: flex;
    white-space: nowrap;
}

.marquee-content {
    display: flex;
    align-items: center;
    gap: 80px;
    animation: scrollLoop 25s linear infinite;
}

.brand-item img {
    height: 40px;
    width: auto;
    filter: grayscale(100%) brightness(0.5);
    opacity: 0.6;
    transition: 0.4s;
}

.brand-item img:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
}

@keyframes scrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.marquee-wrapper:hover .marquee-content {
    animation-play-state: paused;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .card-image-box {
        height: 300px;
    }

    .marquee-content {
        gap: 40px;
    }

    .brand-item img {
        height: 30px;
    }
}



/* =========================================
   CLIENT REVIEWS (Parallax Section)
   ========================================= */
.reviews-section {
    position: relative;
    padding: 120px 0;
    background-image: var(--bg-reviews);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1;
}

.watermark-quote {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    color: rgba(255, 255, 255, 0.03);
    font-family: serif;
    z-index: 1;
    pointer-events: none;
    line-height: 0;
}

.relative-z {
    position: relative;
    z-index: 2;
}

/* --- HORIZONTAL SLIDER --- */
.reviews-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    /* Horizontal Scroll */
    padding-bottom: 40px;
    /* Space for scrollbar */
    scroll-snap-type: x mandatory;
    /* Stops card in center */
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

/* --- GLASS CARD --- */
.review-card {
    min-width: 400px;
    /* Fixed width for desktop */
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: var(--radius-sm);
    scroll-snap-align: center;
    /* Center when scrolling stops */
    transition: transform 0.4s;
    position: relative;
}

.review-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
}

/* --- CARD CONTENT --- */
.review-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.client-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    border: 2px solid var(--gold-flat);
}

.client-info {
    display: flex;
    flex-direction: column;
}

.client-name {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.service-taken {
    font-size: 0.8rem;
    color: var(--text-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #ddd;
    font-style: italic;
    margin-bottom: 20px;
    min-height: 80px;
    /* Ensure height uniformity */
}

/* Footer */
.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stars {
    color: var(--gold-flat);
    font-size: 14px;
}

.verified-badge {
    font-size: 10px;
    color: #4cd137;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .review-card {
        min-width: 85vw;
        /* Full width on mobile */
    }

    .watermark-quote {
        font-size: 10rem;
    }
}

.slider-wrapper {
    position: relative;
    padding: 0 50px;
}

/* --- NAVIGATION BUTTONS --- */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--gold-flat);
    border: 1px solid var(--gold-flat);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 15px var(--gold-shadow);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

@media (max-width: 768px) {
    .slider-wrapper {
        padding: 0;
    }

    .slider-btn {
        display: none;
    }
}

.reviews-section {
    position: relative;
    padding: 120px 0;
    /* Ab: Gradient Overlay (0.7 Black) + Image Variable */
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), var(--bg-reviews);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}


/* =========================================
   7. MAP & FOOTER SECTION
   ========================================= */

/* --- DARK MAP --- */
.map-section {
    position: relative;
    height: 400px;
    width: 100%;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    /* MAGIC TRICK: Makes Google Map Dark Mode */
    filter: grayscale(100%) invert(92%) contrast(0.83);
}

/* Floating Box over Map */
.map-overlay-box {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    background: #000;
    padding: 30px;
    border: 1px solid var(--gold-flat);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 300px;
}

.map-overlay-box h3 {
    font-family: var(--font-logo);
    color: var(--gold-flat);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.map-overlay-box p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.direction-link {
    color: var(--text-white);
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--gold-flat);
    padding-bottom: 2px;
}

/* --- FOOTER MAIN --- */
.main-footer {
    background: var(--bg-footer);
    padding-top: 80px;
    border-top: 1px solid var(--border-footer);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    /* 1st column wide */
    gap: 40px;
    padding-bottom: 60px;
}

/* Branding Column */
.footer-logo {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: var(--text-white);
    display: block;
    margin-bottom: 20px;
}

.footer-desc {
    color: var(--text-muted);
    line-height: 1.6;
    font-size: 0.9rem;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    border: 1px solid var(--border-footer);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 14px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--gold-flat);
    color: #000;
    border-color: var(--gold-flat);
}

/* Headings */
.footer-head {
    font-family: var(--font-logo);
    font-size: 1.2rem;
    color: var(--text-white);
    margin-bottom: 25px;
    letter-spacing: 1px;
}

/* Links List */
.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-links a:hover {
    color: var(--gold-flat);
    padding-left: 5px;
}

/* Hours List */
.footer-hours li {
    display: flex;
    justify-content: space-between;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 5px;
}

.footer-hours .time {
    color: var(--text-white);
}

/* Contact Column */
.contact-txt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-txt i {
    color: var(--gold-flat);
}

.btn-footer-cta {
    display: inline-block;
    margin-top: 15px;
    background: var(--text-white);
    color: #000;
    padding: 10px 20px;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
}

.btn-footer-cta:hover {
    background: var(--gold-gradient);
}

/* --- COPYRIGHT STRIP --- */
.footer-bottom {
    border-top: 1px solid var(--border-footer);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 12px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .map-overlay-box {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        max-width: none;
        border: none;
        border-bottom: 1px solid var(--gold-flat);
    }

    .map-section {
        height: auto;
        display: flex;
        flex-direction: column-reverse;
    }

    .map-section iframe {
        height: 300px;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}


/* =========================================
   WOMEN'S HERO (Editorial Video Layers)
   ========================================= */
.women-video-layers {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    background: #000;
}

.video-bg-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.the-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5) contrast(1.2);
    transform: scale(1.05);
}

.video-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 20%, rgba(0, 0, 0, 0.3) 100%);
}

.layers-container {
    position: relative;
    height: 100%;
    z-index: 2;
    padding-top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.layer-typography {
    position: relative;
    z-index: 3;
    margin-bottom: 40px;
}

.mini-tag {
    color: var(--gold-flat);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 12px;
    display: block;
    margin-bottom: 20px;
    padding-left: 5px;
}

.massive-headline {
    font-family: var(--font-logo);
    font-size: 12vw;
    line-height: 0.85;
    text-transform: uppercase;
    margin: 0;
}

.solid-text {
    color: #fff;
}

.outline-text {
    color: transparent;
    -webkit-text-stroke: 2px var(--gold-flat);
    margin-top: -20px;
    display: block;
    opacity: 0.8;
}

.layer-intro {
    position: relative;
    z-index: 4;
    max-width: 400px;
    margin-left: auto;
    margin-right: 10%;
}

.intro-text {
    color: #ccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    border-left: 2px solid var(--gold-flat);
    padding-left: 20px;
}

.btn-editorial {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    color: var(--text-white);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    padding: 10px 0;
}

.btn-line {
    height: 2px;
    width: 50px;
    background: var(--gold-gradient);
    transition: 0.4s ease-in-out;
}

.btn-editorial:hover .btn-line {
    width: 100px;
    background: var(--gold-flat);
}

.btn-editorial:hover .btn-txt {
    color: var(--gold-flat);
}

.layer-portal {
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translateY(-50%);
    z-index: 1;
    height: 60vh;
    width: 25vw;
}

.portal-frame {
    height: 100%;
    width: 100%;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 10px;
}

.portal-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(50%) sepia(20%);
}

.portal-img {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-image: var(--img-portal-woman);
    filter: grayscale(50%) sepia(20%);
    transition: transform 0.5s ease;
}

.portal-label {
    position: absolute;
    bottom: -30px;
    right: 0;
    color: var(--gold-flat);
    font-family: var(--font-elegant);
    font-style: italic;
}

.coords-decor {
    position: absolute;
    bottom: 30px;
    left: 40px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 10px;
    letter-spacing: 2px;
}

@media (max-width: 1024px) {
    .massive-headline {
        font-size: 18vw;
    }

    .outline-text {
        margin-top: -10px;
    }

    .layer-portal {
        right: -10%;
        opacity: 0.4;

    }

    .layer-intro {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
        margin-top: 40px;
    }
}


/* =========================================
   WOMEN'S MENU (Sticky Layout)
   ========================================= */
.women-menu-section {
    padding: 100px 0;
    background: #080808;
    position: relative;
}

.menu-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.menu-visuals-col {
    position: relative;
    height: 100%;
}

.sticky-wrapper {
    position: sticky;
    top: 100px;
    height: 600px;
    width: 100%;
    border-radius: 200px 200px 0 0;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.visual-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: all 0.8s ease-in-out;
    opacity: 0;
    transform: scale(1.1);
}

.visual-card.active {
    opacity: 1;
    transform: scale(1);
    z-index: 2;
}

.visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
}

.visual-label {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--gold-flat);
    font-family: var(--font-logo);
    text-transform: uppercase;
    font-size: 2rem;
    letter-spacing: 2px;
    z-index: 3;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.8);
}

.menu-list-col {
    padding-bottom: 50px;
}

.menu-category-block {
    margin-bottom: 100px;
    scroll-margin-top: 150px;
}

.cat-header {
    margin-bottom: 30px;
}

.cat-title {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 5px;
}

.script-font {
    color: var(--gold-flat);
    font-size: 3.5rem;
    font-weight: 400;
}

.cat-desc {
    color: #888;
    font-size: 0.95rem;
}

.service-item {
    margin-bottom: 25px;
}

.service-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.s-name {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    color: #ddd;
    font-weight: 700;
}

.s-dots {
    flex: 1;
    border-bottom: 1px dotted #333;
    margin: 0 15px 5px 15px;
}

.s-price {
    color: var(--gold-flat);
    font-weight: 700;
    font-size: 1.2rem;
}

.service-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .menu-layout {
        grid-template-columns: 1fr;
    }

    .menu-visuals-col {
        display: none;
    }

    .menu-category-block {
        margin-bottom: 60px;
    }

    .script-font {
        font-size: 3rem;
    }
}


/* =========================================
   WOMEN'S BRIDAL EDIT (Interactive)
   ========================================= */
.bridal-edit-section {
    padding: var(--section-padding);
    background: #050505;
}

.bridal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.bridal-card {
    position: relative;
    height: 600px;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.1);
    group: pointer;
    transition: all 0.5s ease;
}

.bridal-card:hover {
    border-color: var(--gold-flat);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.card-img-box {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: grayscale(100%) contrast(1.1);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 0;
}

.bridal-card:hover .card-img-box {
    filter: grayscale(0%) contrast(1);
    transform: scale(1.08);
}

.img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, transparent 60%);
    z-index: 1;
}

.card-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 3;
    transition: 0.5s;
    max-width: 80%;
}

.bridal-card:hover .card-content {
    transform: translateY(-120px);
}

.look-tag.script-font {
    /* font-family: 'Great Vibes', cursive; */
    color: var(--gold-flat);
    font-size: 2rem;
    display: block;
    margin-bottom: 5px;
}

.look-title {
    font-family: var(--font-logo);
    font-size: 2rem;
    color: #fff;
    text-transform: uppercase;
    margin: 0;
}

.gold-sep-line {
    width: 40px;
    height: 2px;
    background: var(--gold-flat);
    margin: 15px 0;
    transition: 0.5s;
}

.bridal-card:hover .gold-sep-line {
    width: 80px;
}

.look-desc {
    color: #ccc;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0.8;
}

.card-details-slide {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, #000 50%, transparent);
    z-index: 4;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0;
}

.bridal-card:hover .card-details-slide {
    bottom: 0;
    opacity: 1;
}

.details-head {
    color: var(--gold-flat);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.details-list li {
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.details-list li i {
    color: var(--gold-flat);
    font-size: 10px;
}

.btn-book-look {
    display: inline-block;
    padding: 10px 25px;
    background: var(--gold-flat);
    color: #000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    border-radius: 30px;
    transition: 0.3s;
}

.btn-book-look:hover {
    background: #fff;
}

@media (max-width: 1024px) {
    .bridal-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .bridal-card {
        height: 500px;
        margin-bottom: 30px;
    }

    .card-content {
        bottom: 20px;
        left: 20px;
    }

    .bridal-card:hover .card-content {
        transform: translateY(-140px);
    }
}


/* =========================================
   WOMEN'S PRODUCTS (Holographic Vanity)
   ========================================= */
.vanity-section {
    padding: var(--section-padding);
    background: #020202;
    /* Almost pure black */
    position: relative;
    overflow: hidden;
}

.vanity-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

.vanity-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    perspective: 1000px;
}

.vanity-card-wrapper {
    position: relative;
    height: 450px;
    group: pointer;
}

.glass-panel {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
}

.vanity-card-wrapper:hover .glass-panel {
    transform: translateY(-15px) rotateX(5deg);
    border-color: var(--brand-glow);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.5),
        0 0 30px var(--brand-glow);
}

.neon-backdrop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--brand-glow) 0%, transparent 70%);
    opacity: 0.15;
    filter: blur(30px);
    transition: 0.6s;
    z-index: 0;
}

.vanity-card-wrapper:hover .neon-backdrop {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1.2);
}

.product-float-box {
    position: relative;
    z-index: 2;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: floatProduct 6s ease-in-out infinite;
}

.product-float-box img {
    max-height: 100%;
    max-width: 90%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.vanity-card-wrapper:nth-child(1) .product-float-box {
    animation-delay: 0s;
}

.vanity-card-wrapper:nth-child(2) .product-float-box {
    animation-delay: 1.5s;
}

.vanity-card-wrapper:nth-child(3) .product-float-box {
    animation-delay: 3s;
}

.vanity-card-wrapper:nth-child(4) .product-float-box {
    animation-delay: 4.5s;
}

@keyframes floatProduct {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.product-info {
    position: relative;
    z-index: 2;
}

.prod-type.script-font {
    color: var(--brand-glow);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
    opacity: 0.8;
}

.prod-brand {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.glow-sep {
    width: 30px;
    height: 2px;
    background: var(--brand-glow);
    margin: 0 auto 15px auto;
    box-shadow: 0 0 10px var(--brand-glow);
    transition: 0.4s;
}

.vanity-card-wrapper:hover .glow-sep {
    width: 60px;
}

.prod-desc {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.5;
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .vanity-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .vanity-card-wrapper {
        height: 400px;
    }
}

@media (max-width: 600px) {
    .vanity-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}


































/* =========================================
   WOMEN'S PACKAGES (Golden Tickets)
   ========================================= */
.rituals-section {
    padding: var(--section-padding);
    background: var(--bg-deep);
    /* Standard dark background */
}

.tickets-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
    /* Center the grid */
}

/* --- THE TICKET CARD CONTAINER --- */
.ticket-card {
    display: flex;
    height: 220px;
    /* Fixed height for ticket look */
    background: #111;
    /* Slightly lighter black */
    border: 1px solid rgba(212, 175, 55, 0.3);
    /* Gold border */
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Bouncy transition */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* HOVER ANIMATION: Slide & Glow */
.ticket-card:hover {
    transform: translateX(-15px) translateY(-5px);
    /* Pop out left and up */
    border-color: var(--gold-flat);
    box-shadow:
        15px 15px 40px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.2);
    /* Subtle Gold Glow */
}


/* --- LEFT: THE STUB --- */
.ticket-stub {
    flex: 0 0 30%;
    /* Takes 30% width */
    position: relative;
    background-size: cover;
    background-position: center;
}

.stub-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    /* Darken texture */
    /* Gold Tint Overlay */
    box-shadow: inset 0 0 50px rgba(212, 175, 55, 0.3);
}

.stub-label {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-90deg);
    /* Vertical Text */
    white-space: nowrap;
    color: var(--gold-flat);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    opacity: 0.7;
}


/* --- CENTER: TEAR LINE --- */
.tear-line-divider {
    position: relative;
    width: 0px;
    /* No real width */
    border-left: 2px dashed rgba(212, 175, 55, 0.5);
    /* The dashed line */
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    /* Hides the background behind dashes */
    z-index: 2;
}

.scissors-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(90deg);
    color: var(--gold-flat);
    background: #111;
    padding: 5px 0;
    font-size: 14px;
}


/* --- RIGHT: THE BODY --- */
.ticket-body {
    flex: 1;
    /* Takes remaining space */
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.ticket-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.ticket-sub.script-font {
    /* font-family: 'Great Vibes', cursive; */
    color: var(--gold-flat);
    font-size: 1.5rem;
    display: block;
    margin-bottom: 5px;
}

.ticket-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.ticket-price {
    font-family: var(--font-logo);
    color: var(--gold-flat);
    font-size: 1.8rem;
    font-weight: 700;
    background: rgba(212, 175, 55, 0.1);
    padding: 5px 15px;
    border-radius: 4px;
}

/* Includes List */
.ticket-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
    display: flex;
    /* Horizontal list on desktop for space */
    flex-wrap: wrap;
    gap: 20px;
}

.ticket-includes li {
    color: #ccc;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ticket-includes li i {
    font-size: 6px;
    /* Small dot */
    color: var(--gold-flat);
}

/* Button */
.btn-ticket-book {
    align-self: flex-start;
    /* Left align */
    color: var(--gold-flat);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
}

.btn-ticket-book i {
    transition: 0.3s;
}

.btn-ticket-book:hover i {
    transform: translateX(5px);
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .ticket-card {
        flex-direction: column;
        /* Stack vertically on mobile */
        height: auto;
        /* Auto height */
    }

    .ticket-stub {
        flex: none;
        height: 100px;
        /* Fixed height for image part */
        width: 100%;
    }

    .stub-label {
        display: none;
    }

    /* Hide vertical text on mobile */

    .tear-line-divider {
        width: 100%;
        height: 0;
        border-left: none;
        border-top: 2px dashed rgba(212, 175, 55, 0.5);
        /* Horizontal Dash */
    }

    .scissors-icon {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    /* Rotate scissors */

    .ticket-body {
        padding: 25px;
    }

    .ticket-header {
        flex-direction: column;
        gap: 10px;
    }

    .ticket-includes {
        flex-direction: column;
        gap: 10px;
    }

    /* Vertical list on mobile */
}

























/* =========================================
   WOMEN'S TRANSFORMATION (Before/After Slider)
   ========================================= */
.transformation-section {
    padding: var(--section-padding);
    background: #080808;
    /* Deep dark background */
}

.transform-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* Two side by side */
    gap: 50px;
}

.transform-block {
    margin-bottom: 30px;
}

/* --- THE SLIDER CONTAINER --- */
.comparison-slider {
    position: relative;
    width: 100%;
    height: 500px;
    /* Fixed Height for consistency */
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    cursor: col-resize;
    /* Shows resize cursor on hover */
    /* Prevent image selection during drag */
    user-select: none;
    -webkit-user-drag: none;
}


/* --- IMAGE WRAPPERS --- */
/* Basic style for both Before & After wrappers */
.after-image-wrapper,
.before-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Styling the images inside */
.comparison-slider img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures images fill the space perfectly */
    object-position: center;
    pointer-events: none;
    /* Important for dragging */
}

/* --- THE RESIZE FRAME (Top Layer - Before Image) --- */
.resize-frame {
    width: 50%;
    /* Initial state: 50% visible */
    z-index: 2;
    /* Sits on top */
    border-right: 2px solid var(--gold-flat);
    /* The dividing line */
}


/* --- LABELS (Before/After Text) --- */
.label-before,
.label-after {
    position: absolute;
    top: 20px;
    background: rgba(0, 0, 0, 0.6);
    padding: 5px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    font-weight: 700;
}

.label-before {
    left: 20px;
    color: #fff;
    /* White for Before */
    z-index: 3;
}

.label-after {
    right: 20px;
    color: var(--gold-flat);
    /* Gold for After */
    z-index: 1;
}


/* --- THE HANDLE --- */
.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    /* Matches initial resize-frame width */
    height: 100%;
    width: 40px;
    /* Width for click area */
    transform: translateX(-50%);
    /* Center it on the line */
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
    /* Let clicks pass through to container */
}

/* The circular button in the middle */
.handle-circle {
    width: 40px;
    height: 40px;
    background: var(--gold-gradient);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    color: #000;
    font-size: 12px;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}


/* --- CAPTION BELOW --- */
.transform-caption {
    padding-top: 25px;
}

.trans-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.trans-desc {
    color: #ccc;
    font-size: 0.95rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 768px) {
    .transform-grid {
        grid-template-columns: 1fr;
    }

    /* Stack on mobile */
    .comparison-slider {
        height: 400px;
    }
}










































/* =========================================
   WOMEN'S CTA (The Booking Gateway)
   ========================================= */
.booking-gateway-section {
    padding: 100px 0;
    background: linear-gradient(to right, #080808, #111);
    /* Subtle gradient depth */
    overflow: hidden;
}

.gateway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 80px;
}

/* --- LEFT: THE BOOKING GRAPHIC --- */
.gateway-visual {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 1. Rotating Time Ring */
.time-ring-spinner {
    position: absolute;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    /* Dashed gold border for clock-like feel */
    border: 3px dashed rgba(212, 175, 55, 0.4);
    border-top-color: var(--gold-flat);
    /* One part brighter */
    animation: spinSlow 20s linear infinite;
}

@keyframes spinSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* 2. Central Calendar Icon */
.booking-icon-center {
    font-size: 5rem;
    color: var(--gold-flat);
    /* Icon pulse animation */
    animation: iconPulse 2s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* 3. Floating Status Labels */
.status-label {
    position: absolute;
    background: rgba(20, 20, 20, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.8rem;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.label-top {
    top: 20px;
    right: 0;
    animation: floatAnim 4s ease-in-out infinite;
}

.label-bottom {
    bottom: 20px;
    left: 0;
    animation: floatAnim 4s ease-in-out infinite reverse;
}


/* --- RIGHT: ACTION CONTENT --- */
.gold-accent {
    color: var(--gold-flat);
    font-size: 2rem;
}

.gateway-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 4rem;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.gateway-desc {
    color: #bbb;
    font-size: 1.1rem;
    margin-bottom: 40px;
    max-width: 450px;
}

/* --- ACTION BUTTONS (Stacked) --- */
.action-btns-stacked {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 400px;
}

/* 1. SHOCKWAVE CALL BUTTON (The Hero) */
.btn-book-shockwave {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--gold-gradient);
    padding: 15px 30px;
    border-radius: 12px;
    /* Modern slightly rounded corners */
    color: #000;
    text-decoration: none;
    transition: 0.3s;
    z-index: 1;
}

.btn-book-shockwave i {
    font-size: 2rem;
}

.btn-small-txt {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    opacity: 0.8;
}

.btn-large-txt {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
}

/* The Shockwave Animation Element */
.shockwave {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 12px;
    background: rgba(212, 175, 55, 0.6);
    z-index: -1;
    animation: shockwaveAnim 2s infinite;
}

@keyframes shockwaveAnim {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.15);
        opacity: 0;
    }

    /* Expands and fades out */
}

.btn-book-shockwave:hover {
    transform: translateY(-3px);
    filter: brightness(1.1);
}


/* 2. SLEEK WHATSAPP BUTTON */
.btn-whatsapp-sleek {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    border: 1px solid #333;
    padding: 15px;
    border-radius: 12px;
    color: #aaa;
    font-weight: 600;
    transition: 0.3s;
}

.btn-whatsapp-sleek:hover {
    background: #25D366;
    border-color: #25D366;
    color: #fff;
}

.btn-whatsapp-sleek i {
    font-size: 1.3rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .gateway-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .gateway-visual {
        height: 300px;
    }

    .time-ring-spinner {
        width: 280px;
        height: 280px;
    }

    .gateway-action {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .gateway-title {
        font-size: 3rem;
    }

    .action-btns-stacked {
        width: 100%;
    }

    .btn-book-shockwave {
        justify-content: center;
    }
}

































/* =========================================
   UPDATED MOSAIC HERO (Bento Grid)
   ========================================= */
.mosaic-hero-section {
    padding: 100px 0;
    background: #050505;
}

/* --- HEADER --- */
.mosaic-header {
    margin-bottom: 50px;
}

.mosaic-title {
    font-family: var(--font-logo);
    font-size: 3.5rem;
    color: #fff;
    text-transform: uppercase;
}

.mosaic-sub {
    color: #888;
    font-size: 1rem;
    letter-spacing: 1px;
    margin-top: 10px;
}


/* --- THE GRID LAYOUT (3 Columns x 3 Rows logic) --- */
.mosaic-grid {
    display: grid;
    /* Desktop: 3 Columns */
    grid-template-columns: 1.2fr 1fr 1fr;
    /* Rows height definition */
    grid-template-rows: 280px 280px 150px;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 60px auto;
    /* Margin bottom for amenities */
}

/* --- GRID PLACEMENT --- */

/* 1. Hair (Tall Left) - Spans 2 Rows */
.card-tall {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

/* 2. Skin (Top Middle) */
.card-square:nth-child(2) {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

/* 3. Makeup (Top Right) */
.card-square:nth-child(3) {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

/* 4. Massage (Middle Wide) - Spans 2 columns */
.card-wide-center {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
}

/* 5. Nails (Bottom Left) */
.card-square:nth-child(5) {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
}

/* 6. Grooming (Bottom Wide) - Spans remaining */
.card-square:nth-child(6) {
    grid-column: 2 / 4;
    grid-row: 3 / 4;
}


/* --- CARD STYLING --- */
.mosaic-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.4s ease;
    cursor: pointer;
}

/* Background Image */
.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease;
    filter: grayscale(100%) brightness(0.6);
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 15%, transparent 70%);
    z-index: 1;
}

/* Content */
.card-content {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 2;
}

.card-num {
    font-family: var(--font-logo);
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    display: block;
    margin-bottom: 5px;
    transition: 0.3s;
}

.card-name {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 1.6rem;
    text-transform: uppercase;
    margin: 0;
}

.card-desc {
    color: #bbb;
    font-size: 0.85rem;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Hover List (New Feature) */
.hover-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: 0.5s ease;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hover-list li {
    font-size: 0.85rem;
    color: var(--gold-flat);
    margin-top: 5px;
}

.hover-list li::before {
    content: '• ';
    color: #fff;
}


/* --- HOVER STATES --- */
.mosaic-card:hover {
    border-color: var(--gold-flat);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.mosaic-card:hover .card-bg {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(0.7);
}

.mosaic-card:hover .card-num {
    color: var(--gold-flat);
    transform: translateY(-5px);
}

.mosaic-card:hover .hover-list {
    max-height: 100px;
    opacity: 1;
    margin-top: 15px;
}

/* Reveal List */


/* --- AMENITIES STRIP (Bottom) --- */
.amenities-strip {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    max-width: 900px;
    margin: 0 auto;
}

.am-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.am-item i {
    color: var(--gold-flat);
    font-size: 1.1rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .mosaic-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: repeat(4, 250px);
    }

    .card-tall {
        grid-column: 1 / 3;
        grid-row: 1 / 2;
    }

    /* Full width top */
    .card-square:nth-child(2) {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .card-square:nth-child(3) {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .card-wide-center {
        grid-column: 1 / 3;
        grid-row: 3 / 4;
    }

    .card-square:nth-child(5) {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .card-square:nth-child(6) {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
}

@media (max-width: 768px) {
    .mosaic-grid {
        display: flex;
        flex-direction: column;
        height: auto;
        padding: 0 15px;
    }

    .mosaic-card {
        height: 250px;
        width: 100%;
    }

    .amenities-strip {
        flex-direction: column;
        border-radius: 15px;
        gap: 15px;
    }
}































/* =========================================
   SERVICE TABS (Menu System)
   ========================================= */
.service-tabs-section {
    padding: 100px 0;
    /* Standard Padding */
    background: #080808;
    position: relative;
}

.text-right-desk {
    text-align: right;
}

.mt-40 {
    margin-top: 40px;
}

.mb-50 {
    margin-bottom: 50px;
}

/* --- HEADER FLEX --- */
.tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

/* --- TABS NAVIGATION --- */
.tabs-nav-wrapper {
    position: relative;
    margin-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tabs-nav {
    display: flex;
    gap: 40px;
    list-style: none;
    padding: 0;
    margin: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.tabs-nav::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    font-family: var(--font-logo);
    /* Aapka Logo Font */
    font-size: 1.2rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding-bottom: 20px;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    transition: 0.3s;
}

.tab-btn:hover {
    color: #fff;
}

/* Active State */
/* .tab-btn.active {
    color: var(--gold-flat);
} */

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-flat);
    box-shadow: 0 -5px 15px rgba(212, 175, 55, 0.4);
}


/* --- CONTENT LAYOUT --- */
.tabs-content-layout {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    min-height: 400px;
}

/* --- PRICE LIST --- */
.menu-pane {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.menu-pane.active {
    display: block;
}

.price-item {
    margin-bottom: 25px;
}

.pi-top {
    display: flex;
    align-items: flex-end;
    margin-bottom: 5px;
}

.pi-name {
    font-family: var(--font-elegant);
    /* Playfair Display etc */
    font-size: 1.3rem;
    color: #fff;
    font-weight: 400;
}

.pi-dots {
    flex: 1;
    border-bottom: 1px dotted #444;
    margin: 0 15px 5px 15px;
}

.pi-price {
    font-family: var(--font-logo);
    color: var(--gold-flat);
    font-size: 1.2rem;
    font-weight: 700;
}

.pi-desc {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
}


/* --- DYNAMIC IMAGE (HTML IMG TAG) --- */
.menu-image-container {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 8px;
}

.menu-img-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.6s ease-in-out, transform 0.8s ease;
    z-index: 0;
}

/* New CSS for IMG Tag */
.menu-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: grayscale(20%) contrast(1.1);
}

.menu-img-wrapper.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.img-frame-border {
    position: absolute;
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
    border: 1px solid rgba(212, 175, 55, 0.5);
    z-index: 2;
    pointer-events: none;
}


/* --- NEW BOOK APPOINTMENT BUTTON --- */
.btn-book-appointment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 15px 35px;
    background: transparent;
    border: 1px solid var(--gold-flat);
    color: var(--gold-flat);
    text-transform: uppercase;
    font-family: var(--font-logo);
    font-size: 1rem;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    text-decoration: none;
}

.btn-book-appointment::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: var(--gold-flat);
    transition: all 0.4s ease;
    z-index: -1;
}

/* .btn-book-appointment:hover {
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
} */

.btn-book-appointment:hover::before {
    width: 100%;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .tabs-header {
        display: block;
        text-align: center;
    }

    .text-right-desk {
        text-align: center;
        margin-top: 10px;
    }

    .tabs-content-layout {
        grid-template-columns: 1fr;
    }

    .menu-image-container {
        display: none;
    }

    /* Mobile par image hide */

    .tabs-nav {
        padding-bottom: 10px;
    }

    .tab-btn {
        font-size: 1rem;
        padding-bottom: 15px;
    }

    .btn-book-appointment {
        width: 100%;
    }

}


/* =========================================
   THE SANCTUARY (Horizontal Accordion)
   ========================================= */
.sanctuary-section {
    padding: 100px 0;
    background: #050505;
}

.container-fluid.p-0 {
    padding: 0;
}

/* --- ACCORDION WRAPPER --- */
.acc-wrapper {
    display: flex;
    width: 100%;
    height: 650px;
    /* Fixed Height on Desktop */
    overflow: hidden;
    padding: 0 5%;
    /* Side padding purely cosmetic */
    gap: 20px;
}

/* --- THE PANEL --- */
.acc-panel {
    position: relative;
    flex: 1;
    /* All start equal width */
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 1, 0.5, 1);
    /* Smooth Expansion */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Active State (Expanded) */
.acc-panel.active {
    flex: 3;
    /* Becomes 3x wider than others */
    border-color: var(--gold-flat);
    cursor: default;
}

/* --- BACKGROUND IMAGE --- */
.acc-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.acc-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    filter: grayscale(100%);
}

.acc-panel.active .acc-bg img {
    transform: scale(1.1);
    /* Zoom */
    filter: grayscale(0%);
    /* Color reveal */
}

/* --- OVERLAY --- */
.acc-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.4) 100%);
    transition: 0.5s;
}

.acc-panel.active .acc-overlay {
    background: linear-gradient(to top, #000 30%, rgba(0, 0, 0, 0.2) 100%);
}


/* --- CONTENT --- */
.acc-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    z-index: 2;
}

/* HEAD (Title) */
.acc-head {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    transition: 0.5s;
}

.acc-num {
    font-family: var(--font-logo);
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.2);
    line-height: 0.8;
}

.acc-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 2rem;
    text-transform: uppercase;
    margin: 0;
    white-space: nowrap;
    /* Text won't break in collapsed mode */
}

.acc-sub {
    color: var(--gold-flat);
    /* font-family: 'Great Vibes', cursive; */
    font-size: 1.2rem;
    display: block;
    opacity: 0;
    /* Hidden when collapsed */
    transform: translateY(10px);
    transition: 0.5s;
    height: 0;
    overflow: hidden;
}

.acc-icon {
    margin-left: auto;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

/* When Active */
.acc-panel.active .acc-title {
    font-size: 2.5rem;
}

.acc-panel.active .acc-sub {
    opacity: 1;
    transform: translateY(0);
    height: auto;
}

.acc-panel.active .acc-num {
    color: var(--gold-flat);
}

.acc-panel.active .acc-icon {
    transform: rotate(45deg);
    border-color: var(--gold-flat);
    color: var(--gold-flat);
}


/* BODY (The List - Hidden Initially) */
.acc-body {
    max-height: 0;
    /* Hidden */
    opacity: 0;
    overflow: hidden;
    transition: all 0.7s ease;
}

.acc-panel.active .acc-body {
    max-height: 500px;
    /* Reveal */
    opacity: 1;
}

.acc-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 25px;
}

/* Service List Styling */
.acc-service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.acc-service-list li {
    margin-bottom: 20px;
}

.as-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.as-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.as-price {
    color: var(--gold-flat);
    font-weight: 700;
}

.as-desc {
    color: #888;
    font-size: 0.85rem;
    margin-top: 5px;
}

/* Small Button Fix */
.btn-sm {
    padding: 10px 25px;
    font-size: 0.9rem;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .acc-wrapper {
        flex-direction: column;
        /* Stack Vertically */
        height: auto;
        padding: 0 20px;
    }

    .acc-panel {
        width: 100%;
        height: 120px;
        /* Collapsed Height */
        flex: none;
        /* Disable flex growth on mobile */
    }

    .acc-panel.active {
        height: auto;
        /* Allow auto height for content */
        flex: none;
    }

    .acc-bg img {
        filter: grayscale(0%);
        opacity: 0.4;
    }

    /* Always color on mobile */
    .acc-head {
        margin-bottom: 0;
    }

    .acc-panel.active .acc-head {
        margin-bottom: 20px;
    }

    .acc-title {
        font-size: 1.5rem;
        white-space: normal;
    }

    .acc-panel.active .acc-title {
        font-size: 1.8rem;
    }
}


/* =========================================
   CONTACT HERO (The Open Door)
   ========================================= */
.contact-hero-section {
    padding: 160px 0 100px 0;
    /* Extra top padding for header */
    background: #050505;
    position: relative;
    overflow: hidden;
}

.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* --- LEFT COLUMN: TEXT --- */
.hero-tag-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gold-dot {
    width: 8px;
    height: 8px;
    background: var(--gold-flat);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-flat);
}

.hero-tag-text {
    color: var(--gold-flat);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    font-weight: 600;
}

.ch-title {
    font-family: var(--font-logo);
    font-size: 4.5rem;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 30px;
}

.gold-text-gradient {
    background: linear-gradient(to right, #D4AF37, #F2C94C, #D4AF37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shineText 5s linear infinite;
}

@keyframes shineText {
    to {
        background-position: 200% center;
    }
}

.ch-desc {
    color: #bbb;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 50px;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 20px;
}

/* Connect Links (Email/Phone) */
.ch-connect-links {
    display: flex;
    gap: 40px;
}

.connect-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    group: pointer;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-flat);
    font-size: 1.2rem;
    transition: 0.3s;
}

.connect-item:hover .icon-circle {
    background: var(--gold-flat);
    color: #000;
    border-color: var(--gold-flat);
}

.label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.value {
    display: block;
    font-size: 1rem;
    color: #fff;
    font-weight: 600;
    transition: 0.3s;
}

.connect-item:hover .value {
    color: var(--gold-flat);
}


/* --- RIGHT COLUMN: VISUAL --- */
.ch-visual-col {
    position: relative;
}

.ch-image-frame {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px 0 20px 0;
    /* Stylish Corners */
    overflow: hidden;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ch-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

/* Subtle Zoom on hover over the frame */
.ch-image-frame:hover img {
    transform: scale(1.05);
}


/* --- FLOATING GLASS CARD --- */
.floating-status-card {
    position: absolute;
    bottom: 30px;
    right: -30px;
    /* Slight overlap outside */
    background: rgba(20, 20, 20, 0.7);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 25px;
    border-radius: 12px;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    z-index: 3;
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: #25D366;
    /* Green for Open */
    border-radius: 50%;
    box-shadow: 0 0 10px #25D366;
    animation: pulseStatus 2s infinite;
}

@keyframes pulseStatus {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0.5;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.status-text {
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.status-time {
    color: #ccc;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.status-note {
    color: var(--gold-flat);
    font-size: 0.8rem;
    font-style: italic;
}


/* Background Pattern (Dots) */
.bg-pattern-dots {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 10px 10px;
    z-index: 1;
}


/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .contact-hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .ch-title {
        font-size: 3.5rem;
    }

    .floating-status-card {
        right: 20px;
        bottom: 20px;
    }

    /* Adjust inside for mobile */
}

@media (max-width: 768px) {
    .ch-title {
        font-size: 3rem;
    }

    .ch-connect-links {
        flex-direction: column;
        gap: 20px;
    }

    .ch-image-frame {
        height: 350px;
    }

    .floating-status-card {
        display: none;
    }
}


/* =========================================
   CONTACT HUB (Map & Form)
   ========================================= */
.contact-hub-section {
    padding: 100px 0;
    background: #0a0a0a;
    /* Slightly lighter than pure black */
}

.hub-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

/* --- LEFT: FORM STYLING --- */
.hub-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hub-sub {
    color: #888;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.minimal-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-row {
    display: flex;
    gap: 30px;
}

/* Floating Label Inputs */
.input-group {
    position: relative;
    width: 100%;
}

.input-group input,
.input-group textarea,
.input-group select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #333;
    /* Default Line */
    color: #fff;
    font-size: 1rem;
    padding: 10px 0;
    outline: none;
    transition: 0.3s;
    font-family: inherit;
}

/* Label styling */
.input-group label {
    position: absolute;
    top: 10px;
    left: 0;
    color: #666;
    font-size: 1rem;
    transition: 0.3s;
    pointer-events: none;
    /* Allows clicking through to input */
}

/* Input Focus Animation (Label moves up) */
.input-group input:focus~label,
.input-group input:not(:placeholder-shown)~label,
.input-group textarea:focus~label,
.input-group textarea:not(:placeholder-shown)~label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--gold-flat);
}

/* The Animated Gold Line */
.line-focus {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background: var(--gold-flat);
    transition: 0.4s ease;
}

.input-group input:focus~.line-focus,
.input-group textarea:focus~.line-focus,
.input-group select:focus~.line-focus {
    width: 100%;
}

/* Select Styling */
.input-group select {
    color: #888;
    cursor: pointer;
}

.input-group select:focus {
    color: #fff;
}

.input-group option {
    background: #111;
    color: #fff;
    padding: 10px;
}

.select-arrow {
    position: absolute;
    right: 0;
    top: 10px;
    color: #666;
    pointer-events: none;
}


/* Submit Button */
.btn-send-req {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 15px 40px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    margin-top: 10px;
}

.btn-send-req:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}


/* --- RIGHT: INFO & MAP --- */
.info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.info-card h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.info-card p {
    color: #aaa;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.icon-gold {
    color: var(--gold-flat);
    font-size: 1.5rem;
    margin-top: 5px;
}


/* --- THE DARK MAP HACK --- */
.map-frame-wrapper {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #333;
}

.map-frame-wrapper iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);

}

.corner-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50px;
    height: 50px;
    border-bottom: 3px solid var(--gold-flat);
    border-right: 3px solid var(--gold-flat);
    z-index: 2;
}

/* Socials */
.social-connect {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #666;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.sc-link {
    width: 40px;
    height: 40px;
    border: 1px solid #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: 0.3s;
}

.sc-link:hover {
    border-color: var(--gold-flat);
    color: var(--gold-flat);
    transform: rotate(360deg);
}


/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .hub-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .form-row {
        flex-direction: column;
        gap: 30px;
    }

    .map-frame-wrapper {
        height: 250px;
    }

    .btn-send-req {
        width: 100%;
        justify-content: center;
    }
}


/* --- PORTAL VIDEO STYLING --- */
.portal-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.portal-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.portal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.portal-label {
    position: absolute;
    z-index: 2;
}


.btn-outline {
    /* Dimensions & Font (Same as Luxury for consistency) */
    padding: 10px 25px;
    font-weight: 700;
    font-size: var(--fs-md);
    text-transform: uppercase;
    border-radius: var(--radius-pill);
    letter-spacing: var(--ls-sm);
    background: transparent;
    border: 1px solid #C5A059;
    color: #C5A059;
    transition: all 0.3s ease;
}

.btn-outline {
    background: var(--gold-gradient);
    /* Background Fill */
    color: var(--bg-black);
    /* Text Dark */
    border-color: transparent;
    box-shadow: 0 0 20px var(--gold-hover-glow);
    /* Glow Effect */
    transform: translateY(-2px);
}


/* =========================================

   GSAP 3D BOOK STYLING (User's Design)

   ========================================= */



/* 1. CONTAINER & LAYOUT */

.gsap-book-section {

    position: relative;

    width: 100%;

    height: 100vh;

    /* Full Screen */

    background: #050505;

    overflow: hidden;



    /* CENTER ALIGNMENT (No Padding) */

    display: flex;

    align-items: center;

    justify-content: center;

}



.book-wrapper {

    width: 100%;

    height: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    perspective: 2500px;

}



/* 2. THE BOOK STRUCTURE */

.the-book-container {

    position: relative;

    width: 1100px;

    /* Original Size */

    height: 650px;

    /* Original Size */

    transform-style: preserve-3d;

    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.8);

}



.book-spine {

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 8px;

    background: #222;

    transform: translateX(-50%);

    border-radius: 4px;

    z-index: 100;

}



/* 3. PAGES (Common Logic) */

.book-page {

    position: absolute;

    top: 0;

    left: 50%;

    /* Right Side */

    width: 50%;

    height: 100%;

    transform-origin: left center;

    /* Pivot Spine */

    transform-style: preserve-3d;

    background: #111;

}

.book-static-left {

    left: 0;

    z-index: 1;

    border-right: 1px solid #222;

}



.book-base-page {

    z-index: 0;

}


.book-face {

    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    backface-visibility: hidden;

    overflow: hidden;

    background: #111;

    border: 1px solid rgba(255, 255, 255, 0.08);

}



.book-front {

    transform: rotateY(0deg);

    z-index: 2;

}



.book-back {

    transform: rotateY(180deg);

    z-index: 1;

}


.book-content {

    padding: 40px;

    height: 100%;

    display: flex;

    flex-direction: column;

    justify-content: center;

    background: linear-gradient(to right, #0a0a0a, #141414 15%);

}



.center-flex {

    align-items: center;

    text-align: center;

}



.book-pg-num {

    font-family: var(--font-logo);

    font-size: 3.5rem;

    position: absolute;

    top: 20px;

    right: 25px;

    color: rgba(255, 255, 255, 0.05);

}



.book-pg-title {

    font-family: var(--font-logo);

    font-size: 2.2rem;

    color: #fff;

    text-transform: uppercase;

    margin: 0;

    line-height: 1.1;

}



.book-pg-desc {

    color: var(--gold-flat);

    font-size: 1rem;

    margin-bottom: 20px;

    font-style: italic;

}



.book-pg-line {

    width: 40px;

    height: 2px;

    background: var(--gold-flat);

    margin-bottom: 25px;

}



.book-price-list {

    list-style: none;

    padding: 0;

    margin: 0;

}



.book-price-list li {

    display: flex;

    align-items: flex-end;

    margin-bottom: 12px;

    font-size: 1rem;

    color: #ccc;

}



.bpl-name {

    color: #eee;

    font-weight: 500;

}



.bpl-dots {

    flex: 1;

    border-bottom: 1px dotted #444;

    margin: 0 8px 5px 8px;

}



.bpl-price {

    color: var(--gold-flat);

    font-weight: 700;

    font-family: var(--font-logo);

}


.book-image {

    width: 100%;

    height: 100%;

    background-size: cover;

    background-position: center;

    position: relative;

}



.book-overlay-dark {

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.3);

}


.book-shadow-overlay,

.book-shadow-overlay-back {

    position: absolute;

    top: 0;

    width: 100%;

    height: 100%;

    pointer-events: none;

    opacity: 0;

    transition: opacity 0.1s;

}



.book-shadow-overlay {

    left: 0;

    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), transparent);

}



.book-shadow-overlay-back {

    right: 0;

    background: linear-gradient(to left, rgba(0, 0, 0, 0.7), transparent);

}

@media (max-width: 1024px) {
    .gsap-book-section {
        height: 100vh;
        padding-top: 80px;
        align-items: flex-start;
    }

    .the-book-container {

        width: 90vw;

        height: 60vh;

        max-width: 400px;

    }

    .book-spine,

    .book-static-left {

        display: none;
    }

    .book-page {

        left: 0;

        width: 100%;

    }

    .book-content {

        padding: 25px;

    }

    .book-pg-title {

        font-size: 1.8rem;
    }

    .book-pg-num {
        font-size: 2.5rem;
        top: 15px;
        right: 15px;

    }

    .book-price-list li {

        font-size: 0.9rem;

        margin-bottom: 10px;

    }

}


/* =========================================

   GSAP BOOK FIX (Header Cut Issue Solved)

   ========================================= */
.gsap-book-section {
    position: relative;
    width: 100%;
    height: 100vh;
    height: 100svh;
    background: #050505;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 130px;
}

@media (max-width: 1024px) {
    .gsap-book-section {
        padding-top: 110px;
        height: auto;
        min-height: 100vh;
    }
}



/* new css */

/* =========================================
   TOP BAR (Split Layout)
   ========================================= */
.top-layer {
    background: #000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
    font-size: 0.9rem;
    position: relative;
    z-index: 1001;
}

.top-bar-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* --- SIDES (Men & Women) --- */
.tb-side {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
}

.tb-left {
    justify-content: flex-start;
}

.tb-right {
    justify-content: flex-end;
    text-align: right;
}

.gold-icon {
    color: var(--gold-flat);
    font-size: 1rem;
}

.tb-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.tb-label {
    color: #888;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.tb-phone {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
}

.tb-phone:hover {
    color: var(--gold-flat);
}

.tb-center {
    flex: 0 0 auto;
    margin: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    color: #fff;
    font-size: 1.1rem;
    transition: 0.3s;
    border: 1px solid transparent;
}

@media (max-width: 768px) {
    .tb-label {
        display: none;
    }

    .tb-phone {
        font-size: 0.8rem;
    }

    .tb-center {
        margin: 0 10px;
    }

    .insta-link {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

/* =========================================
   OFFER POP-UP STYLING
   ========================================= */
.offer-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease-in-out;
}

.offer-popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    position: relative;
    max-width: 500px;
    width: 90%;
    background: #000;
    border: 1px solid var(--gold-flat);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9);
    transform: scale(0.8);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-popup-overlay.show .popup-box {
    transform: scale(1);
}

.popup-img {
    width: 100%;
    height: auto;
    display: block;
}

.popup-close {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 35px;
    height: 35px;
    background: var(--gold-flat);
    color: #000;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
}

.popup-close:hover {
    background: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .popup-box {
        max-width: 90%;
    }

    .popup-close {
        top: -10px;
        right: -10px;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* =========================================
   FLOATING ACTION BUTTON (FAB)
   ========================================= */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9990;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.fab-main-btn {
    width: 60px;
    height: 60px;
    background: var(--gold-flat);
    border: none;
    border-radius: 50%;
    color: #000;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.fab-main-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--gold-flat);
}

.fab-main-btn i {
    position: absolute;
    transition: 0.3s;
}

.close-icon {
    opacity: 0;
    transform: rotate(-90deg);
}

.open-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.fab-container.active .close-icon {
    opacity: 1;
    transform: rotate(0deg);
}

.fab-container.active .open-icon {
    opacity: 0;
    transform: rotate(90deg);
}

.fab-options {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 15px;
    gap: 15px;
    pointer-events: none;
}

.fab-item {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-decoration: none;
    opacity: 0;
    transform: translateY(20px) scale(0.8);
    transition: 0.3s ease;
}

.fab-container.active .fab-options {
    pointer-events: auto;
}

.fab-container.active .fab-item {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.fab-container.active .delay-1 {
    transition-delay: 0.05s;
}

.fab-container.active .delay-2 {
    transition-delay: 0.1s;
}

.fab-container.active .delay-3 {
    transition-delay: 0.15s;
}

.fab-icon-circle {
    width: 50px;
    height: 50px;
    background: #222;
    border: 1px solid var(--gold-flat);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-flat);
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    transition: 0.3s;
    margin-left: 15px;
}

.fab-item:hover .fab-icon-circle {
    background: var(--gold-flat);
    color: #000;
    transform: scale(1.1);
}

.fab-label {
    background: #fff;
    color: #000;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    position: relative;
    transition: 0.3s;
}

/* Little Arrow on Label */
.fab-label::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

/* Hover Label Effect */
.fab-item:hover .fab-label {
    background: var(--gold-flat);
}

.fab-item:hover .fab-label::after {
    border-color: transparent transparent transparent var(--gold-flat);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .fab-container {
        bottom: 20px;
        right: 20px;
    }

    .fab-main-btn {
        width: 55px;
        height: 55px;
    }

    .fab-icon-circle {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .fab-label {
        font-size: 0.8rem;
    }
}



/* =========================================
   ACCORDION MENU STYLING
   ========================================= */

.accordion-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.acc-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s ease;
}

.acc-item.active {
    background: rgba(20, 20, 20, 0.8);
    border-color: var(--gold-flat);
}

.acc-header {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.acc-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.acc-title {
    font-family: var(--font-logo);
    color: #fff;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.acc-icon {
    color: var(--gold-flat);
    font-size: 1rem;
    transition: transform 0.4s ease;
}

.acc-item.active .acc-icon {
    transform: rotate(180deg);
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out;
    background: rgba(0, 0, 0, 0.2);
}

.menu-list-compact {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
}

.menu-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.m-info h4 {
    font-family: var(--font-logo);
    color: #eee;
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    letter-spacing: 1px;
}

.m-info p {
    font-family: var(--font-body);
    color: #aaa;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.m-price {
    font-family: var(--font-logo);
    color: var(--gold-flat);
    font-size: 1.2rem;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .menu-row {
        align-items: flex-start;
    }

    .m-price {
        font-size: 1.1rem;
        padding-left: 10px;
    }
}


/* =========================================
   ACCORDION CONTENT FIX (Force Colors)
   ========================================= */
.acc-body {
    background: rgba(255, 255, 255, 0.05);
}

.menu-list-compact {
    padding: 20px 25px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    list-style: none !important;
    margin: 0 !important;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.menu-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.m-info h4 {
    color: #ffffff !important;
    font-family: var(--font-logo, sans-serif);
    font-size: 1.1rem;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.m-info p {
    color: #aaaaaa !important;
    font-family: sans-serif;
    font-size: 0.85rem;
    margin: 0;
    font-style: italic;
}

.m-price {
    color: #D4AF37 !important;
    font-family: var(--font-logo, sans-serif);
    font-size: 1.2rem;
    font-weight: 700;
}

.acc-item.active .acc-body {
    visibility: visible !important;
    opacity: 1 !important;
}