/* ============================================================
   SAINI ADVERTISING â€” THE MODERN INDIAN ADVERTISING HOUSE
   Design System: Warm, Human, Indian, Print-Heritage
============================================================ */

/* ============================================================
   1. DESIGN TOKENS
============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Anton&family=DM+Serif+Display:ital@0;1&family=Inter:wght@400;500;600;700&family=Caveat:wght@600&family=Space+Mono:wght@400;700&display=swap');

:root {
    /* Color System */
    --paper:        #FDFBF7;   /* warm ivory / newspaper base */
    --paper-dark:   #F2EFE9;   /* slightly aged paper for contrast */
    --paper-tint:   #FFF6E5;   /* subtle yellow paper tint */
    --ink:          #1C1A17;   /* deep charcoal, not pure black */
    --text-muted:   #5A554A;   /* warm muted gray for secondary text */
    
    --red:          #D92525;   /* Indian advertising red */
    --yellow:       #FFB800;   /* Marigold yellow */
    --green:        #145934;   /* Deep established green */
    --indigo:       #1B2A49;   /* Print indigo / digital blue fusion */
    
    /* Typography */
    --font-display: 'Anton', sans-serif;
    --font-serif:   'DM Serif Display', serif;
    --font-body:    'Inter', sans-serif;
    
    /* Accents (Used sparingly) */
    --font-hand:    'Caveat', cursive;
    --font-mono:    'Space Mono', monospace;

    /* Spacing & Layout */
    --max-w: 1400px;
    --pad-x: clamp(1.5rem, 5vw, 4rem);
    --section-pad: clamp(5rem, 10vw, 8rem);
    
    /* UI Details */
    --border-ink: 1.5px solid var(--ink);
    --border-thin: 1px solid rgba(28,26,23,0.15);
}

details summary::-webkit-details-marker {
    display: none;
}
details > summary {
    list-style: none;
}
details[open] summary ~ * {
    animation: fadeIn 0.3s ease-in-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   2. RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ============================================================
   3. TYPOGRAPHY & PRINT DETAILS (UTILITIES)
============================================================ */
.print-mark {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}
.print-mark::before {
    content: "âŠ•";
    font-size: 0.85rem;
    color: var(--red);
}

.section-label {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--ink);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--ink);
    margin-bottom: 2rem;
    display: inline-block;
}

.hand-note {
    font-family: var(--font-hand);
    font-size: 1.4rem;
    color: var(--red);
    line-height: 1;
    transform: rotate(-2deg);
}
.hand-note.note-yellow { color: var(--yellow); }

/* Color Utility Classes */
.bg-yellow { background: var(--yellow); }
.bg-green { background: var(--green); }
.text-white { color: var(--paper); }
.text-white .section-label { color: var(--paper); border-bottom-color: var(--paper); }
.mark-white { color: rgba(253,251,247,0.7); }
.mark-white::before { color: var(--yellow); }

/* ============================================================
   4. GLOBAL BUTTONS
============================================================ */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--paper);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 2px solid var(--red);
    transition: all 0.2s;
    cursor: pointer;
}
.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--ink);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    border: 2px solid var(--ink);
    transition: all 0.2s;
    cursor: pointer;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); }

/* ============================================================
   5. NAVIGATION
============================================================ */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: var(--paper);
    border-bottom: var(--border-thin);
    transition: all 0.3s ease;
}
.navbar.nav-scrolled {
    background: rgba(253, 251, 247, 0.95);
    backdrop-filter: blur(8px);
    border-bottom-color: var(--ink);
}

.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem var(--pad-x);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    flex-direction: column;
}

.nav-logo img{
    height: 80px;
}

.logo-top {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo-icon {
    color: var(--red);
    font-size: 1.25rem;
}
.nav-logo .logo-main {
    font-family: var(--font-display);
    font-size: 1.75rem;
    line-height: 1;
    letter-spacing: 0.02em;
    color: var(--red);
}
.nav-logo .logo-sub {
    font-family: var(--font-mono);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
    background: var(--red);
    color: var(--paper);
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    align-self: flex-start;
    margin-top: 0.2rem;
    align-self: flex-end;
}

.nav-links { display: flex; gap: 2.5rem; }
.nav-links a {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--ink);
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; width: 100%; height: 2px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s;
}
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--red);
}

