/* ============================================
   Wings Hair Studio - Premium Salon Website
   ============================================ */

/* ===== CSS VARIABLES & DESIGN TOKENS ===== */
:root {
    /* Premium Spa Palette */
    --primary-gold: #B89E78;
    /* Muted matte gold from image */
    --primary-gold-light: #D4C5A9;
    --primary-gold-dark: #8F7652;
    --primary-black: #2C2A26;
    /* Soft black/charcoal */
    --secondary-beige: #F2F0EB;
    /* Light sage/beige background */
    --secondary-cream: #FDFBF7;
    --accent-sage: #E8E6E1;
    --text-muted: #6B665F;

    /* Gradients */
    --gradient-primary: linear-gradient(180deg, #F2F0EB 0%, #E8E6E1 100%);
    --gradient-gold: linear-gradient(135deg, #B89E78 0%, #A68B64 100%);
    --gradient-soft: radial-gradient(circle at top right, #FDFBF7 0%, #F2F0EB 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(44, 42, 38, 0) 0%, rgba(44, 42, 38, 0.4) 100%);

    /* Typography */
    --font-display: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1.5rem;
    --spacing-md: 3rem;
    --spacing-lg: 5rem;
    --spacing-xl: 8rem;

    /* Shadows & Glass */
    --shadow-soft: 0 10px 40px -10px rgba(44, 42, 38, 0.05);
    --shadow-hover: 0 20px 60px -15px rgba(44, 42, 38, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: 1px solid rgba(255, 255, 255, 0.5);

    /* Transitions */
    --transition-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
    /* Apple-style ease */
    --duration-normal: 0.6s;
}

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

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

body {
    font-family: var(--font-body);
    background: var(--secondary-beige);
    color: var(--primary-black);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Apple-style Scroll Reveal */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    transition: opacity 1s var(--transition-smooth), transform 1s var(--transition-smooth);
    will-change: opacity, transform;
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

ul {
    list-style: none;
}

/* ===== UTILITY CLASSES ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled {
    background: transparent;
    /* Subtle cream with transparency */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(184, 158, 120, 0.1);
    box-shadow: 0 10px 30px rgba(44, 42, 38, 0.05);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    /* Reduced padding for a thinner look */
    transition: padding 0.4s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 0.4rem 0;
    /* Thinner when scrolled */
}

.logo {
    display: flex;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    /* Premium larger size */
    font-weight: 700;
    color: var(--primary-black);
    text-decoration: none;
}

.logo i {
    color: var(--primary-gold);
    font-size: 1.8rem;
}

.logo-image {
    height: 100px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    transition: all 0.4s var(--transition-smooth);
}

.navbar.scrolled .logo-image {
    height: 55px;
    /* Shrinks to keep navbar thin when scrolled */
}

.logo:hover .logo-image {
    transform: scale(1.1);
    /* Restored zoom effect */
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    position: relative;
    font-weight: 500;
    color: var(--primary-black);
    transition: var(--transition-normal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-gold);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-black);
    transition: var(--transition-normal);
    border-radius: 2px;
}

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: var(--gradient-gold);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.8rem;
    background: transparent;
    color: white;
    border: 2px solid white;
    border-radius: 50px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-black);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 100px;
    background: var(--gradient-primary);
}

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

.hero-text {
    max-width: 600px;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    margin-bottom: var(--spacing-md);
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 40px;
    border: 1px solid var(--primary-gold);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    color: var(--primary-gold);
    font-weight: 700;
    font-size: 0.9rem;
    font-family: var(--font-body);
}

.badge-text {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-title {
    padding: 10px;
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 400;
    color: var(--primary-black);
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
}

.text-gold {
    color: var(--primary-gold);
    font-style: italic;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: var(--spacing-md);
    max-width: 480px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Custom Organic Buttons */
.btn-custom-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: var(--primary-gold);
    color: white;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Organic shape */
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    border-radius: 12px 24px 12px 24px;
    box-shadow: 4px 4px 0px rgba(184, 158, 120, 0.3);
}

.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 2px 2px 0px rgba(184, 158, 120, 0.5);
    border-radius: 24px 12px 24px 12px;
}

.btn-custom-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    /* Organic shape mostly rounded */
    border-radius: 20px 8px 20px 8px;
}

.btn-custom-outline:hover {
    background: var(--primary-gold);
    background: var(--gradient-primary);
    color: var(--primary-gold);
    border-radius: 8px 20px 8px 20px;
}

