/* CSS RESET & VARIABLES */
:root {
    --color-bg: #12020a; /* Obsidian wine deep luxury dark background */
    --color-surface: rgba(45, 4, 27, 0.45); /* Glassmorphic semitransparent surface */
    --color-primary: #fff2f8; /* Soft-pink off-white high-contrast text */
    --color-accent: #ff69b4; /* Neon Light Pink accent */
    --color-accent-glow: #ff1493; /* Hot Pink glow */
    --color-accent-light: #ffd1dc; /* Pastel Pink highlights */
    --color-muted: #b89db0; /* Muted pinkish lavender for secondary text */
    --color-border: rgba(255, 105, 180, 0.18); /* Translucent neon-pink border */
    --font-headings: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 32px;
    --spacing-xl: 64px;
    --max-width: 1200px;
}

html, body {
    width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body {
    background-color: var(--color-bg);
    color: var(--color-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(255, 20, 147, 0.18) 0%, transparent 50%),
        radial-gradient(circle at 0% 100%, rgba(255, 105, 180, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 100% 50%, rgba(255, 20, 147, 0.06) 0%, transparent 40%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* KEYFRAMES FOR TRANSITIONS & ANIMATIONS */
@keyframes float {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

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

@keyframes neonGlow {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 105, 180, 0.6), 0 0 20px rgba(255, 20, 147, 0.2);
    }
    50% {
        text-shadow: 0 0 14px rgba(255, 105, 180, 0.9), 0 0 30px rgba(255, 20, 147, 0.4);
    }
}

h1, h2, h3, h4 {
    font-family: var(--font-headings);
    font-weight: 600;
    line-height: 1.25;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
    animation: neonGlow 4s ease-in-out infinite;
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    width: 100%;
}

/* SECTION & CONTAINER PROTECTION */
section, footer {
    max-width: 100%;
}

/* AMBIENT GLOW COMPONENT */
section {
    position: relative;
}

section::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(255, 20, 147, 0.08) 0%, transparent 70%);
    top: -100px;
    right: -50px;
    z-index: -1;
    pointer-events: none;
}

/* SCROLL-TRIGGERED REVEAL STYLING */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(-20px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

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

/* Staggered transition delay offsets for sibling cards */
.menu-grid .menu-category:nth-child(2) {
    transition-delay: 0.2s;
}

.steps-grid .step-card:nth-child(2) {
    transition-delay: 0.15s;
}

.steps-grid .step-card:nth-child(3) {
    transition-delay: 0.3s;
}

.safety-grid .safety-card:nth-child(2) {
    transition-delay: 0.15s;
}

.safety-grid .safety-card:nth-child(3) {
    transition-delay: 0.3s;
}

.contact-grid .contact-block:nth-child(2) {
    transition-delay: 0.2s;
}

/* Bento lookbook card staggers */
.lookbook-grid .lookbook-card:nth-child(1) { transition-delay: 0s; }
.lookbook-grid .lookbook-card:nth-child(2) { transition-delay: 0.1s; }
.lookbook-grid .lookbook-card:nth-child(3) { transition-delay: 0.2s; }
.lookbook-grid .lookbook-card:nth-child(4) { transition-delay: 0.3s; }
.lookbook-grid .lookbook-card:nth-child(5) { transition-delay: 0.4s; }
.lookbook-grid .lookbook-card:nth-child(6) { transition-delay: 0.5s; }


/* BUTTONS - BUTTERY SMOOTH 1.2s TRANSITIONS */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border: 1px solid var(--color-accent);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    text-align: center;
    border-radius: 4px;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: scale(1.04) translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.6);
    border-color: var(--color-accent-light);
}

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

.btn-primary:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.8);
}

.btn-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
    color: white;
    font-weight: bold;
}

.btn-whatsapp:hover {
    background-color: #20ba5a;
    border-color: #20ba5a;
    box-shadow: 0 0 20px rgba(37, 211, 102, 0.7);
}

