/* ==========================================================================
   R.braids - Luxury Braiding Studio Design System & Stylesheet
   ========================================================================== */

/* CSS Variables / Theme Tokens */
:root {
    --bg-main: #130a06;
    --bg-hero-gradient: radial-gradient(circle at 70% 30%, #2b170e 0%, #140b07 50%, #0a0402 100%);
    --bg-card: #1c0e08;
    
    --color-gold-cream: #ebd3b4;
    --color-gold-script: #e6b464;
    --color-gold-accent: #d9a861;
    --color-gold-hover: #f0c37f;
    --color-text-muted: #bcae9e;
    --color-text-bright: #f5ece1;
    --color-dark-btn-text: #1d0f07;
    
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-script: 'Alex Brush', cursive;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

    --transition-smooth: cubic-bezier(0.25, 1, 0.5, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    background-image: var(--bg-hero-gradient);
    background-attachment: fixed;
    color: var(--color-text-bright);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 24px 0;
    transition: background 0.3s ease, padding 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background: rgba(19, 10, 6, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(217, 168, 97, 0.1);
}

.header-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Brand Logo */
.brand-logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 75px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.5));
    transition: transform 0.3s var(--transition-smooth);
}

.brand-logo:hover .logo-image {
    transform: scale(1.03);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    font-size: 1.08rem;
    font-weight: 500;
    color: #dfd3c4;
    letter-spacing: 0.5px;
    position: relative;
    padding: 6px 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold-cream);
}

.nav-link.active {
    color: var(--color-gold-cream);
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-gold-accent);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(217, 168, 97, 0.6);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-gold-accent);
    transition: width 0.3s ease, left 0.3s ease;
    border-radius: 2px;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

/* Header Action Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-header-book {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    padding: 10px 26px;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.2);
}

.btn-header-book:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.35);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    background: transparent;
    color: var(--color-gold-accent);
    font-size: 1.6rem;
    padding: 6px;
}

.nav-close-btn,
.nav-backdrop {
    display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 110px;
    padding-bottom: 50px;
    overflow: hidden;
}

.hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
    filter: brightness(0.92) contrast(1.05);
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(19, 10, 6, 0.98) 0%,
        rgba(19, 10, 6, 0.92) 35%,
        rgba(19, 10, 6, 0.65) 55%,
        rgba(19, 10, 6, 0.25) 75%,
        rgba(19, 10, 6, 0.1) 100%
    );
    pointer-events: none;
}

.hero-container {
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Left Hero Content */
.hero-content {
    max-width: 680px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.8rem;
    line-height: 1.02;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--color-gold-cream);
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    margin-bottom: 4px;
}

.title-line {
    display: block;
}

.hero-script {
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--color-gold-script);
    font-weight: 400;
    margin-top: -6px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(230, 180, 100, 0.2);
}

.hero-description {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    font-weight: 400;
    max-width: 520px;
    margin-bottom: 36px;
}

/* Primary CTA Button */
.hero-cta-wrapper {
    margin-bottom: 50px;
}

.btn-primary-cta {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    padding: 16px 36px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(217, 168, 97, 0.25);
    transition: all 0.3s var(--transition-smooth);
}

.btn-primary-cta:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(217, 168, 97, 0.4);
}

/* Contact Info Row */
.hero-contact-info {
    display: flex;
    align-items: center;
    gap: 40px;
    padding-top: 10px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 500;
    color: #e5d8ca;
    transition: color 0.3s ease;
}

.contact-item:hover {
    color: var(--color-gold-cream);
}

.contact-icon {
    color: var(--color-gold-accent);
    font-size: 1.2rem;
}



/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-up {
    animation: fadeInUp 0.9s var(--transition-smooth) forwards;
}

.animate-fade-in {
    animation: fadeIn 1.2s var(--transition-smooth) forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

/* ==========================================================================
   Booking Modal
   ========================================================================== */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 3, 0.85);
    backdrop-filter: blur(8px);
}

.modal-card {
    position: relative;
    width: 90%;
    max-width: 480px;
    background: #1c0f09;
    border: 1px solid rgba(217, 168, 97, 0.3);
    border-radius: 16px;
    padding: 36px 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.3s var(--transition-smooth);
}

.booking-modal.active .modal-card {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: transparent;
    color: var(--color-text-muted);
    font-size: 1.8rem;
    transition: color 0.2s ease;
}

.modal-close:hover {
    color: var(--color-gold-accent);
}

.modal-header {
    margin-bottom: 24px;
    text-align: center;
}

.modal-header h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
}

.modal-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

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

.booking-form label {
    display: block;
    font-size: 0.85rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
    font-weight: 500;
}

.booking-form input,
.booking-form select {
    width: 100%;
    padding: 12px 14px;
    background: #120905;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 8px;
    color: var(--color-text-bright);
    font-family: inherit;
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
    outline: none;
    border-color: var(--color-gold-accent);
}

.btn-full {
    width: 100%;
    margin-top: 10px;
}

/* ==========================================================================
   Responsive Layout Breakpoints
   ========================================================================== */
@media (max-width: 1100px) {
    .hero-title {
        font-size: 4rem;
    }
    .hero-script {
        font-size: 2.8rem;
    }
    .header-container {
        padding: 0 24px;
    }
    .hero-container {
        padding: 0 24px;
    }
}

@media (max-width: 900px) {
    .hero-bg-overlay {
        background: linear-gradient(
            to top,
            rgba(19, 10, 6, 0.95) 0%,
            rgba(19, 10, 6, 0.85) 60%,
            rgba(19, 10, 6, 0.5) 100%
        );
    }

    .hero-container {
        text-align: center;
        padding-top: 20px;
    }

    .hero-content {
        max-width: 100%;
        align-items: center;
        margin: 0 auto;
    }

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

    .hero-script {
        font-size: 2.5rem;
    }

    .hero-description {
        max-width: 100%;
    }

    .hero-contact-info {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .mobile-toggle {
        display: block;
        position: relative;
        z-index: 110;
        cursor: pointer;
    }

    .nav-close-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: transparent;
        color: var(--color-gold-accent);
        font-size: 2.2rem;
        cursor: pointer;
        line-height: 1;
        transition: transform 0.2s ease, color 0.2s ease;
    }

    .nav-close-btn:hover {
        color: var(--color-gold-cream);
        transform: scale(1.1);
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 5, 3, 0.75);
        backdrop-filter: blur(5px);
        -webkit-backdrop-filter: blur(5px);
        z-index: 102;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .nav-backdrop.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 290px;
        height: 100vh;
        background: #180d08;
        border-left: 1px solid rgba(217, 168, 97, 0.2);
        box-shadow: -10px 0 35px rgba(0, 0, 0, 0.8);
        padding: 100px 32px 40px;
        z-index: 105;
        transition: right 0.4s var(--transition-smooth);
    }

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

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 1.1rem;
    }

    .header-actions {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.6rem;
    }

    .hero-script {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .btn-primary-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 1rem;
    }

    .hero-contact-info {
        flex-direction: column;
        gap: 12px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.about-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Column: Overlapping Collage Visual */
.about-visual-col {
    display: flex;
    justify-content: center;
    position: relative;
}

.about-collage-wrapper {
    position: relative;
    width: 100%;
    max-width: 580px;
    padding-bottom: 50px;
}

/* Leaf Accent */
.leaf-accent {
    position: absolute;
    bottom: -10px;
    left: -40px;
    width: 130px;
    height: 190px;
    z-index: 1;
    pointer-events: none;
}

/* Main Back Image */
.collage-img-main-wrap {
    width: 360px;
    height: 470px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(45, 28, 18, 0.14);
    position: relative;
    z-index: 2;
    transition: transform 0.6s var(--transition-smooth);
}

.collage-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-img-main-wrap:hover {
    transform: scale(1.02);
}

/* Secondary Overlapping Front Image */
.collage-img-sub-wrap {
    position: absolute;
    bottom: 0;
    right: 20px;
    width: 270px;
    height: 350px;
    border-radius: 24px;
    overflow: hidden;
    border: 8px solid #eae0d2;
    box-shadow: 0 20px 45px rgba(45, 28, 18, 0.18);
    z-index: 3;
    transition: transform 0.6s var(--transition-smooth);
}

.collage-img-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.collage-img-sub-wrap:hover {
    transform: scale(1.03) translateY(-6px);
}

/* Right Column: About Content */
.about-content-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 20px;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #9e7953;
    text-transform: uppercase;
    margin-bottom: 14px;
    display: block;
}

.about-title {
    margin-bottom: 24px;
}

.title-serif {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.1;
    color: #271b13;
}

.title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 3.1rem;
    font-weight: 400;
    color: #271b13;
    margin-top: -6px;
    letter-spacing: 0.5px;
}

.about-text {
    font-size: 1.05rem;
    color: #4a3b30;
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 520px;
}