.hamburger { display: none; background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--ink); }

/* ============================================================
   6. HERO SECTION: The Advertising Poster
============================================================ */
.hero {
    min-height: 100vh;
    padding-top: 100px; /* navbar offset */
    display: flex;
    align-items: center;
    background: var(--paper);
    position: relative;
    overflow: hidden;
}

/* Subtle print grain texture */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.hero-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 4rem var(--pad-x);
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-masthead {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: var(--text-muted);
}
.hero-masthead .line { height: 1px; width: 60px; background: var(--text-muted); }

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ink);
    margin-bottom: 1.5rem;
}
.hero-headline .highlight-yellow { color: var(--yellow); }
.hero-headline .highlight-red { color: var(--red); }

.hero-deck {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    line-height: 1.5;
    color: var(--text-muted);
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; }

/* Hero Visual Composition */
.hero-visual {
    position: relative;
    height: 100%;
    min-height: 500px;
}

/* Layered poster elements */
.poster-base {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 85%;
    height: 80%;
    background: var(--paper-dark);
    border: var(--border-ink);
    padding: 1rem;
    box-shadow: -15px 15px 0 var(--yellow);
}

.poster-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: grayscale(20%) contrast(1.1);
}

.poster-stamp {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--red);
    color: var(--paper);
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    line-height: 1;
    transform: rotate(15deg);
    box-shadow: 0 4px 12px rgba(217,37,37,0.3);
}
.poster-stamp .num { font-size: 2.5rem; }
.poster-stamp .txt { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.1em; }

/* Print Registration Marks */
.print-registration-marks {
    position: absolute;
    top: 2rem; bottom: 2rem;
    left: 2rem; right: 2rem;
    pointer-events: none;
}
.reg-mark {
    position: absolute;
    width: 20px; height: 20px;
    border: 1px solid rgba(28,26,23,0.3);
    border-radius: 50%;
}
.reg-mark::before, .reg-mark::after {
    content: ''; position: absolute;
    background: rgba(28,26,23,0.3);
}
.reg-mark::before { top: -5px; bottom: -5px; left: 9px; width: 1px; }
.reg-mark::after { left: -5px; right: -5px; top: 9px; height: 1px; }
.reg-mark.top-left { top: 0; left: 0; }
.reg-mark.bottom-right { bottom: 0; right: 0; }

.clipping-note {
    position: absolute;
    top: 10px; right: -10px;
    background: var(--paper);
    padding: 0.2rem 0.5rem;
    border: var(--border-ink);
    transform: rotate(5deg);
}
.clip-text {
    font-family: var(--font-mono);
    font-size: 0.6rem;
    font-weight: 700;
}

/* ============================================================
   7. ECOSYSTEM SECTION: The Integrated Media Network
============================================================ */
.section-ecosystem {
    background: var(--paper-dark);
    padding: 8rem 0;
    border-bottom: var(--border-ink);
    overflow: hidden;
}

.eco-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.eco-header {
    text-align: center;
    margin-bottom: 6rem;
}
.eco-display {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    color: var(--ink);
    line-height: 0.9;
    margin-top: 1rem;
    text-transform: uppercase;
}
.eco-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* The Network Map */
.eco-network {
    display: grid;
    grid-template-columns: 1fr 1.8fr 1fr;
    gap: 2rem;
    position: relative;
    margin-bottom: 6rem;
    align-items: center;
}

