/* ========================================
   DEKALTRI OUR STORY - CSS
   Digital Atelier Aesthetic
   ======================================== */

/* --- 1. ROOT & GLOBAL STYLES --- */

:root {
    /* Color Palette - Matching main site */
    --bg-body: #ffffff;
    --bg-secondary: #fcfbf9;
    --bg-linen: #F5F5F0;
    --bg-taupe: #E8E6DF;
    --text-primary: #1d1d1d;
    --text-secondary: #666666;
    --accent: #b07c56;
    --border-color: #e5e5e5;
    --white: #FFFFFF;

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;

    /* Layout */
    --container-width: 1200px;
    --section-padding: 120px;
    --section-padding-mobile: 60px;

    /* Transitions */
    --transition-smooth: all 0.4s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-linen);
    line-height: 1.8;
    font-size: 16px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    font-size: 1.125rem;
    font-weight: 300;
}

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

.section-padding {
    padding: var(--section-padding) 0;
}

/* --- 2. HEADER & NAVIGATION --- */

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, transparent 100%);
    color: #ffffff;
    transition: all 0.4s ease;
    padding: 25px 0;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    color: #1d1d1d;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-bottom: 2px dashed var(--accent);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Desktop Navigation - Ensure visibility */
.nav-left {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-left a {
    color: inherit;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-right: 25px;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.2;
    text-decoration: none;
    transition: 0.3s;
}

header.scrolled .nav-left a {
    text-shadow: none;
}

.nav-left a:hover {
    color: var(--accent);
    text-shadow: none;
}

.logo {
    height: 100px;
    display: flex;
    align-items: center;
}

.logo img {
    height: 100%;
    width: auto;
}

.logo-white {
    display: block;
}

.logo-dark {
    display: none;
}

header.scrolled .logo-white {
    display: none;
}

header.scrolled .logo-dark {
    display: block;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Style ONLY text links (Collaboration), not social icon links */
.nav-right a:not([target="_blank"]) {
    color: inherit;
    font-size: 16px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700 !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1.2;
    text-decoration: none;
    transition: 0.3s;
}

header.scrolled .nav-right a:not([target="_blank"]) {
    text-shadow: none;
}

.nav-right a:not([target="_blank"]):hover {
    color: var(--accent);
    text-shadow: none;
}

/* Icon links should also inherit color */
.nav-right a[target="_blank"] {
    color: inherit;
    text-decoration: none;
}

.nav-right i {
    color: inherit !important;
    margin-left: 20px;
    font-size: 18px;
    cursor: pointer;
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
    transition: 0.3s;
}

header.scrolled .nav-right i {
    text-shadow: none;
}

.nav-right i:hover {
    color: var(--accent) !important;
    transform: scale(1.1);
}

/* Active navigation link */
.nav-left a.active {
    color: var(--accent) !important;
}

/* Search overlay styles */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    padding-top: 150px;
    animation: fadeInOverlay 0.3s ease;
}

.search-overlay.active {
    display: flex;
}

.search-container {
    width: 90%;
    max-width: 700px;
    position: relative;
}

.search-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.search-box input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 24px;
    font-family: var(--font-body);
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-secondary);
}