.about-text p {
    margin-bottom: 16px;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.btn-dark-cta {
    background-color: #20140e;
    color: #eae0d2;
    padding: 14px 34px;
    font-size: 0.98rem;
    font-weight: 600;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(32, 20, 14, 0.2);
    transition: all 0.3s var(--transition-smooth);
}

.btn-dark-cta:hover {
    background-color: #38251b;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(32, 20, 14, 0.35);
}

/* Scroll reveal utility */
.scroll-reveal {
    opacity: 0;
    transform: translateY(35px);
    transition: opacity 0.8s ease-out, transform 0.8s var(--transition-smooth);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive About Section */
@media (max-width: 1024px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .about-visual-col {
        justify-content: center;
    }
    .about-content-col {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
    .about-text {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .about-section {
        padding: 70px 0;
    }
    .about-collage-wrapper {
        padding-bottom: 40px;
    }
    .collage-img-main-wrap {
        width: 260px;
        height: 350px;
    }
    .collage-img-sub-wrap {
        width: 200px;
        height: 260px;
        right: 0;
    }
    .leaf-accent {
        left: -10px;
        width: 90px;
        height: 140px;
    }
    .title-serif {
        font-size: 2.4rem;
    }
    .title-script {
        font-size: 2.3rem;
    }
}

/* ==========================================================================
   Services Section & Carousel
   ========================================================================== */
.services-section {
    background-color: #110804;
    background-image: radial-gradient(circle at 50% 50%, #201007 0%, #110804 70%);
    padding: 110px 0;
    position: relative;
}

.services-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.gold-text {
    color: var(--color-gold-accent);
}

.services-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.services-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e4b676, #c5934f);
    border-radius: 2px;
    margin: 16px auto 0;
}

/* Carousel Container */
.services-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.services-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 35px;
}

.services-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Service Card */
.service-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background-color: #1d1009;
    border-radius: 20px;
    border: 1px solid rgba(217, 168, 97, 0.15);
    overflow: hidden;
    position: relative;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 168, 97, 0.45);
    box-shadow: 0 20px 45px rgba(217, 168, 97, 0.2);
}

.card-image-wrap {
    height: 260px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.service-card:hover .card-img {
    transform: scale(1.06);
}

/* Round Badge Icon */
.card-badge-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #e4b676 0%, #b88647 100%);
    border-radius: 50%;
    color: #1d0f07;
    margin: -44px auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #1d1009;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
    font-size: 1.25rem;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.card-badge-icon svg {
    width: 22px;
    height: 22px;
}

.service-card:hover .card-badge-icon {
    transform: scale(1.12);
}

.card-body {
    padding: 0 24px 28px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.card-title {
    font-family: var(--font-body);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-bottom: 8px;
}

.card-subtitle {
    font-size: 0.8rem;
    color: #e4b676;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.card-price-list {
    list-style: none;
    padding: 0;
    margin: 4px 0 22px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.card-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 6px;
    border-bottom: 1px dashed rgba(217, 168, 97, 0.15);
    font-size: 0.88rem;
    transition: background 0.2s ease;
}

.card-price-list li:hover {
    background: rgba(228, 182, 118, 0.08);
}

.card-price-list li:last-child {
    border-bottom: none;
}

.length-name {
    color: var(--color-text-muted, #d3c4b7);
    font-weight: 500;
}

.length-price {
    color: #e4b676;
    font-weight: 700;
    font-size: 0.95rem;
}

.btn-card-book {
    background: transparent;
    color: var(--color-gold-accent);
    border: 1px solid var(--color-gold-accent);
    padding: 10px 24px;
    font-size: 0.88rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: auto;
}

.btn-card-book:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.3);
}

/* Services Info Banner (Instructions & Colors) */
.services-info-banner {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.info-box {
    background: #1d1009;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 16px;
    padding: 28px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.info-box:hover {
    transform: translateY(-4px);
    border-color: rgba(217, 168, 97, 0.5);
}

.info-box-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.info-box-header .info-icon {
    font-size: 1.4rem;
    color: #e4b676;
}

.info-box-header h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-gold-cream);
    margin: 0;
}

.info-box p {
    color: #d3c4b7;
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 8px;
}

.info-box .sub-info {
    margin-top: 14px;
    font-size: 0.86rem;
    color: #bfa795;
    line-height: 1.5;
}

.color-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 12px 0 14px;
}

.color-tag {
    background: rgba(228, 182, 118, 0.12);
    color: #e4b676;
    border: 1px solid rgba(228, 182, 118, 0.3);
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

@media (max-width: 768px) {
    .services-info-banner {
        grid-template-columns: 1fr;
    }
}

/* Navigation Arrows */
.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    z-index: 10;
    transition: all 0.3s var(--transition-smooth);
}

.carousel-nav-btn:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(217, 168, 97, 0.4);
}

.carousel-nav-btn.prev-btn {
    left: 0;
}

.carousel-nav-btn.next-btn {
    right: 0;
}

/* Dots Indicators */
.carousel-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(217, 168, 97, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--color-gold-accent);
    width: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(217, 168, 97, 0.5);
}

/* Responsive Carousel Breakpoints */
@media (max-width: 1100px) {
    .service-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 768px) {
    .services-carousel-wrapper {
        padding: 0 10px;
    }
    .carousel-nav-btn {
        display: none;
    }
    .service-card {
        flex: 0 0 100%;
    }
    .services-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Why Choose Us Section
   ========================================================================== */
.why-us-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.why-us-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.why-us-header {
    text-align: center;
    margin-bottom: 60px;
}

.brown-text {
    color: #9e7953;
}

.why-us-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.why-us-title-divider {
    width: 60px;
    height: 3px;
    background: #9e7953;
    border-radius: 2px;
    margin: 16px auto 0;
}

.why-us-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.why-us-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 20px 0 40px;
}

.why-us-carousel-track {
    display: flex;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Why Us Card */
.why-us-card {
    flex: 0 0 33.3333%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 30px;
    position: relative;
}

.why-us-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 10%;
    height: 80%;
    width: 1px;
    background: rgba(158, 121, 83, 0.3);
}

.why-us-card:last-child::after {
    display: none;
}

/* Double Circle Badge */
.why-icon-circle {
    width: 88px;
    height: 88px;
    border: 1.5px solid #9e7953;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease;
}

.icon-inner {
    width: 66px;
    height: 66px;
    background-color: #6b4929;
    border-radius: 50%;
    color: #eae0d2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(107, 73, 41, 0.25);
}

.why-us-card:hover .why-icon-circle {
    transform: scale(1.08);
    border-color: #6b4929;
}

.why-card-title {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 700;
    color: #271b13;
    margin-bottom: 12px;
}

.why-card-text {
    font-size: 0.98rem;
    color: #57473b;
    line-height: 1.6;
    max-width: 270px;
}