/* Hero Visual & Image styling */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-image-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 4/5;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px 20px 20px 20px;
    position: relative;
    z-index: 2;
    display: block;
}

.hero-image-border {
    position: absolute;
    top: 30px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid var(--primary-gold);
    border-radius: 100px 20px 20px 20px;
    z-index: 1;
    transition: all 0.5s ease;
}

.hero-image-container:hover .hero-image-border {
    top: 10px;
    left: 10px;
    right: -10px;
    bottom: -10px;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-slider .hero-img {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1s ease;
}

.hero-slider .hero-img.active {
    opacity: 1;
}


/* ===== SECTION STYLES ===== */
section {
    padding: var(--spacing-xl) 0;
}

/* Adjust for fixed navbar on multi-page layout */
main>section:first-of-type,
body>section:first-of-type {
    padding-top: calc(var(--spacing-xl) + 5px);
}

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

.section-label {
    padding: 20px;
    display: inline-block;
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-xs);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: var(--spacing-sm);
}

.section-description {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

/* Organic Background Decoration */
.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 158, 120, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    transform: translate(-30%, -30%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-md);
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 24px;
    /* More rounded as per image */
    box-shadow: var(--shadow-soft);
    transition: all 0.8s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 400px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(184, 158, 120, 0.2);
}

/* New Card Content Styles */
.card-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-gold);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 400;
    /* Lighter weight for elegance */
    line-height: 1.1;
    margin-bottom: var(--spacing-sm);
    color: var(--primary-black);
}

.service-title span {
    color: var(--primary-gold);
}

.service-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* Button override for cards */
.service-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    border: 1px solid var(--primary-gold);
    border-radius: 50px;
    background: transparent;
    color: var(--primary-gold);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-btn:hover {
    background: var(--primary-gold);
    color: white;
}

/* Organic Image Shapes for Cards */
.card-image-wrapper {
    width: 100%;
    height: 220px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 100px 20px;
    background: rgb(248, 241, 233);

    /* Asymmetric organic shape */
}

.card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 1s var(--transition-smooth);
}

.service-card:hover .card-image-wrapper img {
    transform: scale(1.05);
}

/* Specific Card Variants */
.service-card:nth-child(2) .card-image-wrapper {
    border-radius: 100px 20px 20px 20px;
}

.service-card:nth-child(3) .card-image-wrapper {
    border-radius: 20px 100px 20px 100px;
}

.service-card:nth-child(4) .card-image-wrapper {
    border-radius: 100px 20px 100px 20px;
}

/* ===== HIGHLIGHT SERVICES SECTION (UI Inspired) ===== */
.highlight-services {
    background: #f5eedf;
    /* Dark background as per UI image */
    color: #FDFBF7;
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

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

.highlight-content {
    max-width: 550px;
    z-index: 2;
}

.highlight-label {
    font-size: 0.85rem;
    letter-spacing: 4px;
    font-weight: 600;
    color: black;
    margin-bottom: var(--spacing-sm);
    display: block;
    opacity: 0.9;
}

.highlight-title {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 400;
    margin-bottom: var(--spacing-md);
    color: black;
    line-height: 1;
}

.highlight-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: black;
    margin-bottom: var(--spacing-md);
}

.highlight-text strong {
    color: black;
    font-weight: 600;
}

.btn-read-more {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #B89E78;
    /* Muted gold from UI */
    color: white;
    font-family: var(--font-body);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    border: none;
    cursor: pointer;
}

.btn-read-more:hover {
    background: #8F7652;
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(65, 64, 64, 0.3);
}

.highlight-visual {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.arch-frame {
    width: 100%;
    max-width: 480px;
    aspect-ratio: 4/5;
    position: relative;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: flex-start;

}

/* The Arch Border effect */
.arch-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(31, 28, 28, 0.4);
    border-radius: 200px 200px 0 0;
    pointer-events: none;
}

.arch-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 185px 185px 0 0;
    filter: brightness(0.9);
}

/* Responsive adjustments for highlight services */
@media (max-width: 992px) {
    .highlight-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-lg);
    }

    .highlight-content {
        margin: 0 auto;
    }

    .highlight-visual {
        order: -1;
    }
}