.search-close {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 28px;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.search-close:hover {
    transform: rotate(90deg);
}

.search-info {
    margin-top: 20px;
    text-align: center;
    color: white;
    font-size: 16px;
    font-family: var(--font-body);
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    border-radius: 10px;
}

.search-preview {
    cursor: pointer !important;
    transition: all 0.2s ease;
    display: inline-block;
    padding: 8px 12px;
    margin-top: 8px;
    background: rgba(176, 124, 86, 0.2);
    border-radius: 8px;
    border: 2px solid transparent;
}

.search-preview:hover {
    background: rgba(176, 124, 86, 0.4);
    border-color: var(--accent);
    transform: translateY(-2px);
    opacity: 1 !important;
}

.search-preview:active {
    transform: translateY(0);
}

.search-navigation {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
}

.search-nav-btn {
    background: var(--accent);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 14px;
    transition: background 0.3s;
}

.search-nav-btn:hover {
    background: #8d6344;
}

.search-nav-btn:disabled {
    background: #666;
    cursor: not-allowed;
    opacity: 0.5;
}

.search-highlight {
    background-color: #ffeb3b;
    color: black;
    padding: 3px 5px;
    border-radius: 3px;
    font-weight: 600;
    box-shadow: 0 0 0 2px rgba(255, 235, 59, 0.3);
}

.search-highlight.current {
    background-color: var(--accent);
    color: white;
    padding: 4px 6px;
    font-weight: 700;
    box-shadow: 0 0 0 3px rgba(176, 124, 86, 0.4);
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 3px rgba(176, 124, 86, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(176, 124, 86, 0.6);
    }
}

.nav-right i.fa-magnifying-glass {
    cursor: pointer;
    transition: transform 0.3s;
}

.nav-right i.fa-magnifying-glass:hover {
    transform: scale(1.2);
}

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

/* --- 3. HERO SECTION --- */

#hero {
    height: 40rem;
    min-height: 40rem;
    max-height: 40rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    overflow: hidden;
}

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

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s ease;
    transform: scale(1);
}

.slide.active {
    opacity: 1;
    transform: scale(1.05);
}

#hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 60px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    border-radius: 8px;
    backdrop-filter: blur(4px);
    animation: fadeIn 1.5s ease-out;
}

.hero-title {
    font-family: 'Cinzel', serif;
    font-size: 4rem;
    line-height: 1.2;
    font-weight: 600;
    font-style: normal;
    letter-spacing: 0.1875rem;
    margin-bottom: 1.25rem;
    color: #ffffff;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.5;
    font-family: var(--font-body);
    font-weight: 300;
    color: #f0f0f0;
    letter-spacing: 0.0625rem;
    margin-bottom: 2.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
}

/* --- 4. SECTION HEADERS --- */

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
}

/* --- 5. ORIGIN STORY & THE PIVOT (ZIG-ZAG LAYOUTS) --- */

.origin-story {
    background-color: var(--white);
}

.the-pivot {
    background: linear-gradient(to bottom, #ffffff 0%, var(--bg-secondary) 100%);
    position: relative;
    padding-top: 140px;
}

.zigzag-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.zigzag-image {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    border: 3px solid #ffffff;
    position: relative;
    background: #f5f5f5;
}

/* Professional frame effect for video */
.zigzag-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(197, 160, 89, 0.2);
    border-radius: 12px;
    pointer-events: none;
    z-index: 1;
}

.zigzag-image img,
.zigzag-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    display: block;
}

.zigzag-image:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.zigzag-image:hover img,
.zigzag-image:hover video {
    transform: scale(1.03);
}

.zigzag-text {
    padding: 40px;
}

.zigzag-text h2 {
    color: var(--accent);
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1.5rem;
}

.zigzag-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--accent);
}

.zigzag-text p {
    font-size: 1.125rem;
    line-height: 2;
}

/* Reverse layout for alternating sections */
.zigzag-layout.reverse {
    direction: rtl;
}

.zigzag-layout.reverse > * {
    direction: ltr;
}

/* --- 6. VIRAL PORTFOLIO --- */

.viral-portfolio {
    background-color: var(--bg-linen);
    position: relative;
    padding-bottom: 140px;
}

/* Elegant separator after portfolio section */
.viral-portfolio::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.portfolio-item {
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transition: var(--transition-smooth);
    aspect-ratio: 3/4;
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: var(--transition-smooth);
}

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

/* Stats Bar */
.stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    padding: 50px 40px;
    background-color: var(--white);
    border-radius: 4px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2.5rem;
    color: var(--accent);
}

.stat-item span {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--text-primary);
    white-space: nowrap;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background-color: var(--bg-taupe);
}

/* --- 7. LIVE SOCIAL PROOF --- */

.social-proof {
    background-color: var(--white);
}

.instagram-widget-placeholder {
    max-width: 900px;
    margin: 0 auto;
    min-height: 400px;
    background-color: var(--bg-linen);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--accent);
}

.placeholder-content {
    text-align: center;
    padding: 60px;
}

.placeholder-content i {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 20px;
}