/* Dark Buttons & Dots for Light Background */
.carousel-nav-btn.dark-btn {
    background: linear-gradient(135deg, #2a1b12 0%, #150b06 100%);
    color: var(--color-gold-cream);
}

.carousel-nav-btn.dark-btn:hover {
    background: linear-gradient(135deg, #402a1d 0%, #20120b 100%);
    box-shadow: 0 8px 25px rgba(32, 20, 14, 0.4);
}

.carousel-dots.dark-dots .dot {
    background: rgba(107, 73, 41, 0.25);
}

.carousel-dots.dark-dots .dot.active {
    background: #6b4929;
    box-shadow: 0 0 10px rgba(107, 73, 41, 0.4);
}

/* Responsive Why Choose Us Breakpoints */
@media (max-width: 1024px) {
    .why-us-card {
        flex: 0 0 50%;
    }
}

@media (max-width: 640px) {
    .why-us-carousel-wrapper {
        padding: 0 10px;
    }
    .why-us-card {
        flex: 0 0 100%;
        padding: 0 15px;
    }
    .why-us-card::after {
        display: none;
    }
    .why-us-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.gallery-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.gallery-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.gallery-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.gallery-title-divider {
    width: 60px;
    height: 3px;
    background: #9e7953;
    border-radius: 2px;
    margin-top: 14px;
}

.btn-outline-brown {
    background: transparent;
    border: 1.5px solid #a07d57;
    color: #271b13;
    padding: 12px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s var(--transition-smooth);
}

.btn-outline-brown:hover {
    background-color: #a07d57;
    color: #eae0d2;
    box-shadow: 0 6px 20px rgba(160, 125, 87, 0.3);
    transform: translateY(-2px);
}

/* Gallery Carousel */
.gallery-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.gallery-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 15px 0 35px;
}

.gallery-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Gallery Card */
.gallery-card {
    flex: 0 0 calc((100% - 48px) / 3);
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(45, 28, 18, 0.14);
    transition: transform 0.4s var(--transition-smooth), box-shadow 0.4s ease;
}

.gallery-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(45, 28, 18, 0.25);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.gallery-card:hover .gallery-img {
    transform: scale(1.08);
}

/* Overlay & Zoom Icon */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(28, 16, 10, 0.7);
    backdrop-filter: blur(2px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s ease;
    color: #eae0d2;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-zoom-icon {
    font-size: 2rem;
    color: #e4b676;
    margin-bottom: 12px;
    transform: scale(0.7);
    transition: transform 0.3s var(--transition-smooth);
}

.gallery-card:hover .gallery-zoom-icon {
    transform: scale(1);
}

.gallery-tag {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Lightbox Modal */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 5, 3, 0.92);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-full-img {
    max-width: 100%;
    max-height: 78vh;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85);
    border: 2px solid rgba(217, 168, 97, 0.3);
    object-fit: contain;
}

.lightbox-caption {
    color: #ebd3b4;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-top: 16px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: transparent;
    color: #eae0d2;
    font-size: 2.6rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.lightbox-close:hover {
    color: #e4b676;
}

/* Responsive Gallery Breakpoints */
@media (min-width: 1300px) {
    .gallery-card {
        flex: 0 0 calc((100% - 72px) / 4);
    }
}

@media (max-width: 1024px) {
    .gallery-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .gallery-card {
        flex: 0 0 calc((100% - 24px) / 2);
    }
}

@media (max-width: 640px) {
    .gallery-section {
        padding: 70px 0;
    }
    .gallery-carousel-wrapper {
        padding: 0 10px;
    }
    .gallery-card {
        flex: 0 0 100%;
        height: 240px;
    }
    .gallery-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Testimonials Section
   ========================================================================== */
.testimonials-section {
    background-color: #110804;
    background-image: radial-gradient(circle at 50% 50%, #1f0f07 0%, #110804 70%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.testimonials-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-top: 6px;
    letter-spacing: 0.5px;
}

.testimonials-quote-badge {
    font-size: 2.2rem;
    color: var(--color-gold-accent);
    margin-top: 10px;
    opacity: 0.85;
}

/* Carousel */
.testimonials-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.testimonials-carousel-track-container {
    overflow: hidden;
    width: 100%;
    padding: 25px 0 35px;
}

.testimonials-carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s var(--transition-smooth);
    will-change: transform;
}

/* Testimonial Card */
.testimonial-card {
    flex: 0 0 calc((100% - 56px) / 3);
    background: rgba(26, 14, 8, 0.95);
    border-radius: 18px;
    border: 1px solid rgba(197, 146, 79, 0.35);
    padding: 28px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(228, 182, 118, 0.65);
    box-shadow: 0 18px 45px rgba(217, 168, 97, 0.18);
}

.top-quote-mark {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: #110804;
    padding: 0 10px;
    color: var(--color-gold-accent);
    font-family: var(--font-heading);
    font-size: 2.4rem;
    line-height: 1;
}

.testimonial-avatar-wrap {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-gold-accent);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.testimonial-avatar {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
}

.star-rating {
    color: var(--color-gold-accent);
    font-size: 0.95rem;
    margin-bottom: 10px;
    display: flex;
    gap: 4px;
}

.testimonial-quote {
    font-size: 0.95rem;
    color: #d8c7b6;
    line-height: 1.55;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonial-author {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-gold-cream);
}

/* Responsive Testimonials Breakpoints */
@media (max-width: 1100px) {
    .testimonial-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }
}

@media (max-width: 768px) {
    .testimonials-carousel-wrapper {
        padding: 0 10px;
    }
    .testimonial-card {
        flex: 0 0 100%;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .testimonials-title {
        font-size: 2.8rem;
    }
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact-section {
    background-color: #eae0d2;
    color: #2b1f17;
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.leaf-accent-left {
    position: absolute;
    bottom: -10px;
    left: -30px;
    width: 140px;
    height: 220px;
    pointer-events: none;
    z-index: 1;
}

.leaf-accent-right {
    position: absolute;
    top: -10px;
    right: -30px;
    width: 140px;
    height: 220px;
    transform: scaleX(-1);
    pointer-events: none;
    z-index: 1;
}

.contact-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.15fr 0.9fr;
    gap: 40px;
    align-items: stretch;
}

/* Column 1: Info Details */
.contact-info-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 600;
    color: #271b13;
    margin-top: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-detail-row {
    display: flex;
    align-items: center;
    gap: 16px;
    color: #4a3b30;
    font-size: 1.02rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

a.contact-detail-row:hover {
    color: #9e7953;
}

.detail-icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: rgba(158, 121, 83, 0.15);
    color: #9e7953;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.contact-detail-row:hover .detail-icon-wrap {
    transform: scale(1.08);
    background-color: rgba(158, 121, 83, 0.25);
}

.detail-text-group {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.sub-schedule {
    font-size: 0.9rem;
    color: #7a6657;
}

/* Column 2: Form */
.contact-form-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-main-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.dual-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.contact-main-form input,
.contact-main-form textarea {
    width: 100%;
    padding: 15px 20px;
    background-color: #e5dad0;
    border: 1px solid rgba(160, 125, 87, 0.35);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.98rem;
    color: #271b13;
    transition: all 0.3s ease;
}

.contact-main-form input::placeholder,
.contact-main-form textarea::placeholder {
    color: #8c7667;
}

.contact-main-form input:focus,
.contact-main-form textarea:focus {
    outline: none;
    border-color: #9e7953;
    background-color: #ede2d8;
    box-shadow: 0 0 12px rgba(158, 121, 83, 0.2);
}

.btn-send-message {
    align-self: flex-start;
    padding: 14px 34px;
    font-size: 1rem;
}

/* Column 3: Promo Book Box */
.contact-book-box-col {
    display: flex;
}

.book-promo-card {
    background-color: #decbba;
    border-radius: 20px;
    padding: 38px 30px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(45, 28, 18, 0.1);
    border: 1px solid rgba(160, 125, 87, 0.2);
    transition: transform 0.4s var(--transition-smooth);
}

.book-promo-card:hover {
    transform: translateY(-4px);
}

.book-promo-icon-wrap {
    font-size: 3rem;
    color: #6b4929;
    margin-bottom: 18px;
}

.book-promo-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: #271b13;
    line-height: 1.15;
    margin-bottom: 14px;
}

.book-promo-text {
    font-size: 0.98rem;
    color: #57473b;
    line-height: 1.65;
    margin-bottom: 28px;
}

.btn-promo-book {
    width: 100%;
    padding: 14px 0;
    font-size: 1.02rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer {
    background-color: #0d0603;
    color: var(--color-text-muted);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(217, 168, 97, 0.15);
}

.footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-logo {
    height: 75px;
    width: auto;
    object-fit: contain;
    margin-bottom: 10px;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.footer-tagline {
    font-size: 0.95rem;
    color: var(--color-gold-cream);
    letter-spacing: 0.5px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 30px 0;
}

.footer-links a {
    font-size: 0.95rem;
    color: #dfd3c4;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-gold-accent);
}

.footer-socials {
    display: flex;
    gap: 24px;
    margin-bottom: 30px;
}

.footer-socials a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #1c0e08;
    border: 1px solid rgba(217, 168, 97, 0.25);
    color: var(--color-gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-socials a:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: var(--color-dark-btn-text);
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(217, 168, 97, 0.3);
}

.footer-copyright {
    font-size: 0.88rem;
    color: #8c7b6d;
    border-top: 1px solid rgba(217, 168, 97, 0.1);
    padding-top: 24px;
    width: 100%;
}

/* Responsive Contact & Footer Breakpoints */
@media (max-width: 1100px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    .contact-book-box-col {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-book-box-col {
        grid-column: span 1;
    }
    .dual-inputs {
        grid-template-columns: 1fr;
    }
    .btn-send-message {
        width: 100%;
    }
    .contact-title {
        font-size: 2.8rem;
    }
    .footer-links {
        gap: 16px;
        flex-direction: column;
    }
}

/* ==========================================================================
   Makeup Services Section
   ========================================================================== */
.makeup-section {
    background-color: #150904;
    background-image: radial-gradient(circle at 50% 30%, #2a140b 0%, #120703 80%);
    padding: 110px 0;
    position: relative;
    overflow: hidden;
}

.makeup-leaf svg path {
    fill: #e4b676;
}

.makeup-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 3;
}

.makeup-header {
    text-align: center;
    margin-bottom: 65px;
}

.makeup-title {
    margin-top: 8px;
}

.makeup-title .title-serif {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    line-height: 1.05;
}

.makeup-title .title-script {
    display: block;
    font-family: var(--font-script);
    font-size: 3.2rem;
    color: var(--color-gold-script);
    margin-top: -8px;
}

.makeup-title-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #e4b676, #c5934f);
    border-radius: 2px;
    margin: 16px auto 0;
}

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

/* Premium Arched Price Card (Matching User's Photo) */
.makeup-arch-card {
    background: #ecd9c7;
    color: #3b2216;
    border-radius: 220px 220px 24px 24px;
    padding: 48px 36px 36px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(228, 182, 118, 0.35);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.makeup-arch-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.75), 0 0 0 2px rgba(228, 182, 118, 0.6);
}

.arch-card-header {
    text-align: center;
    margin-bottom: 28px;
    position: relative;
}

.arch-flower-emblem {
    width: 68px;
    height: 68px;
    margin: 0 auto 12px;
}

.arch-brand-subtitle {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #8c5b41;
    display: block;
    margin-bottom: 6px;
}

.arch-main-title {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 700;
    color: #4a1d17;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 0;
}

.arch-script-subtitle {
    font-family: var(--font-script);
    font-size: 2.7rem;
    color: #934c3e;
    margin-top: -6px;
}

.makeup-category-block {
    margin-bottom: 26px;
}

.category-banner {
    background-color: #cb8e78;
    color: #2b120c;
    padding: 10px 16px;
    text-align: center;
    border-radius: 6px;
    margin-bottom: 16px;
    box-shadow: 0 4px 12px rgba(74, 29, 23, 0.15);
}

.category-banner h4 {
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    margin: 0;
    text-transform: uppercase;
}

.makeup-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.makeup-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 12px;
    border-bottom: 1px dashed rgba(140, 91, 65, 0.3);
}

.makeup-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.item-info {
    display: flex;
    flex-direction: column;
    padding-right: 12px;
}

.item-name {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2e170e;
}

.item-desc {
    font-size: 0.82rem;
    color: #755243;
    margin-top: 3px;
    line-height: 1.35;
}

.item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #4a1d17;
}

.arch-card-footer {
    margin-top: 28px;
}

/* Feature Cards Grid */
.makeup-cards-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.makeup-feature-card {
    background-color: #1d1009;
    border-radius: 18px;
    border: 1px solid rgba(217, 168, 97, 0.18);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}

.makeup-feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 168, 97, 0.45);
}

.makeup-img-wrap {
    height: 210px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.makeup-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.makeup-feature-card:hover .makeup-img {
    transform: scale(1.06);
}

.makeup-badge-tag {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #1d0f07;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 6px 14px;
    border-radius: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
}

.makeup-card-info {
    padding: 22px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.makeup-card-info h3 {
    font-family: var(--font-body);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-bottom: 8px;
}

.makeup-card-info p {
    font-size: 0.88rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 18px;
}

.makeup-card-info .btn-card-book {
    margin-top: auto;
}

@media (max-width: 1100px) {
    .makeup-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .makeup-arch-card {
        max-width: 520px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .makeup-cards-col {
        grid-template-columns: 1fr;
    }
    .makeup-arch-card {
        border-radius: 120px 120px 20px 20px;
        padding: 35px 22px 28px;
    }
    .arch-main-title {
        font-size: 2.5rem;
    }
    .makeup-title .title-serif {
        font-size: 2.6rem;
    }
    .makeup-title .title-script {
        font-size: 2.4rem;
    }
}

/* ==========================================================================
   Wigs & Hair Collection Section Styles
   ========================================================================== */
.wigs-hair-section {
    position: relative;
    padding: 120px 0;
    background: radial-gradient(circle at 50% 20%, #2a160d 0%, #150b07 60%, #0d0603 100%);
    overflow: hidden;
    border-top: 1px solid rgba(217, 168, 97, 0.12);
    border-bottom: 1px solid rgba(217, 168, 97, 0.12);
}

.wigs-bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.09) 0%, rgba(140, 91, 65, 0.04) 50%, transparent 75%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
}

.wigs-leaf {
    position: absolute;
    top: 15%;
    width: 140px;
    pointer-events: none;
    z-index: 1;
}

.wigs-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.wigs-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 45px;
}

.wigs-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px 0 15px;
}

.wigs-title .title-serif {
    font-family: var(--font-heading);
    font-size: 3.4rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    letter-spacing: 0.5px;
    line-height: 1.15;
}

.wigs-title .title-script {
    font-family: var(--font-script);
    font-size: 3rem;
    color: var(--color-gold-script);
    line-height: 1.1;
    text-shadow: 0 2px 14px rgba(230, 180, 100, 0.25);
}

.wigs-title-divider {
    width: 90px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-accent), transparent);
    margin: 18px auto 20px;
    position: relative;
}