/* HEADER & NAVIGATION */
header {
    border-bottom: 1px solid var(--color-border);
    background-color: rgba(18, 2, 10, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

header.scrolled {
    background-color: rgba(18, 2, 10, 0.95);
    border-bottom-color: rgba(255, 105, 180, 0.45);
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.25);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-block {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.logo-img {
    width: 44px;
    height: 44px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(255, 105, 180, 0.5);
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.logo-block:hover .logo-img {
    transform: rotate(360deg) scale(1.08);
}

.brand-name {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--color-primary);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-links a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    box-shadow: 0 0 8px var(--color-accent);
    transition: width 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-accent-light);
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.6);
}

/* HAMBURGER TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 16px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 110;
}

.menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--color-accent);
    box-shadow: 0 0 6px var(--color-accent);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* X Transformation on Active */
.menu-toggle.active .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* HERO SECTION */
.hero {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.hero h1 {
    font-size: 52px;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.hero-sub {
    font-size: 18px;
    color: var(--color-muted);
    font-weight: 300;
    margin-bottom: var(--spacing-md);
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.hero-image-container {
    border: 1px solid var(--color-border);
    padding: 10px;
    background-color: var(--color-surface);
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    border-radius: 8px;
    animation: float 6s ease-in-out infinite, fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-image-container:hover {
    box-shadow: 0 0 25px rgba(255, 20, 147, 0.5);
    border-color: rgba(255, 105, 180, 0.4);
}

.hero-img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    background-color: #1d0413;
    border-radius: 4px;
}

/* BRANDS ROW */
.brands-row {
    padding: var(--spacing-lg) 0;
    background-color: rgba(18, 2, 10, 0.6);
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    backdrop-filter: blur(6px);
}

.brands-ribbon {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-headings);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-accent-light);
    text-transform: uppercase;
}

.brands-ribbon span {
    text-shadow: 0 0 4px rgba(255, 209, 220, 0.3);
}

.brands-ribbon .divider {
    color: var(--color-border);
    font-weight: 300;
}

/* PREMIUM SERVICE MENU SECTION */
.services {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
}

.section-header h2 {
    font-size: 38px;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 14px;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.4);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.menu-category {
    background-color: var(--color-surface);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu-category:nth-child(1) {
    animation: float 6s ease-in-out infinite;
}

.menu-category:nth-child(2) {
    animation: float 6s ease-in-out infinite 3s;
}

.menu-category:hover {
    transform: scale(1.02) translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.category-title {
    font-family: var(--font-headings);
    font-size: 24px;
    margin-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-sm);
    color: var(--color-accent-light);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.4);
}

.menu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--spacing-sm);
}

.item-info {
    flex-grow: 1;
}

.item-name {
    font-weight: 500;
    font-size: 16px;
    color: var(--color-primary);
    transition: color 0.3s ease;
}

.item-name.typing-active {
    display: inline-block;
    border-right: 2px solid var(--color-accent);
    white-space: normal;
    word-break: break-word;
    padding-right: 4px;
    animation: blinkCursor 0.75s step-end infinite;
}

@keyframes blinkCursor {
    from, to { border-color: transparent }
    50% { border-color: var(--color-accent) }
}

.menu-item:hover .item-name {
    color: var(--color-accent);
}