/* ===== STORIES SECTION (REELS) ===== */
.containerWide {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.stories {
    background: var(--secondary-cream);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

/* New Story List Styles */
.stories-list {
    display: grid;
    flex-direction: column;
    gap: 8rem;
    padding: 4rem 0;
}

.story-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    /* Reduced gap */
    align-items: center;
    grid-template-areas: "visual content";
    max-width: 1150px;
    /* Constrain width to pull elements together */
    margin: 0 auto;
    /* Center the item */
}

.story-item.reverse {
    grid-template-areas: "content visual";
}

.story-item .story-visual {
    grid-area: visual;
}

.story-visual {
    position: relative;
    display: flex;
    justify-content: center;
    justify-self: center;
    /* Center horizontally in its column */
}

.reel-wrapper {
    position: relative;
    width: 100%;
    max-width: 420px;
    /* Reduced Size */
    aspect-ratio: 4/5;
    /* Portrait Reel Aspect */
    border-radius: 200px 200px 40px 40px;
    /* Creative Arch Shape */
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
    background: #000;
    border: 8px solid white;
    /* Premium Inner Border */
    outline: 1px solid rgba(184, 158, 120, 0.2);
    /* Subtle Gold Outline */
}

/* Decorative Outer Frame for Visuals */
.story-visual::after {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 40px);
    max-width: 460px;
    height: 100%;
    border: 1px solid rgba(119, 101, 76, 0.3);
    border-radius: 220px 220px 60px 60px;
    z-index: -1;
    pointer-events: none;
}

.reel-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.95);
    transition: transform 1s var(--transition-smooth);
}

.story-item:hover .reel-video {
    transform: scale(1.05);
    filter: brightness(1.05);
}

.story-item.reverse {
    right: auto;
    left: -20px;
}

.story-item:hover {
    transform: translateY(-5px);
}


.story-content {
    grid-area: content;
    padding: 0 1rem;
    justify-self: start;
    /* Standard: pull content towards center */
}

.story-item.reverse .story-content {
    justify-self: end;
    /* Reverse: pull content towards center */
    text-align: right;
}

.story-item.reverse .story-category {
    justify-content: flex-end;
}

.story-item.reverse .story-text {
    margin-left: auto;
}

.story-category {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.2rem;
    color: var(--primary-gold);
    font-size: 0.8rem;
    letter-spacing: 2px;
    font-weight: 700;
}

.story-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--primary-black);
}

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

.story-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 500px;
}

/* Responsive Reels Grid Reset */
@media (max-width: 992px) {

    .story-item,
    .story-item.reverse {
        grid-template-columns: 1fr;
        grid-template-areas: "visual" "content";
        gap: 3rem;
        text-align: center;
        max-width: 100%;
        /* Reset width constraint for mobile */
    }

    .story-content,
    .story-item.reverse .story-content {
        margin: 0 auto;
        justify-self: center;
        text-align: center;
    }

    .story-category,
    .story-item.reverse .story-category {
        justify-content: center;
    }

    .story-text,
    .story-item.reverse .story-text {
        margin: 0 auto 2rem;
    }
}

@media (max-width: 640px) {
    .creative-layout {
        grid-template-columns: 1fr;
    }

    .reel-card {
        aspect-ratio: 4/5;
        border-radius: 40px;
    }
}

@media (max-width: 480px) {
    .stories-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 250px;
    gap: var(--spacing-sm);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 0;
    cursor: pointer;
}

/* Specific Grid Layout Matching Reference */
/* Item 1: Left Tall */
.gallery-item:nth-child(1) {
    grid-column: 1 / 2;
    grid-row: 1 / span 2;
    border-top-left-radius: 100px;
}

/* Item 2: Top Wide Center */
.gallery-item:nth-child(2) {
    grid-column: 2 / 4;
    grid-row: 1 / 2;
}

/* Item 3: Center Left Small */
.gallery-item:nth-child(3) {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

/* Item 4: Center Right Small */
.gallery-item:nth-child(4) {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

/* Item 5: Right Tall */
.gallery-item:nth-child(5) {
    grid-column: 4 / 5;
    grid-row: 1 / span 2;
    border-bottom-right-radius: 100px;
}

/* Remaining Items Layout (6, 7, 8) */
.gallery-item:nth-child(6) {
    grid-column: 1 / 2;
    grid-row: 3;
    border-bottom-left-radius: 100px;
}

.gallery-item:nth-child(7) {
    grid-column: 2 / 4;
    grid-row: 3;
}

.gallery-item:nth-child(8) {
    grid-column: 4 / 5;
    grid-row: 3;
    border-top-right-radius: 100px;
}

/* Mobile Responsive Reset */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 300px;
    }

    .gallery-item:nth-child(n) {
        grid-column: auto;
        grid-row: span 1;
        border-radius: 20px;
    }
}

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

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-overlay);
    color: white;
    padding: var(--spacing-sm);
    transform: translateY(100%);
    transition: var(--transition-normal);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--secondary-cream);
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "story-content story-visual";
    gap: 4rem;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    grid-area: story-content;
}