.wigs-title-divider::after {
    content: '◆';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 0.75rem;
    color: var(--color-gold-accent);
    background: #190d08;
    padding: 0 6px;
}

.wigs-header-desc {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 760px;
    margin: 0 auto;
}

/* Category Filter Bar */
.wigs-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 50px;
}

.wig-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: rgba(29, 15, 9, 0.85);
    color: var(--color-gold-cream);
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.wig-filter-btn i {
    color: var(--color-gold-accent);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.wig-filter-btn:hover {
    background: rgba(43, 23, 14, 0.95);
    border-color: var(--color-gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.2);
}

.wig-filter-btn:hover i {
    transform: scale(1.15);
}

.wig-filter-btn.active {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #1a0d06;
    border-color: #f0c37f;
    font-weight: 700;
    box-shadow: 0 6px 22px rgba(217, 168, 97, 0.35);
    transform: translateY(-2px);
}

.wig-filter-btn.active i {
    color: #1a0d06;
}

/* Wigs Pure Photo Cards Grid */
.wigs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.wig-photo-card {
    background: #190d07;
    border-radius: 16px;
    border: 1px solid rgba(217, 168, 97, 0.22);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: transform 0.35s var(--transition-smooth), border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    opacity: 1;
}

.wig-photo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 168, 97, 0.6);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.15);
}

.wig-photo-wrap {
    aspect-ratio: 3 / 4;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #24130b 0%, #0c0502 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.wig-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--transition-smooth);
}

.wig-photo-card:hover .wig-photo {
    transform: scale(1.06);
}

/* Badges on Photo */
.photo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 12px;
    border-radius: 20px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.55);
}

.photo-badge.sale-badge {
    background: linear-gradient(135deg, #e4b676 0%, #b8823b 100%);
    color: #170b05;
}

.photo-badge.virgin-badge {
    background: linear-gradient(135deg, #f0c37f 0%, #9e692a 100%);
    color: #170b05;
}

.photo-badge.blend-badge {
    background: linear-gradient(135deg, #d49a75 0%, #87492c 100%);
    color: #ffffff;
}

.photo-badge.ext-badge {
    background: linear-gradient(135deg, #c7a47a 0%, #7d5028 100%);
    color: #ffffff;
}

/* Hover Zoom & Preview Overlay */
.photo-overlay {
    position: absolute;
    inset: 0;
    background: rgba(19, 10, 6, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-gold-cream);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.photo-overlay i {
    font-size: 1.6rem;
    color: var(--color-gold-accent);
}

.photo-overlay span {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wig-photo-card:hover .photo-overlay {
    opacity: 1;
}

/* Wigs Section Responsive Breakpoints */
@media (max-width: 1200px) {
    .wigs-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

@media (max-width: 992px) {
    .wigs-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .wigs-title .title-serif {
        font-size: 2.8rem;
    }
    .wigs-title .title-script {
        font-size: 2.5rem;
    }
}

@media (max-width: 640px) {
    .wigs-hair-section {
        padding: 70px 0;
    }
    .wigs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .wigs-title .title-serif {
        font-size: 2.2rem;
    }
    .wigs-title .title-script {
        font-size: 2rem;
    }
    .wig-filter-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .photo-badge {
        font-size: 0.65rem;
        padding: 4px 8px;
        top: 8px;
        left: 8px;
    }
}

/* ==========================================================================
   14. BODY CARE PRODUCTS & HAIR CARE, GROWTH PRODUCTS SECTION
   ========================================================================== */

.products-section {
    position: relative;
    padding: 110px 0;
    background: #140904;
    overflow: hidden;
    border-top: 1px solid rgba(217, 168, 97, 0.12);
    border-bottom: 1px solid rgba(217, 168, 97, 0.12);
}

.products-bg-glow {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.08) 0%, rgba(135, 73, 44, 0.04) 50%, transparent 75%);
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* Section Header */
.products-header {
    text-align: center;
    margin-bottom: 42px;
}

.products-title {
    margin-top: 8px;
    margin-bottom: 14px;
}

.products-title .title-serif {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--color-gold-cream);
    display: block;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.products-title .title-script {
    font-family: var(--font-script);
    font-size: 2.9rem;
    color: var(--color-gold-script);
    display: block;
    margin-top: 2px;
}

.products-title-divider {
    width: 90px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--color-gold-accent), transparent);
    margin: 18px auto 16px;
}

.products-header-desc {
    max-width: 680px;
    margin: 0 auto;
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Products Filter Bar */
.products-filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 45px;
}

.prod-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 20px;
    background: rgba(29, 15, 9, 0.85);
    color: var(--color-gold-cream);
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.prod-filter-btn i {
    color: var(--color-gold-accent);
    font-size: 0.82rem;
    transition: transform 0.3s ease;
}

.prod-filter-btn:hover {
    background: rgba(43, 23, 14, 0.95);
    border-color: var(--color-gold-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 168, 97, 0.2);
}

.prod-filter-btn:hover i {
    transform: scale(1.15);
}

.prod-filter-btn.active {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #1a0d06;
    border-color: #f0c37f;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.35);
    transform: translateY(-2px);
}

.prod-filter-btn.active i {
    color: #1a0d06;
}

/* Products Pure Photo Cards Grid (3 Columns) */
.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.prod-photo-card {
    background: #190d07;
    border-radius: 16px;
    border: 1px solid rgba(217, 168, 97, 0.22);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.45);
    cursor: pointer;
    transition: transform 0.35s var(--transition-smooth), border-color 0.35s ease, box-shadow 0.35s ease, opacity 0.3s ease;
    opacity: 1;
}

.prod-photo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(217, 168, 97, 0.6);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.15);
}

/* Product Photo Wrap */
.prod-photo-wrap {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #24130b 0%, #0c0502 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s var(--transition-smooth);
}

.prod-photo-card:hover .prod-photo {
    transform: scale(1.06);
}

/* Products Responsive Breakpoints */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 85px 0;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .products-title .title-serif {
        font-size: 2.6rem;
    }
    .products-title .title-script {
        font-size: 2.3rem;
    }
}

@media (max-width: 580px) {
    .products-section {
        padding: 70px 0;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .products-title .title-serif {
        font-size: 2.1rem;
    }
    .products-title .title-script {
        font-size: 1.9rem;
    }
    .prod-filter-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   DEDICATED ABOUT PAGE STYLES (about.html)
   ========================================================================== */

/* Page Hero Banner */
.page-hero-section {
    position: relative;
    padding: 190px 0 110px;
    background: #0d0603;
    overflow: hidden;
    border-bottom: 1px solid rgba(217, 168, 97, 0.2);
    text-align: center;
}

.page-hero-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    transform: scale(1.05);
    filter: brightness(0.62) saturate(1.15);
    transition: transform 10s ease;
}

.page-hero-section:hover .page-hero-bg-img {
    transform: scale(1.08);
}

.page-hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 35%, rgba(20, 10, 6, 0.68) 0%, rgba(13, 6, 3, 0.88) 70%, rgba(8, 3, 1, 0.96) 100%),
                linear-gradient(180deg, rgba(16, 8, 4, 0.75) 0%, rgba(16, 8, 4, 0.45) 50%, rgba(16, 8, 4, 0.95) 100%);
    backdrop-filter: blur(1.5px);
    -webkit-backdrop-filter: blur(1.5px);
}

.page-hero-bg-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 650px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.18) 0%, rgba(217, 168, 97, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    z-index: 1;
}

.page-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    background: rgba(25, 13, 8, 0.7);
    padding: 8px 22px;
    border-radius: 30px;
    border: 1px solid rgba(217, 168, 97, 0.2);
    backdrop-filter: blur(10px);
}

.breadcrumbs a {
    color: #dfd3c4;
    transition: color 0.3s ease;
}

.breadcrumbs a:hover {
    color: var(--color-gold-accent);
}

.breadcrumbs .separator {
    color: rgba(217, 168, 97, 0.5);
    font-size: 0.8rem;
}

.breadcrumbs .current {
    color: var(--color-gold-accent);
    font-weight: 600;
}

/* Luxury Badge */
.luxury-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(217, 168, 97, 0.15) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 1px solid rgba(217, 168, 97, 0.35);
    color: var(--color-gold-accent);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text-bright);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.page-hero-title .gold-script {
    font-family: var(--font-script);
    color: var(--color-gold-script);
    font-weight: normal;
    font-size: 4.6rem;
    display: inline-block;
    margin-left: 10px;
}

.page-hero-description {
    font-size: 1.22rem;
    color: #d8cbba;
    max-width: 780px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 300;
}

/* About Detailed Story Section */
.story-detailed-section {
    padding: 120px 0;
    position: relative;
    background: #140b07;
}

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