.eco-col {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

.eco-col-center {
    align-items: center;
    gap: 3rem;
}
.eco-col-left { align-items: flex-end; text-align: right; }
.eco-col-right { align-items: flex-start; text-align: left; }

.eco-node {
    background: var(--paper);
    border: var(--border-thin);
    padding: 1.5rem;
    width: 100%;
    max-width: 250px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}
.eco-node:hover {
    transform: translateY(-5px);
    box-shadow: 5px 5px 0 var(--ink);
    border-color: var(--ink);
    z-index: 10;
}

.node-cat {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}
.eco-node h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.eco-node p {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Central Hero */
.eco-hero {
    position: relative;
    width: 100%;
    max-width: 500px;
    z-index: 5;
    padding: 1.5rem;
    transform: rotate(-1.5deg);
    transition: transform 0.5s ease;
}
.eco-hero:hover {
    transform: rotate(0deg) scale(1.02);
}
.eco-hero-paper {
    position: relative;
}
.eco-hero-paper img {
    width: 100%;
    display: block;
    filter: sepia(15%) contrast(1.1);
    animation: rotate 20s ease-in-out infinite;
}

@keyframes rotate {
    to{
        transform: rotate(360deg);
    }
}

.eco-hero-label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--yellow);
    color: var(--ink);
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    padding: 0.5rem 1.5rem;
    white-space: nowrap;
    border: 2px solid var(--ink);
    box-shadow: 4px 4px 0 var(--ink);
}

/* Connecting Lines */
.eco-connectors {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    z-index: 1;
    pointer-events: none;
}
.eco-line {
    position: absolute;
    background: var(--ink);
    opacity: 0.15;
}
.line-h {
    top: 50%; left: 0; width: 100%; height: 1px;
}
.line-v {
    left: 50%; top: 0; width: 1px; height: 100%;
}

/* Closing Statement */
.eco-footer {
    text-align: center;
    padding-top: 5rem;
    border-top: 1px dashed rgba(0,0,0,0.2);
}
.eco-closing {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    text-transform: uppercase;
    line-height: 0.95;
    color: var(--ink);
}

@media (max-width: 1024px) {
    .eco-network {
        display: flex;
        flex-direction: column;
        gap: 2rem;
    }
    .eco-col {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        gap: 1rem;
    }
    .eco-col-center {
        order: -1;
    }
    .eco-node {
        max-width: calc(50% - 1rem);
        min-width: 150px;
        text-align: center;
    }
    .eco-connectors { display: none; }
}

/* ============================================================
   7.5 CREATIVE WORK: Poster Masonry
============================================================ */
.section-posters {
    background: var(--paper);
    padding: 8rem 0;
    border-top: var(--border-ink);
}

.posters-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.posters-header {
    margin-bottom: 6rem;
}
.ph-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 1rem;
}
.posters-display {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 7rem);
    text-transform: uppercase;
    color: var(--ink);
    line-height: 0.95;
    margin-bottom: 1.5rem;
}
.posters-desc {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.6;
}

/* Masonry Layout */
.masonry-grid {
    column-count: 4;
    column-gap: 1rem;
    width: 100%;
}
.masonry-grid:hover .masonry-item {
    opacity: 0.6;
    filter: sepia(30%);
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 1rem; /* Congested rhythm */
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    padding: 0;
}
.masonry-item.narrow-item {
    padding: 0;
}
.rotate-left { transform: rotate(-1.5deg); }
.rotate-right { transform: rotate(1.5deg); }

.masonry-item:hover {
    opacity: 1 !important;
    filter: sepia(0%) !important;
    transform: scale(1.015) !important;
    z-index: 10;
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.masonry-item img {
    width: 100%;
    display: block;
    /* Print edges */
    border: var(--border-ink);
    background: var(--ink);
}

.masonry-label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--ink);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    padding: 0.4rem 0.8rem;
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s, transform 0.3s;
    pointer-events: none;
    z-index: 5;
}
.masonry-item:hover .masonry-label {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    .masonry-grid { column-count: 3; column-gap: 1.5rem; }
}
@media (max-width: 768px) {
    .masonry-grid { column-count: 2; column-gap: 1rem; }
    .masonry-item { margin-bottom: 2rem; padding: 0; }
    .masonry-item.narrow-item { padding: 0; }
}