.about-wrapper .story-visual {
    top: 50px;
    grid-area: story-visual;
}

.about-text {
    color: #555;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.stat-item {
    text-align: center;
    padding: var(--spacing-sm);
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 0.3rem;
}

.stat-label {
    color: #666;
    font-size: 0.9rem;
}

.team-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
}

.team-card {
    background: white;
    padding: var(--spacing-sm);
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-normal);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.team-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: var(--spacing-sm);
    border: 4px solid var(--primary-gold);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.team-role {
    color: var(--primary-gold);
    font-size: 0.9rem;
}


/* About Video Section - Now using story-visual shared components */

/* ===== TESTIMONIALS SECTION V2 ===== */
.testimonials {
    background: var(--secondary-cream);
    padding: var(--spacing-xl) 0;
    color: var(--primary-black);
}

.testimonials-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: var(--spacing-lg);
}

.testimonials .section-title {
    color: var(--primary-black);
    margin-bottom: 0;
}

.carousel-controls {
    display: flex;
    gap: 1rem;
}



.testimonials-carousel-v2 {
    overflow: hidden;
    padding: 1rem 0;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.testimonials-carousel-v2 {
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.testimonials-slider {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card-v2 {
    flex: 0 0 320px;
    background: white;
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid #A68B64;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 350px;
    transition: all 0.4s var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.testimonial-card-v2:hover {
    background: var(--secondary-cream);
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: var(--shadow-hover);
}

.hidden-review {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s var(--transition-smooth);
}

.hidden-review.animated {
    opacity: 1;
    transform: translateY(0);
}

.load-more-container {
    text-align: center;
    margin-top: 2rem;
}

.btn-load-more {
    background: var(--gradient-gold);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-load-more:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 158, 120, 0.3);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: rotate(45deg);
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

.stars {
    color: #FFB800;
    /* Gold/Yellow stars */
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
}

.rating-num {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial-card-v2 .testimonial-text {
    color: var(--primary-black);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: normal;
    margin-bottom: 2rem;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.footer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-info h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 2px;
}

.footer-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 1024px) {
    .testimonial-card-v2 {
        flex: 0 0 300px;
        min-height: 340px;
    }
}

@media (max-width: 768px) {
    .testimonials-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .testimonial-card-v2 {
        flex: 0 0 calc(100vw - 4rem);
        min-height: 320px;
        padding: 1.5rem;
    }

    .testimonials-slider {
        flex-direction: column;
        align-items: center;
    }
}

.carousel-btn:hover {
    background: var(--primary-gold);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

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

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

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--spacing-md);
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active {
    background: var(--primary-gold);
    width: 30px;
    border-radius: 5px;
}

/* ===== BOOKING SECTION ===== */
.booking {
    background: white;
}

.booking-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-lg);
    align-items: start;
}

.booking-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.booking-features {
    display: grid;
    gap: var(--spacing-sm);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: #555;
}

.feature-item i {
    color: var(--primary-gold);
    font-size: 1.2rem;
}

.booking-form {
    background: var(--gradient-primary);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-sm);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-black);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid transparent;
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: white;
    transition: var(--transition-normal);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
}

textarea {
    resize: vertical;
}

/* ===== CONTACT SECTION ===== */
.contact {
    background: var(--secondary-cream);
    padding-bottom: var(--spacing-xl);
}

.contact-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-masonry {
    display: grid;
    grid-template-columns: 280px 1fr 280px;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    align-items: center;
}

/* Left Card - Tall Vertical with Top-Left Large Rounded Curve */
.visit-card {
    grid-row: 1 / 3;
    grid-column: 1;
    border-radius: 80px 20px 20px 20px;
    padding: 3rem 2rem;
    min-height: 400px;
}

/* Top Middle Card - Wide Horizontal */
.call-card {
    grid-row: 1;
    grid-column: 2;
    border-radius: 20px 80px 20px 80px;
    padding: 2.5rem 3rem;
    min-height: 180px;
}

/* Bottom Middle Card - Email Card */
.email-card {
    grid-row: 2;
    grid-column: 2;
    border-radius: 20px 20px 80px 20px;
    padding: 2rem 2rem;
    min-height: 160px;
}