.story-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 70px;
    align-items: center;
}

/* Visual Collage Side */
.story-visual-side {
    position: relative;
}

.story-collage-wrap {
    position: relative;
    padding: 25px;
}

.story-img-main-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 2px solid rgba(217, 168, 97, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 5;
    max-width: 440px;
}

.story-img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.story-img-main-frame:hover .story-img-main {
    transform: scale(1.05);
}

.story-img-secondary-frame {
    position: absolute;
    bottom: -30px;
    right: 10px;
    width: 250px;
    height: 310px;
    border-radius: 20px;
    overflow: hidden;
    border: 3px solid #1c0e08;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(217, 168, 97, 0.2);
    z-index: 3;
}

.story-img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.story-img-secondary-frame:hover .story-img-secondary {
    transform: scale(1.06);
}

/* Floating Gold Badge */
.story-floating-badge {
    position: absolute;
    top: -15px;
    left: -10px;
    background: linear-gradient(135deg, #e4b676 0%, #b8833c 100%);
    color: #140803;
    padding: 16px 24px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.4);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 14px;
}

.story-floating-badge .badge-icon {
    font-size: 2rem;
}

.story-floating-badge .badge-text-title {
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1.1;
}

.story-floating-badge .badge-text-sub {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Story Content Side */
.story-content-side {
    position: relative;
}

.section-eyebrow {
    display: inline-block;
    color: var(--color-gold-accent);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.story-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    line-height: 1.18;
    color: var(--color-text-bright);
    margin-bottom: 24px;
}

.story-title .highlight {
    color: var(--color-gold-cream);
    font-style: italic;
}

.story-paragraphs {
    color: #c7b8a7;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.story-paragraphs p {
    margin-bottom: 18px;
}

.story-quote-card {
    background: rgba(28, 14, 8, 0.85);
    border-left: 4px solid var(--color-gold-accent);
    border-radius: 0 16px 16px 0;
    padding: 24px 30px;
    margin-bottom: 35px;
    border-top: 1px solid rgba(217, 168, 97, 0.15);
    border-right: 1px solid rgba(217, 168, 97, 0.15);
    border-bottom: 1px solid rgba(217, 168, 97, 0.15);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.story-quote-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-style: italic;
    color: var(--color-gold-cream);
    line-height: 1.5;
    margin-bottom: 12px;
}

.story-quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.story-quote-author .author-name {
    font-weight: 700;
    color: var(--color-text-bright);
    font-size: 0.95rem;
}

.story-quote-author .author-role {
    color: var(--color-gold-accent);
    font-size: 0.85rem;
}

.story-signature {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--color-gold-script);
    margin-top: 6px;
    line-height: 1;
}

/* Core Pillars Section */
.pillars-section {
    padding: 110px 0;
    background: radial-gradient(circle at 50% 50%, #1d100a 0%, #100603 100%);
    position: relative;
    border-top: 1px solid rgba(217, 168, 97, 0.1);
    border-bottom: 1px solid rgba(217, 168, 97, 0.1);
}

.pillars-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.pillars-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text-bright);
    margin-bottom: 15px;
}

.pillars-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.pillar-card {
    background: #180c07;
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 20px;
    padding: 38px 26px;
    text-align: center;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold-accent), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pillar-card:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 168, 97, 0.55);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 168, 97, 0.15);
    background: #1f0f09;
}

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

.pillar-icon-box {
    width: 75px;
    height: 75px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.2) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 1px solid rgba(217, 168, 97, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--color-gold-accent);
    font-size: 1.8rem;
    transition: transform 0.4s var(--transition-smooth), background 0.3s ease;
}

.pillar-card:hover .pillar-icon-box {
    transform: scale(1.1) rotate(6deg);
    background: radial-gradient(circle, rgba(217, 168, 97, 0.35) 0%, rgba(217, 168, 97, 0.1) 100%);
    color: var(--color-gold-hover);
}

.pillar-name {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-gold-cream);
    margin-bottom: 14px;
    font-weight: 600;
}

.pillar-desc {
    color: #bfaea0;
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Signature Process Section */
.process-section {
    padding: 120px 0;
    background: #140b07;
    position: relative;
}

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

.process-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 70px;
}

.process-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-text-bright);
    margin-bottom: 16px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    position: relative;
}

.process-card {
    background: #1a0d07;
    border: 1px solid rgba(217, 168, 97, 0.22);
    border-radius: 20px;
    padding: 36px 26px;
    position: relative;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
}

.process-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 168, 97, 0.2);
}

.process-step-badge {
    position: absolute;
    top: -18px;
    left: 26px;
    background: linear-gradient(135deg, #e4b676 0%, #b8833c 100%);
    color: #140803;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 5px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.process-card-icon {
    font-size: 2.2rem;
    color: var(--color-gold-accent);
    margin-top: 10px;
    margin-bottom: 20px;
}

.process-card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-text-bright);
    margin-bottom: 12px;
    font-weight: 600;
}

.process-card-desc {
    color: #bfaea0;
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Stats Counter Section */
.stats-section {
    padding: 85px 0;
    background: radial-gradient(circle at 50% 50%, #29150b 0%, #120704 100%);
    border-top: 1px solid rgba(217, 168, 97, 0.2);
    border-bottom: 1px solid rgba(217, 168, 97, 0.2);
    position: relative;
}

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

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -15px;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(217, 168, 97, 0.25);
}

.stat-number-wrap {
    font-family: var(--font-heading);
    font-size: 3.6rem;
    font-weight: 700;
    color: var(--color-gold-cream);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stat-title {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 4px;
}

.stat-subtext {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Stylist Spotlight Section */
.stylist-spotlight-section {
    padding: 120px 0;
    background: #140b07;
    position: relative;
}

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

.stylist-card {
    background: linear-gradient(145deg, #1d0f08 0%, #130703 100%);
    border: 1px solid rgba(217, 168, 97, 0.3);
    border-radius: 28px;
    padding: 60px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 60px;
    align-items: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65), 0 0 30px rgba(217, 168, 97, 0.1);
}

.stylist-photo-wrap {
    position: relative;
    border-radius: 22px;
    overflow: hidden;
    border: 2px solid rgba(217, 168, 97, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
    aspect-ratio: 3.5 / 4.5;
}

.stylist-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.stylist-badge-floating {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(20, 10, 6, 0.9);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(217, 168, 97, 0.4);
    border-radius: 12px;
    padding: 10px 16px;
    text-align: center;
    color: var(--color-gold-accent);
    font-size: 0.85rem;
    font-weight: 600;
}

.stylist-info {
    position: relative;
}

.stylist-name {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-text-bright);
    margin-bottom: 6px;
}

.stylist-role {
    color: var(--color-gold-accent);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 22px;
    display: block;
    letter-spacing: 0.5px;
}

.stylist-bio {
    color: #c9baa9;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.stylist-bio p {
    margin-bottom: 14px;
}

.stylist-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.stylist-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(217, 168, 97, 0.08);
    border: 1px solid rgba(217, 168, 97, 0.18);
    padding: 12px 18px;
    border-radius: 12px;
    font-size: 0.95rem;
    color: var(--color-text-bright);
}

.stylist-highlight-item i {
    color: var(--color-gold-accent);
    font-size: 1.1rem;
}

/* Studio Amenities Section */
.amenities-section {
    padding: 110px 0;
    background: radial-gradient(circle at 50% 50%, #1c0e08 0%, #0d0502 100%);
    border-top: 1px solid rgba(217, 168, 97, 0.12);
}

.amenities-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.amenities-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-text-bright);
    margin-bottom: 14px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.amenity-card {
    background: #170b06;
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 18px;
    padding: 32px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.35s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(217, 168, 97, 0.12);
    background: #1d0e08;
}

.amenity-icon-wrap {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: rgba(217, 168, 97, 0.12);
    border: 1px solid rgba(217, 168, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-accent);
    font-size: 1.5rem;
}

.amenity-info-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
    font-weight: 600;
}

.amenity-info-desc {
    color: #b5a494;
    font-size: 0.92rem;
    line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-section {
    padding: 120px 0;
    background: #140b07;
    position: relative;
    border-top: 1px solid rgba(217, 168, 97, 0.12);
}

.faq-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.faq-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-text-bright);
    margin-bottom: 14px;
}

.faq-accordion-wrap {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #190c07;
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
    border-color: var(--color-gold-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(217, 168, 97, 0.1);
}

.faq-question-btn {
    width: 100%;
    background: transparent;
    padding: 24px 28px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    color: var(--color-text-bright);
    font-size: 1.15rem;
    font-weight: 600;
    font-family: var(--font-heading);
    transition: color 0.3s ease;
}

.faq-item.active .faq-question-btn,
.faq-question-btn:hover {
    color: var(--color-gold-cream);
}

.faq-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(217, 168, 97, 0.12);
    border: 1px solid rgba(217, 168, 97, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-accent);
    font-size: 0.9rem;
    transition: transform 0.35s ease, background 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
    background: var(--color-gold-accent);
    color: #140803;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--transition-smooth), padding 0.4s ease;
    padding: 0 28px;
    color: #c2b19f;
    font-size: 1rem;
    line-height: 1.75;
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding: 0 28px 24px;
}

/* Call To Action Grand Banner */
.about-cta-section {
    padding: 110px 0;
    background: radial-gradient(circle at 50% 50%, #2f170c 0%, #120603 100%);
    position: relative;
    border-top: 1px solid rgba(217, 168, 97, 0.2);
    text-align: center;
}

.about-cta-box {
    max-width: 960px;
    margin: 0 auto;
    padding: 70px 40px;
    background: linear-gradient(135deg, rgba(35, 17, 9, 0.9) 0%, rgba(18, 8, 4, 0.95) 100%);
    border: 2px solid rgba(217, 168, 97, 0.35);
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(217, 168, 97, 0.15);
    position: relative;
    overflow: hidden;
}

.about-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.2) 0%, transparent 70%);
    filter: blur(40px);
    pointer-events: none;
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--color-text-bright);
    margin-bottom: 16px;
    line-height: 1.15;
}