/* ============================================================
   8. SERVICES: The Classifieds
============================================================ */
.section-services {
    padding: var(--section-pad) 0;
}
.services-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}
.services-header h2 {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 4.5rem);
    text-transform: uppercase;
    line-height: 0.9;
}
.bg-yellow .services-header h2 { color: var(--ink); }

.classifieds-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1rem;
}

.listing-block {
    padding: 2rem;
    border: 2px solid var(--ink);
    background: var(--paper);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 6px 6px 0 var(--ink);
}
.listing-block:hover { 
    transform: translate(-4px, -4px); 
    box-shadow: 10px 10px 0 var(--ink);
}

.list-meta {
    display: flex;
    justify-content: space-between;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}
.list-cat {
    font-family: var(--font-display);
    font-size: 1.25rem;
    color: var(--red);
}
.list-vol {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.list-title {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--ink);
}
.list-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: auto;
}

/* ============================================================
   8.5. NEWSPAPER ARCHIVE
============================================================ */
.section-archive {
    padding: var(--section-pad) 0;
    overflow: hidden;
}
.archive-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}
.archive-header { margin-bottom: 5rem; position: relative; }
.archive-display {
    font-family: var(--font-display);
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--ink);
    margin-top: 1rem;
}

/* Simple Grid Layout */
.archive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    padding-bottom: 2rem;
}

.news-item {
    position: relative;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s ease;
}
.news-image-wrapper {
    position: relative;
    border: 1px solid rgba(0,0,0,0.1);
    background: var(--paper);
    padding: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}
.news-image-wrapper img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: top;
    display: block;
    filter: sepia(15%) contrast(1.05);
    transition: filter 0.3s;
}

/* Hover Interactions */
.news-item:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 15px 15px 0 var(--ink);
    z-index: 10;
}
.news-item:hover .news-image-wrapper img {
    filter: sepia(0%) contrast(1.1);
}
.view-indicator {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: var(--red);
    color: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: bold;
    padding: 0.5rem 1rem;
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
    border-radius: 2px;
}
.news-item:hover .view-indicator {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* Meta Labels */
.news-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
}
.news-pub { color: var(--ink); }

/* Responsive Archive */
@media (max-width: 768px) {
    .archive-grid {
        grid-template-columns: 1fr;
    }
}

/* Lightbox Modal */
.lightbox {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(18, 18, 18, 0.95);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(5px);
}
.lightbox.active {
    opacity: 1;
    pointer-events: all;
}
.lightbox-close {
    position: absolute;
    top: 2rem; right: 2rem;
    background: none; border: none;
    color: var(--paper);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border: 4px solid var(--paper);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}



/* ============================================================
   10. WORK: Campaign Files
============================================================ */
.section-work {
    background: var(--paper);
    padding: var(--section-pad) 0;
    border-top: var(--border-ink);
}
.work-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.work-header {
    text-align: center;
    margin-bottom: 4rem;
}
.work-header h2 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--red);
    line-height: 0.9;
}

.work-gallery {
    display: flex;
    justify-content: center;
    padding: 2rem 0 4rem;
}

.campaign-folder {
    border: var(--border-ink);
    background: var(--paper-dark);
    display: flex;
    flex-direction: column;
    width: 380px;
    min-width: 380px;
    margin-right: -80px; /* The overlap */
    box-shadow: -15px 0 30px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.4s;
    cursor: pointer;
}
.campaign-folder:last-child {
    margin-right: 0;
}
.campaign-folder:hover {
    transform: translateY(-20px) rotate(-1deg);
    z-index: 10 !important;
    box-shadow: -20px 20px 40px rgba(0,0,0,0.15);
}

.cf-1 { z-index: 1; transform: rotate(-2deg); }
.cf-2 { z-index: 2; margin-top: 2rem; transform: rotate(1deg); }
.cf-3 { z-index: 3; margin-top: 1rem; transform: rotate(-1deg); }

.cf-image-wrapper {
    padding: 1rem;
    border-bottom: var(--border-ink);
    background: var(--paper);
}
.cf-image-wrapper img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    filter: sepia(20%) contrast(1.1);
}