.services-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.services-cta:hover {
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.cta-text {
    font-size: 15px;
    color: var(--color-primary);
    font-weight: 500;
}

/* HOW IT WORKS */
.how-it-works {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
    margin-top: var(--spacing-lg);
}

.step-card {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.step-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.step-card:nth-child(2) { animation: float 6s ease-in-out infinite 2s; }
.step-card:nth-child(3) { animation: float 6s ease-in-out infinite 4s; }

.step-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.step-number {
    font-family: var(--font-headings);
    font-size: 48px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    opacity: 0.9;
    text-shadow: 0 0 10px rgba(255, 105, 180, 0.6);
}

.step-title {
    font-family: var(--font-headings);
    font-size: 20px;
    font-weight: 600;
    color: var(--color-accent-light);
}

.step-desc {
    font-size: 14px;
    color: var(--color-muted);
}

/* GALLERY & LOOKBOOK SECTION */
.gallery-section {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.lookbook-card {
    position: relative;
    border: 1px solid var(--color-border);
    padding: 6px;
    background-color: var(--color-surface);
    backdrop-filter: blur(8px);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #1d0413;
    border-radius: 4px;
    transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-card:hover {
    transform: scale(1.03);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.5);
    border-color: rgba(255, 105, 180, 0.35);
}

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

/* Bento Span Modifiers */
.lookbook-card.span-col-2 {
    grid-column: span 2;
}

.lookbook-card.span-row-2 {
    grid-row: span 2;
}

.card-label {
    position: absolute;
    bottom: var(--spacing-md);
    left: var(--spacing-md);
    background-color: rgba(18, 2, 10, 0.9); /* Premium solid dark backdrop */
    border: 1px solid var(--color-border);
    border-radius: 4px;
    color: var(--color-primary);
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    z-index: 5;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.lookbook-card:hover .card-label {
    border-color: var(--color-accent);
    box-shadow: 0 0 10px rgba(255, 20, 147, 0.5);
}

/* TESTIMONIALS SECTION - AUTO-SLIDING HORIZONTAL SCROLL */
.testimonials {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.reviews-container {
    overflow: hidden;
    width: 100%;
    position: relative;
    padding: var(--spacing-md) 0 var(--spacing-lg) 0;
}

/* Slide track sliding automatically under linear loop keyframe */
.reviews-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: scrollTestimonials 38s linear infinite;
}

.reviews-track:hover {
    animation-play-state: paused; /* Pause scrolling when user hovers over any card */
}

@keyframes scrollTestimonials {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* Moves seamless repeating set beautifully */
    }
}

.review-card {
    position: relative;
    flex: 0 0 320px; /* Locked width to match track dimensions */
    background-color: var(--color-surface);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    border: 1px solid var(--color-border);
    padding: var(--spacing-lg);
    padding-top: calc(var(--spacing-lg) + 12px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.quote-icon {
    position: absolute;
    top: 8px;
    left: 20px;
    font-family: var(--font-headings);
    font-size: 56px;
    font-weight: 700;
    line-height: 1;
    color: rgba(255, 20, 147, 0.22); /* Oversized elegant hot pink quote mark */
    pointer-events: none;
}

.review-rating {
    color: #ff33a3;
    font-size: 14px;
    letter-spacing: 0.1em;
    z-index: 2;
    text-shadow: 0 0 6px rgba(255, 20, 147, 0.6);
}

.review-text {
    font-size: 14px;
    font-style: italic;
    color: var(--color-primary);
    z-index: 2;
}

.review-author {
    font-family: var(--font-headings);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-accent-light);
    text-align: right;
    border-top: 1px solid var(--color-border);
    padding-top: var(--spacing-sm);
    z-index: 2;
}

/* HYGIENE & SAFETY */
.safety-standards {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.safety-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.safety-card {
    border: 1px solid var(--color-border);
    border-radius: 8px;
    padding: var(--spacing-lg);
    background-color: var(--color-surface);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.safety-card:nth-child(1) { animation: float 6s ease-in-out infinite; }
.safety-card:nth-child(2) { animation: float 6s ease-in-out infinite 2s; }
.safety-card:nth-child(3) { animation: float 6s ease-in-out infinite 4s; }

.safety-card:hover {
    transform: scale(1.03) translateY(-4px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.safety-check {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.6);
    display: inline-block;
    vertical-align: middle;
    margin-right: 12px;
}

.safety-info h3 {
    font-family: var(--font-headings);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent-light);
    margin-bottom: 4px;
}

.safety-info p {
    font-size: 13px;
    color: var(--color-muted);
    line-height: 1.5;
}

/* FAQ SECTION */
.faq {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.faq-item {
    border: 1px solid var(--color-border);
    background-color: var(--color-surface);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item:hover {
    transform: scale(1.01) translateY(-2px);
    box-shadow: 0 0 15px rgba(255, 20, 147, 0.3);
    border-color: rgba(255, 105, 180, 0.3);
}

.faq-item summary {
    padding: var(--spacing-md) var(--spacing-lg);
    font-family: var(--font-headings);
    font-size: 17px;
    font-weight: 600;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none; /* Hide default arrow in Firefox */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Hide default arrow in Chrome/Safari */
}

.faq-item summary::after {
    content: '+';
    font-size: 20px;
    font-weight: 300;
    color: var(--color-accent);
    text-shadow: 0 0 6px var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−';
    color: var(--color-accent-light);
}

.faq-content {
    padding: 0 var(--spacing-lg) var(--spacing-lg) var(--spacing-lg);
    font-size: 14px;
    color: var(--color-muted);
}

/* CONTACT & TIMINGS SECTION */
.contact {
    padding: var(--spacing-xl) 0;
    border-bottom: 1px solid var(--color-border);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
}

.contact-block {
    background-color: var(--color-surface);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-block:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 0 20px rgba(255, 20, 147, 0.4);
    border-color: rgba(255, 105, 180, 0.35);
}

.contact-block h3 {
    font-size: 20px;
    color: var(--color-accent-light);
    border-bottom: 1px solid var(--color-border);
    padding-bottom: var(--spacing-sm);
}

.contact-details {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.contact-details li {
    font-size: 15px;
}

.contact-label {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 0.05em;
    color: var(--color-accent);
    display: block;
    margin-bottom: 4px;
    text-shadow: 0 0 4px rgba(255, 105, 180, 0.3);
}

.contact-value a {
    color: var(--color-primary);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 6px rgba(255, 20, 147, 0.45);
}

/* FOOTER */
footer {
    background-color: rgba(18, 2, 10, 0.9);
    padding: var(--spacing-xl) 0 var(--spacing-lg) 0;
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.footer-brand {
    font-family: var(--font-headings);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--color-accent-light);
    text-shadow: 0 0 8px rgba(255, 105, 180, 0.5);
}

.footer-slogan {
    font-size: 14px;
    color: var(--color-muted);
    margin-top: -10px;
}

.footer-socials {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.footer-socials a {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-muted);
    text-decoration: underline;
    transition: all 0.4s ease;
}

.footer-socials a:hover {
    color: var(--color-accent);
    text-shadow: 0 0 6px rgba(255, 105, 180, 0.5);
}

.footer-copy {
    font-size: 12px;
    color: var(--color-muted);
    border-top: 1px solid var(--color-border);
    width: 100%;
    padding-top: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

/* RESPONSIVE DESIGN (MEDIA QUERIES) */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
    .hero-img {
        height: 350px;
    }
    .safety-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
    }
    .lookbook-card.span-col-2 {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 24px;
        --spacing-xl: 40px;
    }
    .nav-container {
        height: 70px;
        position: relative;
        padding: 0 var(--spacing-lg);
    }
    .menu-toggle {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: rgba(18, 2, 10, 0.95);
        backdrop-filter: blur(20px);
        border-bottom: 1px solid var(--color-border);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 99;
    }
    .nav-menu.active {
        max-height: 350px;
        box-shadow: 0 10px 30px rgba(255, 105, 180, 0.15);
    }
    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: var(--spacing-md) var(--spacing-lg);
    }
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 105, 180, 0.08);
    }
    .nav-links li:last-child {
        border-bottom: none;
    }
    .nav-links a {
        display: block;
        padding: 12px 0;
        font-size: 14px;
        letter-spacing: 0.1em;
    }
    .hero h1 {
        font-size: 38px;
    }
    .hero-actions {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
    }
    .hero-actions .btn {
        flex: 1;
        text-align: center;
        padding: 12px 4px;
        font-size: 11px;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        letter-spacing: 0.04em;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .steps-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 220px;
        gap: var(--spacing-sm);
        grid-auto-flow: dense;
    }
    .lookbook-card.span-col-2 {
        grid-column: span 2;
    }
    .lookbook-card.span-row-2 {
        grid-row: span 1;
    }
    .card-label {
        font-size: 11px;
        padding: 6px 12px;
        bottom: 12px;
        left: 12px;
        letter-spacing: 0.08em;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    /* Automatic horizontal scrolling loop marquee for brands bar on mobile */
    .brands-row {
        overflow: hidden;
        width: 100%;
    }
    
    .brands-ribbon {
        display: flex;
        flex-wrap: nowrap;
        width: max-content;
        justify-content: flex-start;
        animation: scrollBrands 20s linear infinite;
    }
    
    .brands-ribbon:hover {
        animation-play-state: paused;
    }

    @keyframes scrollBrands {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(-50%);
        }
    }
}