.about-cta-title .gold-script {
    font-family: var(--font-script);
    color: var(--color-gold-script);
    font-size: 4rem;
    font-weight: normal;
    display: inline-block;
}

.about-cta-desc {
    font-size: 1.18rem;
    color: #d8c9b8;
    max-width: 680px;
    margin: 0 auto 35px;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-cta-large {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #140803;
    padding: 16px 36px;
    font-size: 1.08rem;
    font-weight: 700;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(217, 168, 97, 0.35);
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-large:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d4a05a 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(217, 168, 97, 0.5);
}

.btn-cta-outline {
    background: transparent;
    border: 2px solid rgba(217, 168, 97, 0.5);
    color: var(--color-text-bright);
    padding: 15px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.btn-cta-outline:hover {
    background: rgba(217, 168, 97, 0.15);
    border-color: var(--color-gold-accent);
    color: var(--color-gold-cream);
    transform: translateY(-3px);
}

/* Responsive Media Queries for About Page */
@media (max-width: 1100px) {
    .page-hero-title {
        font-size: 3.2rem;
    }
    .page-hero-title .gold-script {
        font-size: 3.8rem;
    }
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    .story-visual-side {
        max-width: 500px;
        margin: 0 auto;
    }
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .stylist-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 40px;
    }
    .stylist-photo-wrap {
        max-width: 320px;
        margin: 0 auto;
    }
    .stylist-highlights {
        justify-content: center;
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero-section {
        padding: 140px 0 70px;
    }
    .page-hero-title {
        font-size: 2.6rem;
    }
    .page-hero-title .gold-script {
        font-size: 3rem;
    }
    .page-hero-description {
        font-size: 1.05rem;
    }
    .story-detailed-section,
    .pillars-section,
    .process-section,
    .stylist-spotlight-section,
    .amenities-section,
    .faq-section,
    .about-cta-section {
        padding: 75px 0;
    }
    .story-title,
    .pillars-title,
    .process-title,
    .stylist-name,
    .amenities-title,
    .faq-title,
    .about-cta-title {
        font-size: 2.3rem;
    }
    .about-cta-title .gold-script {
        font-size: 2.8rem;
    }
    .story-img-secondary-frame {
        width: 180px;
        height: 220px;
        bottom: -20px;
        right: 0;
    }
    .story-floating-badge {
        padding: 10px 16px;
        top: -10px;
        left: 0;
    }
    .story-floating-badge .badge-icon {
        font-size: 1.5rem;
    }
    .story-floating-badge .badge-text-title {
        font-size: 1rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .stat-item:nth-child(2)::after {
        display: none;
    }
    .stat-number-wrap {
        font-size: 2.8rem;
    }
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    .about-cta-box {
        padding: 45px 20px;
    }
}

@media (max-width: 540px) {
    .page-hero-title {
        font-size: 2.1rem;
    }
    .page-hero-title .gold-script {
        font-size: 2.4rem;
    }
    .pillars-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        grid-template-columns: 1fr;
    }
    .stat-item::after {
        display: none !important;
    }
    .stylist-highlights {
        grid-template-columns: 1fr;
    }
    .about-cta-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-cta-large,
    .btn-cta-outline {
        width: 100%;
    }
}

/* ==========================================================================
   DEDICATED SERVICES PAGE STYLES (services.html)
   ========================================================================== */

/* Category Filter Bar */
.service-category-nav {
    position: sticky;
    top: 90px;
    z-index: 50;
    background: rgba(19, 10, 6, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    padding: 16px 0;
    border-top: 1px solid rgba(217, 168, 97, 0.15);
    border-bottom: 1px solid rgba(217, 168, 97, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.45);
}

.service-category-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.service-tab-btn {
    background: rgba(28, 14, 8, 0.8);
    border: 1px solid rgba(217, 168, 97, 0.25);
    color: #dfd3c4;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-tab-btn:hover {
    background: rgba(217, 168, 97, 0.18);
    border-color: var(--color-gold-accent);
    color: var(--color-gold-cream);
    transform: translateY(-2px);
}

.service-tab-btn.active {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    border-color: #f0c37f;
    color: #140803;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.35);
}

.service-tab-btn i {
    font-size: 0.95rem;
}

/* Service Menu Section */
.services-menu-section {
    padding: 90px 0 120px;
    background: #130a06;
    position: relative;
}

.services-menu-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.service-section-block {
    margin-bottom: 95px;
    scroll-margin-top: 170px;
}

.service-block-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 55px;
}

.service-block-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    color: var(--color-gold-cream);
    margin-top: 6px;
    line-height: 1.15;
}

.service-block-subtitle {
    color: #c7b8a7;
    font-size: 1.05rem;
    margin-top: 10px;
    line-height: 1.6;
}

/* 3-Column Services Full Grid */
.services-full-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Service Card Detailed */
.service-card-detailed {
    background-color: #1d1009;
    border-radius: 22px;
    border: 1px solid rgba(217, 168, 97, 0.2);
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
    transition: transform 0.4s var(--transition-smooth), border-color 0.4s ease, box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
}

.service-card-detailed:hover {
    transform: translateY(-8px);
    border-color: rgba(217, 168, 97, 0.55);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.65), 0 0 25px rgba(217, 168, 97, 0.15);
}

.service-card-detailed .card-image-wrap {
    height: 280px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-card-detailed .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--transition-smooth);
}

.service-card-detailed:hover .card-img {
    transform: scale(1.06);
}

.service-card-detailed .card-body {
    padding: 0 28px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-grow: 1;
}

.service-card-detailed .card-badge-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #e4b676 0%, #b88647 100%);
    border-radius: 50%;
    color: #1d0f07;
    margin: -46px auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #1d1009;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    font-size: 1.35rem;
    position: relative;
    z-index: 5;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.service-card-detailed:hover .card-badge-icon {
    transform: scale(1.12);
}

.service-card-detailed .card-title {
    font-family: var(--font-heading);
    font-size: 1.85rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
}

.service-card-detailed .card-subtitle {
    font-size: 0.82rem;
    color: var(--color-gold-accent);
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.service-card-detailed .card-desc {
    color: #bfaea0;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 20px;
    text-align: center;
}

.service-card-detailed .card-price-list {
    width: 100%;
    list-style: none;
    margin-bottom: 24px;
    border-top: 1px dashed rgba(217, 168, 97, 0.2);
    padding-top: 14px;
    flex-grow: 1;
}

.service-card-detailed .card-price-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #e5d8ca;
    border-bottom: 1px solid rgba(217, 168, 97, 0.08);
}

.service-card-detailed .card-price-list li:last-child {
    border-bottom: none;
}

.service-card-detailed .length-name {
    font-weight: 500;
}

.service-card-detailed .length-price {
    font-weight: 700;
    color: var(--color-gold-cream);
    font-size: 1.05rem;
}

.service-card-detailed .btn-card-book {
    width: 100%;
    background: linear-gradient(135deg, rgba(217, 168, 97, 0.15) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 1px solid rgba(217, 168, 97, 0.4);
    color: var(--color-gold-accent);
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 10px;
    transition: all 0.3s var(--transition-smooth);
    margin-top: auto;
}

.service-card-detailed .btn-card-book:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #140803;
    border-color: #f0c37f;
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.3);
    transform: translateY(-2px);
}

/* Makeup Artistry Cards (2 Columns) */
.makeup-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.makeup-card {
    background: #1c0e08;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 24px;
    padding: 40px;
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 30px;
    align-items: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
}

.makeup-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.15);
}

.makeup-photo-wrap {
    width: 180px;
    height: 180px;
    border-radius: 18px;
    overflow: hidden;
    border: 2px solid rgba(217, 168, 97, 0.3);
}

.makeup-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.makeup-card:hover .makeup-photo {
    transform: scale(1.08);
}

.makeup-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--color-gold-cream);
    margin-bottom: 4px;
}

.makeup-price-badge {
    display: inline-block;
    color: var(--color-gold-accent);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.makeup-desc {
    color: #c0afa0;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 18px;
}

/* Wigs Grid (4 Columns) */
.wigs-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.wig-item-card {
    background: #1a0d07;
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.35s var(--transition-smooth), border-color 0.35s ease;
    display: flex;
    flex-direction: column;
}

.wig-item-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.15);
}

.wig-item-image-wrap {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.wig-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.wig-item-card:hover .wig-item-img {
    transform: scale(1.06);
}

.wig-item-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.wig-item-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
    font-weight: 600;
}

.wig-item-price {
    font-weight: 700;
    color: var(--color-gold-accent);
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.wig-item-desc {
    color: #b5a494;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Products Detailed 3-Column Grid */
.products-detailed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.product-item-card {
    background: #1a0d07;
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
}

.product-item-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.6), 0 0 20px rgba(217, 168, 97, 0.15);
}

.product-item-image-wrap {
    aspect-ratio: 1 / 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 50% 50%, #29150b 0%, #0d0502 100%);
}

.product-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.product-item-card:hover .product-item-img {
    transform: scale(1.06);
}

.product-item-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-item-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-gold-cream);
    margin-bottom: 4px;
    font-weight: 600;
}