.cf-content {
    padding: 2rem;
    flex-grow: 1;
}
.cf-content h3 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    color: var(--ink);
    line-height: 1.05;
    margin-bottom: 1rem;
}
.cf-content p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 2rem;
}

.cf-stats {
    display: flex;
    gap: 2rem;
}
.stat h4 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--green);
    line-height: 1;
}
.stat span {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.cf-meta {
    padding: 1rem 2rem;
    border-top: var(--border-ink);
    background: var(--paper);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    line-height: 1.6;
}
.cf-meta-label {
    color: var(--red);
    font-weight: bold;
    margin-right: 0.5rem;
}

@media (max-width: 1200px) {
    .work-gallery {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    .campaign-folder {
        margin-right: 0;
        width: 100%;
        max-width: 500px;
        transform: none !important;
        margin-top: 0 !important;
    }
}

/* ============================================================
   11. FOOTER: The Print Shop Ending
============================================================ */
.footer {
    background: var(--indigo);
    color: var(--paper);
    padding: 5rem 0 2rem;
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 var(--pad-x);
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(253,251,247,0.15);
}

.footer-logo {
    display: flex;
    flex-direction: column;
}

.footer-logo img{
   width: 249px;
   filter: brightness(0) invert(1);
}



@keyframes spin-slow { 100% { transform: rotate(360deg); } }
.icon-spin { animation: spin-slow 20s linear infinite; }

.footer-statement {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.05;
    text-transform: uppercase;
    color: var(--yellow);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.f-col h4 {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--red);
    margin-bottom: 1.5rem;
    letter-spacing: 0.1em;
}

.f-col p, .f-col li {
    font-size: 0.95rem;
    color: rgba(253,251,247,0.8);
    margin-bottom: 0.75rem;
}

.f-col a:hover { color: var(--yellow); }

.f-punjabi {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--paper);
    margin-top: 1rem;
}

/* ============================================================
   11.5. PROCESS JOURNEY
============================================================ */
.process-journey {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}
.process-line {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    width: 2px;
    background: var(--red);
    transform: translateX(-50%);
    z-index: 1;
}
.process-step-left, .process-step-right {
    display: flex;
    margin-bottom: 6rem;
    position: relative;
    z-index: 2;
}
.process-step-left { justify-content: flex-start; }
.process-step-right { justify-content: flex-end; }
.process-step-center { display: flex; justify-content: center; margin-bottom: 6rem; position: relative; z-index: 2; }
.process-content-left {
    width: 45%; text-align: right; padding-right: 3rem; position: relative;
}
.process-content-right {
    width: 45%; text-align: left; padding-left: 3rem; position: relative;
}
.process-content-center {
    background: var(--paper); border: 2px solid var(--ink); padding: 4rem; text-align: center; width: 90%; max-width: 700px; box-shadow: 15px 15px 0 var(--ink); position: relative;
}
.crop-mark { position: absolute; width: 20px; height: 20px; }
.crop-mark.top-left { top: -10px; left: -10px; border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-mark.top-right { top: -10px; right: -10px; border-top: 2px solid var(--ink); border-right: 2px solid var(--ink); }
.crop-mark.bottom-left { bottom: -10px; left: -10px; border-bottom: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.crop-mark.bottom-right { bottom: -10px; right: -10px; border-bottom: 2px solid var(--ink); border-right: 2px solid var(--ink); }

.process-marker-left {
    position: absolute; top: 1.5rem; right: -2.5rem;
    width: 1rem; height: 1rem; border: 1px solid var(--red); border-radius: 50%;
    background: var(--yellow); display: flex; align-items: center; justify-content: center; z-index: 3;
}
.process-marker-right {
    position: absolute; top: 1.5rem; left: -2.5rem;
    width: 1rem; height: 1rem; border: 1px solid var(--red); border-radius: 50%;
    background: var(--yellow); display: flex; align-items: center; justify-content: center; z-index: 3;
}
.process-marker-dot { width: 4px; height: 4px; background: var(--ink); border-radius: 50%; }

/* ============================================================
   12. RESPONSIVE RECOMPOSITION
============================================================ */
@media(max-width: 1024px) {
    .hero-inner { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-masthead { justify-content: center; }
    .poster-base { position: relative; top: 0; left: 0; transform: none; width: 100%; box-shadow: none; }
    .poster-stamp { bottom: -10px; right: 10px; width: 90px; height: 90px; }
    .poster-stamp .num { font-size: 2rem; }
    
    .evo-spread { grid-template-columns: 1fr; text-align: center; }
    .evo-center-divider { width: 100%; height: 2px; margin: 2rem 0; }
    
    .biz-gallery { display: flex; flex-direction: column; gap: 2rem; }
    .biz-photo { margin-top: 0 !important; }
    
    .campaign-folder { grid-template-columns: 1fr; }
    .cf-meta { border-right: none; border-bottom: var(--border-ink); display: flex; justify-content: space-between; }
    .cf-content { grid-template-columns: 1fr; }
    
    .footer-top { grid-template-columns: 1fr; text-align: center; }
}

@media(max-width: 768px) {
    .nav-links { display: none; }
    .hamburger { display: block; }
    
    .section-ecosystem { padding: 4rem 0 !important; }
    .eco-header { margin-bottom: 2.5rem !important; }
    
    .services-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
    
    .cf-meta { flex-direction: column; gap: 1rem; }

    /* Process Journey Mobile */
    .process-line { left: 1rem; transform: none; }
    .process-step-left, .process-step-right { justify-content: flex-end; margin-bottom: 4rem; }
    .process-step-center { justify-content: flex-end; margin-bottom: 4rem; }
    .process-content-left, .process-content-right { width: calc(100% - 3rem); text-align: left; padding: 0; padding-left: 2rem; }
    .process-content-center { width: calc(100% - 4rem); text-align: left; padding: 2rem; margin-left: auto; margin-right: 1rem; box-shadow: 10px 10px 0 var(--ink); }
    .process-marker-left, .process-marker-right { left: -1.5rem; right: auto; top: 0.5rem; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON
============================================================ */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.whatsapp-float:hover {
    background-color: #128C7E;
    color: #FFF;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 28px;
    }
}

/* ============================================================
   SOCIAL FLOATING BAR (LEFT)
============================================================ */
.social-float {
    position: fixed;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.social-float a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: var(--red);
    color: var(--paper);
    font-size: 20px;
    margin-bottom: 2px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-float a:hover {
    background-color: var(--ink);
    width: 55px;
}

@media (max-width: 768px) {
    .social-float {
        display: none;
    }
}
/* ============================================================
   CROSSING MARQUEE
============================================================ */
.marquee-wrapper {
    position: relative;
    width: 100%;
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 4rem 0;
}

.marquee-strip {
    position: absolute;
    width: 150vw;
    left: -25vw;
    background: var(--paper-tint);
    color: var(--ink);
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    /* border-top: var(--border-ink); */
    /* border-bottom: var(--border-ink); */
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.253);
}

.marquee-strip.strip-1 {
    transform: rotate(-3deg);
}

.marquee-strip.strip-2 {
    transform: rotate(3deg);
    background: var(--paper-tint);
    color: var(--paper);
    z-index: 9;
}

.marquee-content {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    animation: scroll-marquee 30s linear infinite;
    padding-left: 2.5rem; /* Match the gap for smooth looping */
}

.marquee-strip.strip-2 .marquee-content {
    animation-direction: reverse;
}

.marquee-item {
    font-family: var(--font-display);
    font-size: 2.5rem;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
    line-height: 1;
}

.marquee-item img {
    height: 35px;
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-33.3333%); } /* Since we have 3 identical sets, 1/3rd gets us perfectly to the start of the next set */
}

@media (max-width: 768px) {
    .marquee-wrapper { height: 120px; margin: 2rem 0; }
    .marquee-item { font-size: 1.5rem; gap: 0.5rem; }
    .marquee-item img { height: 25px; }
    .marquee-strip { padding: 0.5rem 0; }
}