.placeholder-content p {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.placeholder-content span {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* --- 8. FOR BRANDS (B2B) WITH 3D BOOK --- */

.for-brands {
    background-color: #EAE8E0;
    padding: 120px 0;
    overflow: hidden;
}

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

/* Left Side: Content */
.b2b-content {
    flex: 1;
    max-width: 550px;
}

.b2b-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #2C2C2C;
    margin-bottom: 1.5rem;
    font-weight: 600;
    line-height: 1.2;
}

.b2b-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.media-kit-button {
    background-color: #C5A059;
    color: #FFFFFF;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 45px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.3);
}

.media-kit-button:hover {
    background-color: #D4B066;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

.media-kit-button:active {
    transform: translateY(0);
}

/* Right Side: 3D Book Container */
.book-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1500px;
    min-height: 450px;
}

.book-scene {
    position: relative;
    transform-style: preserve-3d;
}

.book {
    position: relative;
    width: 220px;
    height: 320px;
    transform-style: preserve-3d;
    transform: rotateY(-25deg) rotateX(8deg);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.book:hover {
    transform: rotateY(0deg) rotateX(0deg) translateY(-10px);
}

/* Book Cover */
.book-cover {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #2C2C2C;
    border: 2px solid #C5A059;
    border-radius: 3px;
    transform: translateZ(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.8s ease;
}

.book:hover .book-cover {
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.book-cover-content {
    text-align: center;
    padding: 30px;
}

.book-brand {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.875rem;
    color: #C5A059;
    letter-spacing: 3px;
    margin-bottom: 60px;
    font-style: italic;
}

.book-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: #C5A059;
    font-weight: 600;
    line-height: 1.3;
    margin: 0;
    letter-spacing: 2px;
}

/* Book Pages/Spine */
.book-pages {
    position: absolute;
    right: -40px;
    top: 0;
    width: 40px;
    height: 100%;
    background: linear-gradient(to right,
        #f5f5f5 0%,
        #e8e8e8 20%,
        #f0f0f0 40%,
        #e5e5e5 60%,
        #ebebeb 80%,
        #f2f2f2 100%
    );
    transform: rotateY(90deg);
    transform-origin: left;
    border-radius: 0 3px 3px 0;
    box-shadow: inset -2px 0 5px rgba(0, 0, 0, 0.1),
                inset 2px 0 3px rgba(255, 255, 255, 0.3);
}

/* Book Shadow */
.book-shadow {
    position: absolute;
    width: 240px;
    height: 60px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
    bottom: -80px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.8s ease;
    filter: blur(15px);
}

.book:hover ~ .book-shadow {
    width: 260px;
    height: 80px;
    bottom: -90px;
    background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4) 0%, transparent 70%);
}

/* --- 8B. MEDIA KIT MODAL --- */

.media-kit-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.media-kit-modal.active {
    display: flex;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1;
}

.modal-container {
    position: relative;
    width: 90%;
    max-width: 900px;
    height: 80%;
    max-height: 600px;
    margin: auto;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Modal Close Button */
.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: #C5A059;
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* Slides Container */
.modal-slides {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #1a1a1a;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5);
}

.modal-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
}

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

.slide-content {
    text-align: center;
    max-width: 600px;
}

/* Slide 1: Cover */
.cover-slide .slide-logo h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: #C5A059;
    font-style: italic;
    margin-bottom: 3rem;
    letter-spacing: 3px;
}

.slide-headline {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: #C5A059;
    margin-bottom: 1rem;
    font-weight: 600;
}

.slide-subtext {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #FFFFFF;
    font-weight: 300;
    letter-spacing: 2px;
}

/* Slide 2: Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 3rem;
}

.stat-box {
    text-align: center;
}

.stat-box i {
    font-size: 3rem;
    color: #C5A059;
    margin-bottom: 1rem;
}

.stat-box h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.stat-box p {
    font-family: var(--font-body);
    font-size: 1rem;
    color: #AAAAAA;
    margin: 0;
}

/* Slide 3: Audience */
.audience-content {
    margin-top: 2rem;
}

.audience-icon {
    font-size: 4rem;
    color: #C5A059;
    margin-bottom: 2rem;
}