.product-item-price {
    font-weight: 700;
    color: var(--color-gold-accent);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.product-item-desc {
    color: #bfaea0;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

/* Services Responsive Media Queries */
@media (max-width: 1150px) {
    .services-full-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .wigs-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .products-detailed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-menu-section {
        padding: 60px 0 90px;
    }
    .service-section-block {
        margin-bottom: 70px;
    }
    .service-block-title {
        font-size: 2.4rem;
    }
    .services-full-grid {
        grid-template-columns: 1fr;
    }
    .makeup-grid {
        grid-template-columns: 1fr;
    }
    .makeup-card {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 30px 20px;
    }
    .makeup-photo-wrap {
        margin: 0 auto;
    }
    .wigs-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    .products-detailed-grid {
        grid-template-columns: 1fr;
    }
    .service-category-nav {
        top: 75px;
    }
}

@media (max-width: 540px) {
    .wigs-showcase-grid {
        grid-template-columns: 1fr;
    }
    .service-tab-btn {
        padding: 8px 16px;
        font-size: 0.82rem;
    }
}

/* ==========================================================================
   DEDICATED CONTACT PAGE STYLES (contact.html)
   ========================================================================== */

/* Top Quick Channels Grid */
.contact-channels-section {
    padding: 70px 0 30px;
    background: #140b07;
    position: relative;
    border-bottom: 1px solid rgba(217, 168, 97, 0.1);
}

.contact-channels-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.channel-card {
    background: #1a0d07;
    border: 1px solid rgba(217, 168, 97, 0.22);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.45);
    transition: all 0.35s var(--transition-smooth);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.channel-card:hover {
    transform: translateY(-7px);
    border-color: var(--color-gold-accent);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.65), 0 0 25px rgba(217, 168, 97, 0.15);
    background: #1f0f09;
}

.channel-icon-wrap {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.25) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 1px solid rgba(217, 168, 97, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-accent);
    font-size: 1.7rem;
    margin-bottom: 20px;
    transition: transform 0.35s ease, background 0.35s ease;
}

.channel-card:hover .channel-icon-wrap {
    transform: scale(1.1) rotate(5deg);
    background: radial-gradient(circle, rgba(217, 168, 97, 0.4) 0%, rgba(217, 168, 97, 0.15) 100%);
    color: var(--color-gold-hover);
}

.channel-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--color-gold-cream);
    margin-bottom: 6px;
    font-weight: 600;
}

.channel-info {
    color: #dfd3c4;
    font-size: 1.12rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.channel-sub {
    color: #b09f90;
    font-size: 0.88rem;
    line-height: 1.5;
    margin-bottom: 20px;
    flex-grow: 1;
}

.btn-channel {
    background: linear-gradient(135deg, rgba(217, 168, 97, 0.15) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 1px solid rgba(217, 168, 97, 0.35);
    color: var(--color-gold-accent);
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-channel:hover {
    background: linear-gradient(135deg, #e4b676 0%, #c5934f 100%);
    color: #140803;
    border-color: #f0c37f;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.3);
}

/* Contact Main Interactive Section */
.contact-main-section {
    padding: 100px 0 120px;
    background: #130a06;
    position: relative;
}

.contact-main-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

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

/* Contact Form Card */
.contact-form-card {
    background: linear-gradient(145deg, #1c0e08 0%, #130703 100%);
    border: 1px solid rgba(217, 168, 97, 0.28);
    border-radius: 26px;
    padding: 50px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 168, 97, 0.08);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--color-gold-cream);
    margin-bottom: 10px;
}

.contact-form-desc {
    color: #c2b2a1;
    font-size: 1rem;
    line-height: 1.6;
}

.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group-lux {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group-lux label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #e5d8ca;
    letter-spacing: 0.5px;
}

.form-group-lux input,
.form-group-lux select,
.form-group-lux textarea {
    background: #150904;
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--color-text-bright);
    font-family: inherit;
    font-size: 0.98rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group-lux input:focus,
.form-group-lux select:focus,
.form-group-lux textarea:focus {
    border-color: var(--color-gold-accent);
    box-shadow: 0 0 15px rgba(217, 168, 97, 0.25);
    background: #1b0c06;
}

.form-group-lux select option {
    background: #1c0e08;
    color: #f5ece1;
}

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

/* Sidebar Side Cards */
.contact-sidebar-wrap {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box-card {
    background: #1a0d07;
    border: 1px solid rgba(217, 168, 97, 0.22);
    border-radius: 22px;
    padding: 36px 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.45);
}

.sidebar-box-title {
    font-family: var(--font-heading);
    font-size: 1.7rem;
    color: var(--color-gold-cream);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-box-title i {
    color: var(--color-gold-accent);
    font-size: 1.3rem;
}

.hours-schedule-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-schedule-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(217, 168, 97, 0.1);
    font-size: 0.95rem;
    color: #dfd3c4;
}

.hours-schedule-list li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.day-badge {
    font-weight: 600;
    color: var(--color-text-bright);
}

.time-badge {
    color: var(--color-gold-accent);
    font-weight: 700;
}

/* Map Embed / Studio Direction Box */
.map-frame-box {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(217, 168, 97, 0.3);
    margin-top: 18px;
    aspect-ratio: 16 / 9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.map-frame-box iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
    filter: invert(90%) hue-rotate(180deg) brightness(85%) contrast(120%);
}

.studio-amenity-highlights {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.studio-amenity-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    color: #c9b9a8;
}

.studio-amenity-item i {
    color: var(--color-gold-accent);
    font-size: 1rem;
}

/* Contact Responsive Breakpoints */
@media (max-width: 1100px) {
    .contact-split-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .contact-channels-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-channels-grid {
        grid-template-columns: 1fr;
    }
    .contact-channels-section {
        padding: 50px 0 20px;
    }
    .contact-main-section {
        padding: 60px 0 90px;
    }
    .contact-form-card {
        padding: 30px 20px;
    }
    .form-two-col {
        grid-template-columns: 1fr;
    }
    .contact-form-title {
        font-size: 2.2rem;
    }
    .sidebar-box-card {
        padding: 28px 20px;
    }
}

/* ==========================================================================
   Dedicated Gallery Page Styles (gallery.html) & Animations
   ========================================================================== */

.gallery-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
}

.gallery-hero-glow {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(217, 168, 97, 0.15) 0%, rgba(217, 168, 97, 0) 70%);
    filter: blur(50px);
    pointer-events: none;
    animation: heroGlowPulse 8s ease-in-out infinite alternate;
}

@keyframes heroGlowPulse {
    0% { transform: scale(0.9) translate(0, 0); opacity: 0.7; }
    100% { transform: scale(1.2) translate(-20px, 20px); opacity: 1; }
}

.gallery-hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.badge-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(30, 16, 10, 0.65);
    border: 1px solid rgba(217, 168, 97, 0.25);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-gold-cream);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    transition: all 0.3s ease;
}

.badge-chip:hover {
    border-color: var(--color-gold-accent);
    transform: translateY(-2px);
    background: rgba(45, 24, 14, 0.85);
}

.badge-chip .gold-icon {
    color: var(--color-gold-script);
}

/* Gallery Showcase Main Section */
.gallery-showcase-section {
    position: relative;
    padding: 80px 0 110px;
    background: linear-gradient(180deg, #100703 0%, #170b06 50%, #0d0502 100%);
}

.gallery-showcase-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.gallery-intro-header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 45px;
}

.gallery-main-title {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-text-bright);
    margin: 10px 0 16px;
}

.gallery-main-title .title-script {
    font-family: var(--font-script);
    font-size: 3.4rem;
    color: var(--color-gold-script);
    font-weight: 400;
    display: block;
    margin-top: -8px;
}

.gallery-intro-text {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

/* Interactive Gallery Toolbar */
.gallery-toolbar {
    background: rgba(28, 14, 8, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 24px;
    padding: 28px 32px;
    margin-bottom: 50px;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Live Search Box */
.gallery-search-box {
    position: relative;
    max-width: 700px;
    margin: 0 auto 24px;
}

.gallery-search-box .search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gold-accent);
    font-size: 1.05rem;
    pointer-events: none;
}

.gallery-search-box input {
    width: 100%;
    padding: 16px 48px 16px 52px;
    background: rgba(14, 6, 3, 0.85);
    border: 1.5px solid rgba(217, 168, 97, 0.25);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.98rem;
    color: var(--color-text-bright);
    outline: none;
    transition: all 0.3s ease;
    box-shadow: inset 0 2px 6px rgba(0, 0, 0, 0.5);
}

.gallery-search-box input:focus {
    border-color: var(--color-gold-hover);
    box-shadow: 0 0 20px rgba(217, 168, 97, 0.3), inset 0 2px 6px rgba(0, 0, 0, 0.5);
    background: rgba(19, 9, 4, 0.95);
}

.gallery-search-box input::placeholder {
    color: rgba(188, 174, 158, 0.6);
    font-size: 0.92rem;
}

.search-clear-btn {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(217, 168, 97, 0.2);
    border: none;
    color: var(--color-gold-cream);
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.search-clear-btn:hover {
    background: var(--color-gold-accent);
    color: #1a0d07;
}

/* Category Filter Tabs */
.gallery-filter-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}

.gallery-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 20px;
    background: rgba(18, 8, 4, 0.7);
    border: 1px solid rgba(217, 168, 97, 0.2);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-tab-btn i {
    font-size: 0.95rem;
    color: var(--color-gold-accent);
    transition: transform 0.3s ease;
}

.tab-count {
    display: inline-block;
    padding: 2px 7px;
    background: rgba(217, 168, 97, 0.15);
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    margin-left: 2px;
    transition: all 0.3s ease;
}

.gallery-tab-btn:hover {
    color: var(--color-text-bright);
    border-color: rgba(217, 168, 97, 0.5);
    background: rgba(38, 19, 11, 0.9);
    transform: translateY(-2px);
}

.gallery-tab-btn:hover i {
    transform: scale(1.15);
}

.gallery-tab-btn.active {
    background: linear-gradient(135deg, #d9a861 0%, #b88640 100%);
    color: #160a04;
    font-weight: 600;
    border-color: #f0c37f;
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.35);
    transform: translateY(-2px);
}

.gallery-tab-btn.active i {
    color: #160a04;
}

.gallery-tab-btn.active .tab-count {
    background: rgba(22, 10, 4, 0.3);
    color: #160a04;
    font-weight: 700;
}

/* Status & Layout Switcher Bar */
.gallery-status-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 16px;
    border-top: 1px solid rgba(217, 168, 97, 0.12);
}