/* Right Card - Tall Vertical with Bottom-Right Large Rounded Curve */
.social-card {
    grid-row: 1 / 3;
    grid-column: 3;
    border-radius: 20px 20px 20px 80px;
    padding: 3rem 2rem;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card {
    border: 1px solid #A68B64;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: all 0.6s var(--transition-smooth);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-soft);
    opacity: 0;
    transition: opacity 0.6s var(--transition-smooth);
    z-index: -1;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

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

.card-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.contact-card:hover .card-icon {
    transform: scale(1.1) rotate(5deg);
}

.card-icon i {
    font-size: 1.5rem;
    color: white;
}

.card-content h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: 1rem;
}

.card-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0;
}

.social-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-gold);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 500;
    margin-top: 1.5rem;
    transition: all 0.4s var(--transition-smooth);
}

.social-link-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 158, 120, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-masonry {
        grid-template-columns: 250px 1fr 250px;
        gap: 1.2rem;
    }

    .visit-card {
        min-height: 350px;
        padding: 2.5rem 1.5rem;
    }

    .social-card {
        min-height: 350px;
        padding: 2.5rem 1.5rem;
    }
}

@media (max-width: 768px) {
    .contact-masonry {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 1.5rem;
    }

    .visit-card,
    .call-card,
    .email-card,
    .social-card {
        grid-row: auto;
        grid-column: 1;
        border-radius: 20px;
        padding: 2rem 1.5rem;
        min-height: auto;
    }

    .card-content h3 {
        font-size: 1.5rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-dark);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.footer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-title i {
    color: var(--primary-gold);
}

.footer-logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(247, 241, 145, 0.3));
}

.footer-description {
    color: rgba(14, 14, 14, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.newsletter h4 {
    font-family: var(--font-display);
    color: #0a0a0a;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.8rem 1.2rem;
    background: var(--primary-gold);
    border: none;
    border-radius: 8px;
    color: white;
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--primary-gold-dark);
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.8);
    transition: var(--transition-normal);
}

.footer-links a:hover {
    color: var(--primary-gold);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.8rem;
    color: rgba(0, 0, 0, 0.8);
}

.footer-contact a {
    color: rgba(0, 0, 0, 0.8);
    transition: var(--transition-normal);
}

.footer-contact a:hover {
    color: var(--primary-gold);
}

.footer-contact i {
    color: var(--primary-gold);
}

.footer-bottom {
    align-items: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-social {
    display: flex;
    gap: var(--spacing-sm);
}

.footer-social a {
    width: 35px;
    height: 35px;
    background: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-gold);
    transform: translateY(-3px);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-in {
    animation: fadeIn 1s ease;
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animated {
    opacity: 1;
    transform: translateY(0);
}

[data-animate="fade-up"].animated {
    animation: fadeUp 0.6s ease forwards;
}

[data-animate="fade-right"].animated {
    animation: fadeRight 0.6s ease forwards;
}

[data-animate="fade-left"].animated {
    animation: fadeLeft 0.6s ease forwards;
}

[data-animate="zoom-in"].animated {
    animation: zoomIn 0.6s ease forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {

    .booking-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-wrapper {
        grid-template-columns: 1fr;
        grid-template-areas: "story-visual" "story-content";
        /* Stack with video on top */
        text-align: center;
        gap: 3rem;
    }

    :root {
        --spacing-lg: 3rem;
        --spacing-xl: 4rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        gap: var(--spacing-sm);
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item {
        grid-row: span 1 !important;
    }

    .about-stats,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .creative-layout {
        grid-template-columns: repeat(2, 1fr);
        max-width: 600px;
        gap: 2rem;
        padding: 1rem 0;
    }

    .reel-card:nth-child(even),
    .reel-card:nth-child(odd) {
        transform: none;
    }

    .testimonials-carousel {
        padding: 0 50px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--spacing-sm);
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-sm);
    }

    .btn-large {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .creative-layout {
        grid-template-columns: 1fr;
        max-width: 320px;
        gap: 2.5rem;
    }

    .reel-card:nth-child(even),
    .reel-card:nth-child(odd) {
        transform: none;
    }
}

/* ===== SERVICES TAGS STYLING ===== */
.services-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    color: black;
}

.service-tag i {
    font-size: 1rem;
    color: var(--primary-gold);
    transition: transform 0.3s ease;
}