.audience-text {
    font-family: var(--font-body);
    font-size: 1.25rem;
    color: #FFFFFF;
    line-height: 2;
    margin: 0;
}

/* Slide 4: Services */
.services-list {
    list-style: none;
    margin: 3rem 0;
    padding: 0;
}

.services-list li {
    font-family: var(--font-body);
    font-size: 1.5rem;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.services-list li i {
    color: #C5A059;
    font-size: 1.2rem;
}

.contact-rates-button {
    background-color: #C5A059;
    color: #1a1a1a;
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 50px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.contact-rates-button:hover {
    background-color: #D4B066;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.4);
}

/* Navigation Arrows */
.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(197, 160, 89, 0.2);
    border: 2px solid #C5A059;
    color: #C5A059;
    font-size: 1.5rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-prev {
    left: 20px;
}

.modal-next {
    right: 20px;
}

.modal-nav:hover {
    background-color: #C5A059;
    color: #1a1a1a;
    transform: translateY(-50%) scale(1.1);
}

.modal-nav:active {
    transform: translateY(-50%) scale(0.95);
}

/* Slide Indicators */
.slide-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(197, 160, 89, 0.3);
    border: 2px solid #C5A059;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background-color: #C5A059;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(197, 160, 89, 0.6);
}

/* --- 9. FOOTER - DARK MINIMALIST --- */
footer {
    background: #111;
    color: #999;
    padding: 30px 0;
    position: relative;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.footer-left {
    font-size: 12px;
    letter-spacing: 0.5px;
}

.footer-right {
    display: flex;
    gap: 25px;
}

.footer-right a {
    font-size: 12px;
    color: #999;
    text-decoration: none;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.footer-right a:hover {
    color: #fff;
}

/* --- 10. AFFILIATE SECTION (FEATURE SECTION) --- */

.affiliate-section {
    background-color: #f8f9fa;
    padding: 100px 0;
}

.affiliate-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: var(--container-width);
}

/* Image Left */
.affiliate-image {
    width: 100%;
    height: 100%;
    min-height: 600px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.affiliate-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    aspect-ratio: 3/4;
    border-radius: 12px;
    transition: var(--transition-smooth);
}

.affiliate-image:hover img {
    transform: scale(1.05);
}

/* Text Right */
.affiliate-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
}

.affiliate-headline {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.affiliate-subhead {
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.affiliate-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
}

.affiliate-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: var(--font-body);
    font-size: 1.125rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.affiliate-features li i {
    color: var(--accent);
    font-size: 1.5rem;
}

.affiliate-button {
    background-color: #1d1d1d;
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 18px 40px;
    border: 2px solid #1d1d1d;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.affiliate-button:hover {
    background-color: transparent;
    color: #1d1d1d;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 29, 29, 0.2);
}

.affiliate-button:active {
    transform: translateY(0);
}

/* --- 11. SPLIT CHOICE LAYOUT - VOGUE AESTHETIC --- */

/* Main Split Container */
.split-container {
    display: flex;
    min-height: 80vh;
    width: 100%;
}

/* Individual Split Panels */
.split-panel {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

/* Hover Effect - Expand */
.split-panel:hover {
    flex: 1.15;
}

.split-container:hover .split-panel:not(:hover) {
    flex: 0.85;
    filter: brightness(0.7);
}

/* Left Panel - Dark Theme (FOR BRANDS) */
.split-panel.brand-path {
    background-color: #3d3832;
    color: #ffffff;
}

/* Right Panel - Light Theme (FOR PEOPLE) */
.split-panel.personal-path {
    background-color: var(--bg-linen);
    color: var(--text-primary);
}

/* Content Wrapper */
.panel-content {
    max-width: 550px;
    text-align: center;
    position: relative;
    z-index: 2;
    transition: transform 0.6s ease;
}

.split-panel:hover .panel-content {
    transform: scale(1.05);
}

/* Label Tag */
.panel-label {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 30px;
    opacity: 0.7;
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid currentColor;
    border-radius: 30px;
}

/* Headline */
.panel-headline {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: 1px;
    color: inherit;
}

/* Description */
.panel-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 50px;
    opacity: 0.9;
}

/* Buttons */
.panel-button {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 50px;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
}

/* Brand Path Button (Accent BG, White Text) */
.brand-path .panel-button {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.brand-path .panel-button:hover {
    background-color: transparent;
    color: #ffffff;
    border-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 124, 86, 0.3);
}

/* Personal Path Button (Accent BG, White Text) */
.personal-path .panel-button {
    background-color: var(--accent);
    color: #ffffff;
    border-color: var(--accent);
}

.personal-path .panel-button:hover {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(176, 124, 86, 0.3);
}

/* Decorative Background Accents */
.split-panel::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    pointer-events: none;
    transition: all 0.6s ease;
    opacity: 0;
}

.split-panel:hover::before {
    opacity: 1;
    top: -20%;
    right: -20%;
}

/* --- 12. SIMPLIFIED PARTNER SECTION --- */

/* Part 1: What We Offer Grid */
.partner-services-section {
    background-color: var(--bg-linen);
    padding: var(--section-padding) 0;
}

.services-section-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 80px;
}