.gallery-results-count {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.gallery-results-count strong {
    color: var(--color-gold-script);
}

.gallery-view-options {
    display: flex;
    gap: 8px;
}

.view-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(18, 8, 4, 0.6);
    border: 1px solid rgba(217, 168, 97, 0.2);
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.view-btn:hover, .view-btn.active {
    background: rgba(217, 168, 97, 0.25);
    color: var(--color-gold-cream);
    border-color: var(--color-gold-accent);
}

/* Gallery Grid Layout */
.gallery-items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 32px;
    transition: all 0.4s ease;
}

.gallery-items-grid.masonry-view {
    column-count: 3;
    column-gap: 30px;
    display: block;
}

.gallery-items-grid.masonry-view .gallery-item-card {
    break-inside: avoid;
    margin-bottom: 30px;
}

/* Gallery Item Card */
.gallery-item-card {
    background: #1c0e08;
    border-radius: 20px;
    border: 1px solid rgba(217, 168, 97, 0.14);
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
    transition: transform 0.4s cubic-bezier(0.2, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, opacity 0.4s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.gallery-item-card.hide-card {
    display: none !important;
}

.gallery-item-card.animated-in {
    animation: cardFadeIn 0.5s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes cardFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gallery-item-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.6), 0 0 25px rgba(217, 168, 97, 0.2);
    border-color: rgba(217, 168, 97, 0.45);
}

/* Card Media / Image */
.card-media-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3.4;
    background: #110603;
    overflow: hidden;
}

.gallery-items-grid.masonry-view .gallery-item-card:nth-child(3n+1) .card-media-wrap {
    aspect-ratio: 4 / 4.8;
}

.gallery-items-grid.masonry-view .gallery-item-card:nth-child(3n+2) .card-media-wrap {
    aspect-ratio: 4 / 3.2;
}

.card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-item-card:hover .card-img {
    transform: scale(1.08);
}

/* Floating Badge */
.card-category-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 6px 12px;
    background: rgba(18, 8, 4, 0.85);
    border: 1px solid rgba(217, 168, 97, 0.3);
    border-radius: 30px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.card-category-badge i {
    color: var(--color-gold-script);
}

/* Hover Action Buttons */
.card-hover-actions {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(14, 6, 3, 0.2) 0%, rgba(14, 6, 3, 0.85) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 3;
}

.gallery-item-card:hover .card-hover-actions {
    opacity: 1;
    visibility: visible;
}

.action-btn {
    padding: 10px 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: all 0.25s ease;
    transform: translateY(15px);
}

.gallery-item-card:hover .action-btn {
    transform: translateY(0);
}

.action-btn.preview-btn {
    background: rgba(255, 255, 255, 0.92);
    color: #1a0d07;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.action-btn.preview-btn:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.action-btn.book-btn {
    background: linear-gradient(135deg, #d9a861 0%, #b88640 100%);
    color: #1a0d07;
    border: 1px solid #f0c37f;
    box-shadow: 0 4px 15px rgba(217, 168, 97, 0.35);
}

.action-btn.book-btn:hover {
    background: linear-gradient(135deg, #f0c37f 0%, #d9a861 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(217, 168, 97, 0.55);
}

/* Card Content Info */
.card-info {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 8px;
    line-height: 1.25;
}

.card-excerpt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    margin-bottom: 16px;
    flex-grow: 1;
}

.card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.tag-pill {
    display: inline-block;
    padding: 3px 9px;
    background: rgba(217, 168, 97, 0.08);
    border: 1px solid rgba(217, 168, 97, 0.15);
    border-radius: 12px;
    font-size: 0.76rem;
    color: var(--color-gold-accent);
    font-weight: 500;
}

/* No Results Message */
.gallery-no-results {
    text-align: center;
    padding: 60px 20px;
    background: rgba(28, 14, 8, 0.6);
    border: 1px dashed rgba(217, 168, 97, 0.3);
    border-radius: 20px;
    margin-top: 30px;
}

.no-results-icon {
    font-size: 3rem;
    color: var(--color-gold-script);
    margin-bottom: 16px;
}

.gallery-no-results h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text-bright);
    margin-bottom: 10px;
}

.gallery-no-results p {
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

/* Guarantee Section on Gallery Page */
.gallery-guarantee-section {
    padding: 60px 0 80px;
    background: #0d0502;
}

.guarantee-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.guarantee-card {
    background: linear-gradient(135deg, rgba(42, 22, 13, 0.85) 0%, rgba(20, 9, 5, 0.95) 100%);
    border: 1.5px solid rgba(217, 168, 97, 0.3);
    border-radius: 26px;
    padding: 48px 56px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(217, 168, 97, 0.1);
}

.guarantee-icon-wrap {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(217, 168, 97, 0.25) 0%, rgba(217, 168, 97, 0.05) 100%);
    border: 2px solid var(--color-gold-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--color-gold-script);
    flex-shrink: 0;
    box-shadow: 0 0 25px rgba(217, 168, 97, 0.3);
}

.guarantee-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-bright);
    margin: 8px 0 14px;
    line-height: 1.2;
}

.guarantee-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 24px;
}

.guarantee-action-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    background: transparent;
    border: 1.5px solid var(--color-gold-accent);
    color: var(--color-gold-cream);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background: var(--color-gold-accent);
    color: #1a0d07;
    box-shadow: 0 6px 20px rgba(217, 168, 97, 0.35);
}

/* Social Section */
.gallery-social-section {
    padding: 60px 0 80px;
    background: linear-gradient(180deg, #0d0502 0%, #150904 100%);
    text-align: center;
}

.social-cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
}

.social-title {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    color: var(--color-text-bright);
    margin: 10px 0 14px;
}

.social-text {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* ==========================================================================
   Interactive Lightbox Modal
   ========================================================================== */
.gallery-lightbox-modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

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

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 2, 1, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    cursor: pointer;
}

.lightbox-dialog {
    position: relative;
    max-width: 1050px;
    width: 100%;
    max-height: 90vh;
    background: #180c07;
    border: 1.5px solid rgba(217, 168, 97, 0.35);
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 35px rgba(217, 168, 97, 0.2);
    overflow: hidden;
    z-index: 2;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.2, 1, 0.3, 1);
}

.gallery-lightbox-modal.active .lightbox-dialog {
    transform: scale(1);
}

.lightbox-btn-close {
    position: absolute;
    top: 16px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(18, 8, 4, 0.85);
    border: 1px solid rgba(217, 168, 97, 0.3);
    color: var(--color-gold-cream);
    font-size: 1.6rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
}

.lightbox-btn-close:hover {
    background: var(--color-gold-accent);
    color: #1a0d07;
    transform: rotate(90deg);
}

/* Lightbox Prev & Next Nav Buttons */
.lightbox-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(22, 10, 5, 0.85);
    border: 1.5px solid rgba(217, 168, 97, 0.4);
    color: var(--color-gold-cream);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.25s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.lightbox-nav-btn:hover {
    background: var(--color-gold-accent);
    color: #160a04;
    transform: translateY(-50%) scale(1.1);
}

.lightbox-nav-btn.prev {
    left: 16px;
}

.lightbox-nav-btn.next {
    right: 16px;
}

/* Lightbox Content Layout */
.lightbox-content-box {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    max-height: 90vh;
}

.lightbox-image-container {
    position: relative;
    background: #0c0401;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 480px;
    overflow: hidden;
}

.lightbox-main-img {
    width: 100%;
    height: 100%;
    max-height: 85vh;
    object-fit: contain;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.lightbox-counter-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    padding: 6px 14px;
    background: rgba(14, 6, 2, 0.85);
    border: 1px solid rgba(217, 168, 97, 0.3);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-gold-cream);
    backdrop-filter: blur(6px);
}

.lightbox-details-panel {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #180c07;
}

.lightbox-category-tag {
    display: inline-block;
    align-self: flex-start;
    padding: 5px 14px;
    background: rgba(217, 168, 97, 0.15);
    border: 1px solid rgba(217, 168, 97, 0.35);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold-script);
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lightbox-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--color-text-bright);
    margin-bottom: 14px;
    line-height: 1.2;
}

.lightbox-desc {
    font-size: 0.96rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    margin-bottom: 22px;
}

.lightbox-tags-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 30px;
}

.lightbox-action-row {
    margin-top: auto;
}

/* Responsive Gallery Breakpoints */
@media (max-width: 1100px) {
    .lightbox-content-box {
        grid-template-columns: 1fr;
        max-height: 85vh;
        overflow-y: auto;
    }
    .lightbox-image-container {
        min-height: 360px;
        max-height: 400px;
    }
    .lightbox-main-img {
        max-height: 380px;
    }
    .lightbox-details-panel {
        padding: 28px 24px;
    }
    .guarantee-card {
        padding: 36px 30px;
        flex-direction: column;
        text-align: center;
    }
    .guarantee-action-row {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .gallery-showcase-container, .guarantee-container {
        padding: 0 20px;
    }
    .gallery-main-title {
        font-size: 2.4rem;
    }
    .gallery-main-title .title-script {
        font-size: 2.6rem;
    }
    .gallery-toolbar {
        padding: 20px 16px;
        border-radius: 18px;
    }
    .gallery-search-box input {
        font-size: 0.88rem;
        padding: 13px 40px 13px 44px;
    }
    .gallery-filter-tabs {
        gap: 8px;
    }
    .gallery-tab-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    .gallery-items-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .gallery-items-grid.masonry-view {
        column-count: 1;
    }
    .lightbox-nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .lightbox-nav-btn.prev {
        left: 8px;
    }
    .lightbox-nav-btn.next {
        right: 8px;
    }
}