.partner-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.partner-service-card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    padding: 40px 30px;
    transition: var(--transition-smooth);
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.partner-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent);
}

.partner-service-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.partner-service-description {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Part 2: Direct Email Contact Area */
.partner-contact-section {
    background-color: var(--white);
    padding: var(--section-padding) 0;
}

.partner-contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.partner-contact-headline {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.partner-contact-subtext {
    font-family: var(--font-body);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.partner-email-display {
    margin-bottom: 2.5rem;
}

.partner-email-display a {
    font-family: var(--font-body);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition-smooth);
    padding: 10px 20px;
    border-radius: 4px;
}

.partner-email-display a:hover {
    color: var(--text-primary);
    background-color: rgba(176, 124, 86, 0.1);
}

.partner-email-button {
    display: inline-block;
    background-color: var(--accent);
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 18px 45px;
    border: 2px solid var(--accent);
    border-radius: 4px;
    text-decoration: none;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(176, 124, 86, 0.3);
}

.partner-email-button:hover {
    background-color: transparent;
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(176, 124, 86, 0.4);
}

/* --- 13. RESPONSIVE DESIGN --- */

/* Tablet */
@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }

    .container {
        padding: 0 30px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.25rem;
    }

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

    .logo {
        height: 80px;
    }

    .nav-left a {
        font-size: 14px !important;
        margin-right: 15px;
    }

    .zigzag-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .zigzag-layout.reverse {
        direction: ltr;
    }

    .portfolio-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .stats-bar {
        gap: 40px;
        flex-wrap: wrap;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* B2B Section - Tablet */
    .b2b-container {
        gap: 60px;
    }

    .b2b-headline {
        font-size: 2.5rem;
    }

    /* Affiliate Section - Tablet */
    .affiliate-split {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .affiliate-image {
        min-height: 500px;
    }

    .affiliate-content {
        padding: 20px 0;
    }

    .affiliate-headline {
        font-size: 2rem;
    }

    /* Split Choice - Tablet */
    .split-container {
        min-height: 100vh;
    }

    .split-panel {
        padding: 60px 40px;
    }

    .panel-headline {
        font-size: 2.75rem;
    }

    .panel-description {
        font-size: 1rem;
    }

    /* Partner Services - Tablet */
    .partner-services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .partner-contact-headline {
        font-size: 2.5rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    .container {
        padding: 0 20px;
    }

    /* Navigation */
    header {
        padding: 15px 0;
    }

    .nav-wrapper {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-left {
        order: 2;
        width: 100%;
        text-align: center;
    }

    .nav-left a {
        font-size: 12px !important;
        margin-right: 15px;
        letter-spacing: 1px;
    }

    .logo {
        order: 1;
        height: 70px;
    }

    .nav-right {
        order: 3;
    }

    .nav-right i {
        font-size: 16px;
        margin-left: 15px;
    }

    /* Hero */
    #hero {
        height: 500px;
        min-height: 500px;
        max-height: 500px;
    }

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

    .hero-subtitle {
        font-size: 1.125rem;
    }

    /* Typography */
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.875rem;
    }

    p {
        font-size: 1rem;
    }

    .section-subtitle {
        font-size: 1.125rem;
    }

    /* Zig-zag layouts */
    .zigzag-text {
        padding: 20px 0;
    }

    .zigzag-layout {
        gap: 30px;
    }

    /* Portfolio */
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-bottom: 50px;
    }

    .stats-bar {
        flex-direction: column;
        gap: 30px;
        padding: 40px 20px;
    }

    .stat-divider {
        display: none;
    }

    /* Instagram widget */
    .instagram-widget-placeholder {
        min-height: 300px;
    }

    .placeholder-content {
        padding: 40px 20px;
    }

    .placeholder-content i {
        font-size: 3rem;
    }

    .placeholder-content p {
        font-size: 1.25rem;
    }

    /* B2B Section with 3D Book */
    .for-brands {
        padding: 80px 0;
    }

    .b2b-container {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }

    .b2b-content {
        max-width: 100%;
        text-align: center;
    }

    .b2b-headline {
        font-size: 2rem;
    }

    .b2b-description {
        font-size: 1.125rem;
    }

    .media-kit-button {
        font-size: 0.9rem;
        padding: 16px 35px;
        width: 100%;
    }

    .book-container {
        min-height: 400px;
    }

    .book {
        transform: rotateY(-15deg) rotateX(5deg) scale(0.9);
    }

    .book:hover {
        transform: rotateY(0deg) rotateX(0deg) translateY(-10px) scale(0.9);
    }

    /* Media Kit Modal - Mobile */
    .modal-container {
        width: 95%;
        height: 90%;
    }

    .modal-close {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }

    .modal-slide {
        padding: 40px 20px;
    }

    .cover-slide .slide-logo h1 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .slide-headline {
        font-size: 2rem;
    }

    .slide-subtext {
        font-size: 1.125rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stat-box i {
        font-size: 2.5rem;
    }

    .stat-box h3 {
        font-size: 2rem;
    }

    .audience-icon {
        font-size: 3rem;
    }

    .audience-text {
        font-size: 1.125rem;
    }

    .services-list li {
        font-size: 1.125rem;
    }

    .contact-rates-button {
        font-size: 1rem;
        padding: 16px 30px;
        width: 100%;
    }

    .modal-nav {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .modal-prev {
        left: 10px;
    }

    .modal-next {
        right: 10px;
    }

    .slide-indicators {
        bottom: 15px;
    }

    /* Affiliate Section - Mobile */
    .affiliate-section {
        padding: 60px 0;
    }

    .affiliate-split {
        gap: 40px;
    }

    .affiliate-image {
        min-height: 400px;
    }

    .affiliate-content {
        padding: 0;
    }

    .affiliate-headline {
        font-size: 1.75rem;
    }

    .affiliate-subhead {
        font-size: 1rem;
    }

    .affiliate-features li {
        font-size: 1rem;
    }

    .affiliate-button {
        width: 100%;
        text-align: center;
    }

    /* Split Choice - Mobile (Stack Vertically) */
    .split-container {
        flex-direction: column;
        min-height: auto;
    }

    .split-panel {
        min-height: 70vh;
        padding: 60px 30px;
    }

    /* Remove hover effects on mobile */
    .split-panel:hover {
        flex: 1;
        filter: brightness(1);
    }

    .split-container:hover .split-panel:not(:hover) {
        flex: 1;
        filter: brightness(1);
    }

    .split-panel:hover .panel-content {
        transform: scale(1);
    }

    .panel-headline {
        font-size: 2.5rem;
    }

    .panel-description {
        font-size: 1rem;
        margin-bottom: 40px;
    }

    .panel-button {
        width: 100%;
        text-align: center;
    }

    /* Partner Services - Mobile */
    .partner-services-section {
        padding: 60px 0;
    }

    .services-section-title {
        font-size: 2rem;
        margin-bottom: 50px;
    }

    .partner-service-card {
        padding: 40px 30px;
    }

    .partner-service-title {
        font-size: 1.25rem;
    }

    .partner-contact-section {
        padding: 80px 0;
    }

    .partner-contact-headline {
        font-size: 2rem;
    }

    .partner-contact-subtext {
        font-size: 1rem;
    }

    .partner-email-display a {
        font-size: 1.125rem;
    }

    .partner-email-button {
        width: 100%;
        padding: 18px 40px;
    }

    /* Footer */
    .footer {
        padding: 60px 0 30px;
    }

    .footer-content {
        gap: 30px;
    }

    .social-links {
        justify-content: center;
    }

    /* Search overlay */
    .search-overlay {
        padding-top: 100px;
    }

    .search-box input {
        font-size: 18px;
    }

    .search-box {
        padding: 15px 20px;
    }

    /* Footer responsive */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-right {
        flex-direction: column;
        gap: 15px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .nav-left a {
        font-size: 10px !important;
        margin-right: 10px;
    }

    .logo {
        height: 60px;
    }

    h2 {
        font-size: 1.625rem;
    }

    .section-header {
        margin-bottom: 50px;
    }

    /* Split Choice - Small Mobile */
    .split-panel {
        min-height: 60vh;
        padding: 50px 20px;
    }

    .panel-label {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 6px 16px;
    }

    .panel-headline {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .panel-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    .panel-button {
        padding: 16px 40px;
        font-size: 0.85rem;
    }
}

/* --- ANIMATIONS --- */

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

/* ========================================
   INSTAGRAM PROFILE WIDGET
   ======================================== */

.instagram-widget-section {
    background-color: var(--bg-linen);
    padding: 60px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-profile-widget {
    background: linear-gradient(145deg, #ffffff 0%, #fefefe 100%);
    max-width: 350px;
    width: 100%;
    margin: 0 auto;
    border-radius: 20px;
    padding: 24px;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.05),
        0 10px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

/* Instagram gradient border effect */
.instagram-profile-widget::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(
        90deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    border-radius: 20px 20px 0 0;
}

/* Header Section */
.ig-widget-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.ig-profile-pic {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
    background: linear-gradient(white, white) padding-box,
                linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) border-box;
    padding: 3px;
}

.ig-profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.ig-profile-info {
    flex: 1;
    margin-left: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ig-username {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.ig-follow-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(
        90deg,
        #f09433 0%,
        #e6683c 25%,
        #dc2743 50%,
        #cc2366 75%,
        #bc1888 100%
    );
    color: white;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(220, 39, 67, 0.2);
}

.ig-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 39, 67, 0.3);
}

.ig-follow-btn i {
    font-size: 14px;
}

/* Bio Section */
.ig-bio {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 20px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

/* Stats Section */
.ig-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 12px 0 12px;
    gap: 20px;
}

.ig-stat-item {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ig-stat-number {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.ig-stat-label {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
    .instagram-widget-section {
        padding: 40px 20px;
    }

    .instagram-profile-widget {
        max-width: 100%;
        margin: 0 20px;
    }
}

@media (max-width: 480px) {
    .ig-widget-header {
        flex-direction: column;
        text-align: center;
    }

    .ig-profile-info {
        margin-left: 0;
        margin-top: 12px;
        align-items: center;
    }

    .ig-stat-number {
        font-size: 16px;
    }

    .ig-stat-label {
        font-size: 11px;
    }
}

/* ========================================
   COLLABORATION PAGE - CLEAN RESTRUCTURE
   ======================================== */

/* Hero Section */
.collab-hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.hero-content-center {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.collab-headline {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.collab-subheadline {
    font-family: var(--font-body);
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent);
}

/* Stats Section */
.stats-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 60px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    box-shadow: 0 4px 12px rgba(176, 124, 86, 0.15);
    transform: translateY(-4px);
    border-color: var(--accent);
}

.stat-icon {
    font-size: 48px;
    color: var(--accent);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.stat-number {
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 12px;
}

.stat-description {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--bg-body);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 12px rgba(176, 124, 86, 0.15);
    border-color: var(--accent);
}

.service-icon {
    font-size: 40px;
    color: var(--accent);
    margin-bottom: 20px;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-card p {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    background: var(--bg-secondary);
    padding: 80px 0;
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-body);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 50px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    margin-bottom: 30px;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-primary);
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    background: var(--bg-body);
    transition: all 0.3s ease;
}

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

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

.submit-button {
    width: 100%;
    background: var(--accent);
    color: #ffffff;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 40px;
    border: 2px solid var(--accent);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background: transparent;
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

@media (max-width: 768px) {
    .collab-hero {
        min-height: 500px;
    }

    .collab-headline {
        font-size: 36px;
    }

    .collab-subheadline {
        font-size: 18px;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stats-section,
    .services-section,
    .contact-section {
        padding: 60px 0;
    }

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

    .contact-form {
        padding: 30px 20px;
    }

    .stat-card,
    .service-card {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .collab-headline {
        font-size: 28px;
    }

    .collab-subheadline {
        font-size: 16px;
    }

    .section-title {
        font-size: 24px;
    }

    .cta-button,
    .submit-button {
        padding: 14px 30px;
        font-size: 15px;
    }
}

/* ========================================
   MOBILE MENU HAMBURGER BUTTON
   ======================================== */

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 2001;
    position: relative;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #222 !important;
    display: block !important;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

header.scrolled .mobile-menu-toggle {
    background-color: rgba(255, 255, 255, 0.95);
}

header.scrolled .mobile-menu-toggle span {
    background-color: #222 !important;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(9.5px) rotate(45deg);
}

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

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

/* Mobile Menu Styles */
@media (max-width: 968px) {
    .mobile-menu-toggle {
        display: flex !important;
        position: fixed;
        left: 20px;
        top: 20px;
        z-index: 3000;
    }

    header {
        padding: 15px 0 !important;
    }

    .nav-wrapper {
        position: relative;
        justify-content: center;
    }

    .logo {
        display: none !important;
    }

    /* Hide desktop navigation on mobile */
    .nav-left,
    .nav-right {
        display: none !important;
    }

    /* Show navigation when menu is open */
    .nav-left.active,
    .nav-right.active {
        display: flex !important;
        position: fixed;
        left: 0;
        right: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: center;
        z-index: 2500;
        padding: 40px;
        animation: slideDown 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-20px); }
        to { opacity: 1; transform: translateY(0); }
    }

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

    .nav-left.active {
        top: 0;
        padding-top: 100px;
        padding-bottom: 20px;
        justify-content: flex-start;
        height: 100vh;
        border-bottom: 2px solid rgba(176, 124, 86, 0.3);
    }

    .nav-right.active {
        bottom: 0;
        padding-top: 20px;
        padding-bottom: 60px;
        justify-content: flex-end;
        height: auto;
        border-top: 2px solid rgba(176, 124, 86, 0.3);
        animation: slideUp 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    }

    .nav-left a,
    .nav-right a:not([target="_blank"]) {
        color: var(--text-primary) !important;
        font-size: 22px !important;
        font-weight: 400 !important;
        font-family: var(--font-body) !important;
        margin: 0 0 30px 0 !important;
        padding: 10px 20px !important;
        text-shadow: none !important;
        width: auto !important;
        text-align: center !important;
        letter-spacing: 2px !important;
        text-transform: uppercase !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        display: block !important;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 3 !important;
        text-decoration: none !important;
        background-color: transparent !important;
        user-select: none !important;
    }

    .nav-left a::after,
    .nav-right a:not([target="_blank"])::after {
        content: '';
        position: absolute;
        bottom: 5px;
        left: 50%;
        transform: translateX(-50%) scaleX(0);
        width: 70%;
        height: 2px;
        background: var(--accent);
        transition: transform 0.3s ease;
    }

    .nav-left a:hover,
    .nav-right a:not([target="_blank"]):hover {
        color: var(--accent) !important;
    }

    .nav-left a:hover::after,
    .nav-right a:not([target="_blank"]):hover::after {
        transform: translateX(-50%) scaleX(1);
    }

    .nav-right a[target="_blank"] {
        margin: 0 20px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto !important;
        cursor: pointer !important;
        z-index: 3 !important;
        position: relative !important;
        transition: all 0.3s ease;
    }

    .nav-right a[target="_blank"]:hover i {
        color: var(--accent) !important;
        transform: scale(1.2);
    }

    .nav-right i {
        font-size: 32px;
        color: var(--text-primary);
        transition: all 0.3s ease;
    }

    body.menu-open {
        overflow: hidden;
    }
}
