﻿/* ==========================================================================
   LOKAAL INDIA â€” DESIGN SYSTEM & STYLESHEET (Cream Canvas Edition)
   Color Palette:
   - Background Main: #FAF4E8 (Warm editorial cream)
   - Background Dark/Alt Section: #F2E8D5 (Rich warm sand/cream)
   - Main Headings: #5A120B (Deep rich maroon)
   - Burnt Red Headings: #7A1E0E
   - Body Text: #1D1616 (Crisp dark black/charcoal)
   - Subheadings & Descs: #3D2826 (Dark warm brown/charcoal)
   - Saffron Accent: #F47721
   - Warm Orange: #D85D0D
   - Card Surfaces: #FFFFFF & #FDFBF7
   ========================================================================== */

:root {
    --bg-main: #FAF4E8;
    --bg-dark: #FAF4E8;
    --bg-card: #FFFFFF;
    --red-primary: #5A120B;
    --red-burnt: #7A1E0E;
    --saffron: #F47721;
    --orange-warm: #D85D0D;
    --text-dark: #1D1616;
    --text-heading: #5A120B;
    --text-sub: #3D2826;
    --text-cream: #FFF1DC;
    --text-muted: #5C4A48;
    --border-dark: rgba(90, 18, 11, 0.18);
    --border-glow: rgba(244, 119, 33, 0.4);

    --font-heading: 'Oswald', sans-serif;
    --font-body: 'Poppins', sans-serif;

    --transition-fast: 0.25s ease;
    --transition-normal: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

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

/* SMOOTH SCROLL & HARDWARE ACCELERATION */
html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-main);
    color: var(--text-dark);
    -webkit-overflow-scrolling: touch;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -webkit-tap-highlight-color: transparent;
}

/* LIGHTWEIGHT ATMOSPHERIC OVERLAY (GPU Accelerated) */
.devanagari-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 50% 30%, var(--red-burnt) 0%, transparent 70%);
    transform: translateZ(0);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-heading);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-heading);
}

p {
    color: var(--text-sub);
}

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

.highlight-saffron {
    color: var(--saffron);
    position: relative;
}

.highlight-maroon {
    color: var(--red-primary);
}

.text-saffron {
    color: var(--saffron);
}

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

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    padding: 0.85rem 1.75rem;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--saffron) 0%, #D85D0D 100%);
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(244, 119, 33, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-burnt) 100%);
    color: #FFFFFF;
    box-shadow: 0 6px 30px rgba(90, 18, 11, 0.45);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(90, 18, 11, 0.08);
    color: var(--red-primary);
    border-color: rgba(90, 18, 11, 0.3);
}

.btn-secondary:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

.btn-saffron {
    background: var(--red-primary);
    color: #FFFFFF;
    font-weight: 700;
    box-shadow: 0 4px 25px rgba(90, 18, 11, 0.3);
}

.btn-saffron:hover {
    background: var(--saffron);
    color: #FFFFFF;
    box-shadow: 0 6px 35px rgba(244, 119, 33, 0.5);
    transform: translateY(-2px);
}

.btn-boost {
    background: rgba(90, 18, 11, 0.08);
    color: var(--red-primary);
    border: 1px solid rgba(90, 18, 11, 0.3);
    font-weight: 700;
}

.btn-boost:hover {
    background: var(--red-primary);
    border-color: var(--red-primary);
    color: #FFFFFF;
    box-shadow: 0 6px 25px rgba(90, 18, 11, 0.35);
    transform: translateY(-2px);
}

.lead-cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    width: 100%;
}

.btn-lg {
    padding: 1.1rem 2.2rem;
    font-size: 1.15rem;
}

.btn-xl {
    padding: 1.3rem 2.8rem;
    font-size: 1.3rem;
}

.btn-block {
    width: 100%;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* LAYOUT & CONTAINERS */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: 7rem 0;
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    color: var(--saffron);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.section-title {
    font-size: 3.2rem;
    margin-bottom: 1.2rem;
    line-height: 1.1;
    color: var(--red-primary);
}

.section-desc {
    max-width: 680px;
    margin: 0 auto 3.5rem auto;
    font-size: 1.1rem;
    color: var(--text-sub);
}

/* NAVBAR */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color var(--transition-normal), backdrop-filter var(--transition-normal), border-bottom var(--transition-normal);
    padding: 0.5rem 0;
    background-color: rgba(250, 244, 232, 0.94);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(90, 18, 11, 0.1);
}

.site-header.scrolled {
    background-color: rgba(250, 244, 232, 0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(90, 18, 11, 0.18);
    padding: 0.4rem 0;
    box-shadow: 0 6px 20px rgba(90, 18, 11, 0.08);
}

.nav-container {
    width: 92%;
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
}

.logo-img-drawer {
    height: 40px;
    width: auto;
    object-fit: contain;
}

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

.nav-link {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color var(--transition-fast);
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--red-primary);
    transition: width var(--transition-fast);
}

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

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

.hamburger-btn span {
    width: 24px;
    height: 2px;
    background-color: var(--text-dark);
    transition: all var(--transition-fast);
}

/* MOBILE DRAWER */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    background-color: var(--bg-main);
    z-index: 1005;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-left: 1px solid var(--border-dark);
    transition: right var(--transition-normal);
    box-shadow: -10px 0 40px rgba(90, 18, 11, 0.15);
}

.mobile-drawer.active {
    right: 0;
}

.drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-dark);
}

.drawer-close-btn {
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    color: var(--red-primary);
}

.mobile-nav-link:hover {
    color: var(--saffron);
}

.drawer-note {
    font-size: 0.85rem;
    color: var(--text-sub);
    margin-top: 1rem;
    text-align: center;
}

/* HERO SECTION */
.hero-section {
    min-height: 100vh;
    padding-top: 9rem;
    padding-bottom: 6rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
}

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

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.12;
    filter: sepia(0.3) contrast(1.1);
}

.hero-ambient-glow {
    position: absolute;
    top: 20%;
    left: 10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(244, 119, 33, 0.12) 0%, rgba(90, 18, 11, 0.08) 50%, transparent 80%);
    filter: blur(80px);
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, transparent 40%, rgba(250, 244, 232, 0.6) 100%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.85fr;
    gap: 4rem;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    letter-spacing: 0.25em;
    color: var(--red-primary);
    margin-bottom: 1.2rem;
    background: rgba(90, 18, 11, 0.08);
    padding: 0.35rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(90, 18, 11, 0.2);
}

.eyebrow-dot {
    width: 8px;
    height: 8px;
    background-color: var(--saffron);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--saffron);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--red-primary);
}

.hero-subheadline {
    font-size: 1.2rem;
    color: var(--text-sub);
    max-width: 620px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.hero-support-text {
    font-size: 0.9rem;
    color: var(--text-sub);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* FLOATING HERO CARD */
.hero-floating-card {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 2.2rem;
    box-shadow: 0 20px 50px rgba(90, 18, 11, 0.12);
    position: relative;
}

.card-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--red-primary);
    color: #FFFFFF;
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.2rem 0.8rem;
    border-radius: var(--radius-full);
}

.floating-card-title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--red-primary);
}

.floating-card-list {
    list-style: none;
    margin-bottom: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.floating-card-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.98rem;
    color: var(--text-dark);
    font-weight: 500;
}

.floating-card-list li i {
    color: var(--red-primary);
    font-size: 0.9rem;
    background: rgba(90, 18, 11, 0.1);
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-footer-tag {
    display: block;
    text-align: center;
    font-size: 0.75rem;
    color: var(--text-sub);
    margin-top: 1rem;
    letter-spacing: 0.05em;
}

/* TRUST STRIP TICKER */
.trust-strip {
    background: var(--red-primary);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1.1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 10;
}

.trust-ticker-track {
    display: flex;
    width: max-content;
    animation: tickerScroll 32s linear infinite;
    will-change: transform;
    transform: translateZ(0);
}

.trust-ticker-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-right: 2rem;
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.15em;
    color: #FFF1DC;
    white-space: nowrap;
}

.trust-ticker-content .dot {
    color: var(--saffron);
}

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

/* CARDS GRIDS */
.cards-grid {
    display: grid;
    gap: 2.8rem;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

.grid-2x3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.8rem;
}

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

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

.grid-4 {
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.2fr;
}

/* SECTION 2 â€” THE PROBLEM */
.section-problem {
    background: var(--bg-main);
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    transition: all var(--transition-normal);
    position: relative;
    box-shadow: 0 4px 20px rgba(90, 18, 11, 0.05);
}

.problem-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 10px 30px rgba(90, 18, 11, 0.15);
    transform: translateY(-5px);
}

.card-num {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    color: var(--red-primary);
    opacity: 0.85;
    line-height: 1;
    margin-bottom: 1rem;
    display: block;
}

.card-title {
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
    color: var(--red-primary);
}

.card-text {
    font-size: 0.98rem;
    color: var(--text-sub);
}

/* SECTION 3 â€” HOW IT WORKS */
.section-how-it-works {
    background: var(--bg-dark);
    position: relative;
}

.timeline-wrapper {
    max-width: 900px;
    margin: 0 auto 3.5rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    position: relative;
}

.timeline-step {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(90, 18, 11, 0.05);
}

.timeline-step:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 25px rgba(90, 18, 11, 0.12);
    transform: translateX(6px);
}

.step-badge {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    background: var(--red-primary);
    color: #FFFFFF;
    padding: 0.4rem 1.1rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    white-space: nowrap;
}

.step-title {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
    color: var(--red-primary);
}

.step-desc {
    font-size: 1rem;
    color: var(--text-sub);
}

/* SECTION 4 â€” SERVICES */
.section-services {
    background: var(--bg-main);
}

.services-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.75rem !important;
    width: 100% !important;
}

.service-card {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 1.8rem 2.2rem;
    margin-bottom: 1.75rem !important;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(90, 18, 11, 0.05);
}

.service-card:last-child {
    margin-bottom: 0 !important;
}

.service-card:hover {
    border-color: var(--red-primary);
    box-shadow: 0 8px 25px rgba(90, 18, 11, 0.12);
    transform: translateY(-4px);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: rgba(90, 18, 11, 0.08);
    border: 1px solid rgba(90, 18, 11, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--red-primary);
    margin-bottom: 1.25rem;
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--red-primary);
}

.service-desc {
    font-size: 0.95rem;
    color: var(--text-sub);
}

/* SECTION 5 â€” SPONSORSHIP FOCUS */
.section-sponsorship-focus {
    background-color: var(--red-primary);
    position: relative;
    overflow: hidden;
    padding: 8rem 0;
    color: var(--text-cream);
}

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

.focus-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}

.focus-gradient-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(90, 18, 11, 0.95) 0%, rgba(122, 30, 14, 0.9) 100%);
}

.focus-container {
    position: relative;
    z-index: 2;
}

.section-sponsorship-focus .section-title {
    color: #FFF1DC;
}

.focus-text {
    font-size: 1.1rem;
    color: #FFF1DC;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.disclaimer-box {
    background: rgba(22, 5, 4, 0.4);
    border: 1px dashed var(--saffron);
    padding: 1.25rem 1.6rem;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.disclaimer-box p {
    font-size: 0.9rem;
    color: #FFF1DC;
    margin: 0;
}

.chips-title {
    font-size: 1.35rem;
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    color: var(--saffron);
    letter-spacing: 0.1em;
}

.category-chips-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.chip {
    background: rgba(255, 241, 220, 0.12);
    border: 1px solid rgba(255, 241, 220, 0.25);
    padding: 0.65rem 1.2rem;
    border-radius: var(--radius-full);
    font-size: 0.92rem;
    color: #FFF1DC;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
}

.chip:hover {
    border-color: var(--saffron);
    background: var(--saffron);
    color: #160504;
    transform: translateY(-2px);
}

.chip i {
    color: var(--saffron);
}

.chip:hover i {
    color: #160504;
}

/* SECTION 6 â€” WHY LOKAAL INDIA */
.section-why-us {
    background: var(--bg-main);
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    position: relative;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 20px rgba(90, 18, 11, 0.05);
}

.why-card:hover {
    border-color: var(--red-primary);
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(90, 18, 11, 0.12);
}

.why-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--red-primary);
    opacity: 0.35;
    position: absolute;
    top: 1.5rem;
    right: 2rem;
}

.why-title {
    font-size: 1.6rem;
    margin-bottom: 0.85rem;
    padding-right: 2rem;
    color: var(--red-primary);
}

.why-desc {
    font-size: 0.98rem;
    color: var(--text-sub);
}

/* SECTION 7 â€” WHO CAN APPLY */
.section-who-can-apply {
    background: var(--bg-dark);
}

.event-types-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    max-width: 1000px;
    margin: 0 auto;
}

.event-type-pill {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 0.05em;
    color: var(--red-primary);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(90, 18, 11, 0.05);
}

.event-type-pill:hover {
    background: var(--red-primary);
    color: #FFFFFF;
    border-color: var(--red-primary);
    transform: scale(1.04);
}

.event-type-pill i {
    color: var(--saffron);
}

.event-type-pill:hover i {
    color: #FFFFFF;
}

/* SECTION 7.5 â€” BRAND WALL */
.section-brand-wall {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
}

.brand-wall-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-wall-card {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    padding: 1.6rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all var(--transition-normal);
    box-shadow: 0 4px 15px rgba(90, 18, 11, 0.04);
}

.brand-wall-card:hover {
    border-color: var(--saffron);
    box-shadow: 0 8px 25px rgba(244, 119, 33, 0.2);
    transform: translateY(-4px);
}

.brand-svg-wrap {
    width: 100%;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.35rem;
}

.brand-svg-wrap svg {
    width: 100%;
    height: 100%;
    max-height: 38px;
}

.brand-redbull { color: #DC0032; font-family: 'Oswald', sans-serif; font-weight: 700; }
.brand-boat { color: #E81C24; font-family: 'Poppins', sans-serif; font-weight: 700; letter-spacing: -0.02em; }
.brand-swiggy { color: #FC8019; font-family: 'Poppins', sans-serif; font-weight: 700; }
.brand-zomato { color: #CB202D; font-family: 'Poppins', sans-serif; font-weight: 800; font-style: italic; }
.brand-royalenfield { color: #111111; font-family: 'Oswald', sans-serif; letter-spacing: 0.12em; }
.brand-hyundai { color: #002C6C; font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; }
.brand-samsung { color: #1428A0; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; }
.brand-monster { color: #81B300; font-family: 'Oswald', sans-serif; letter-spacing: 0.08em; }
.brand-fastrack { color: #111111; font-family: 'Oswald', sans-serif; letter-spacing: 0.15em; }
.brand-paytm { color: #002E6E; font-family: 'Poppins', sans-serif; font-weight: 700; }
.brand-nykaa { color: #FC2779; font-family: 'Oswald', sans-serif; letter-spacing: 0.1em; }
.brand-jbl { color: #FF6600; font-family: 'Oswald', sans-serif; font-weight: 700; }
.brand-cred { color: #111111; font-family: 'Oswald', sans-serif; letter-spacing: 0.18em; }
.brand-bacardi { color: #B31942; font-family: 'Oswald', sans-serif; letter-spacing: 0.12em; }
.brand-bmw { color: #0066B1; font-family: 'Oswald', sans-serif; font-weight: 700; }

.brand-category {
    font-size: 0.75rem;
    color: var(--text-sub);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
}

/* SECTION 8 â€” LEAD CTA */
.section-lead-cta {
    background: var(--bg-main);
    position: relative;
    border-top: 1px solid var(--border-dark);
    padding: 9rem 0;
}

.lead-cta-title {
    font-size: 4rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    color: var(--red-primary);
}

.lead-cta-subtext {
    max-width: 680px;
    margin: 0 auto 3rem auto;
    font-size: 1.2rem;
    color: var(--text-sub);
}

.cta-action-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cta-estimate {
    font-size: 0.9rem;
    color: var(--text-sub);
}

.cta-secondary-note {
    font-size: 0.95rem;
    color: var(--text-sub);
}

/* FAQ SECTION */
.section-faq {
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
}

.faq-accordion-container {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    background: #FFFFFF;
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color var(--transition-fast);
    box-shadow: 0 4px 15px rgba(90, 18, 11, 0.04);
}

.faq-item.active {
    border-color: var(--red-primary);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 1.8rem;
    background: none;
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    letter-spacing: 0.03em;
    color: var(--red-primary);
    text-align: left;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--saffron);
}

.faq-icon {
    color: var(--red-primary);
    transition: transform var(--transition-normal);
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal), padding var(--transition-normal);
    padding: 0 1.8rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.8rem 1.6rem 1.8rem;
}

.faq-answer p {
    font-size: 1rem;
    color: var(--text-sub);
    line-height: 1.6;
}

/* FOOTER */
.site-footer {
    background-color: var(--red-primary);
    border-top: 1px solid var(--border-dark);
    padding: 5rem 0 2rem 0;
    position: relative;
    z-index: 2;
    color: #FFF1DC;
}

.footer-top {
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 0.8rem;
}

.logo-img-footer {
    height: 48px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    font-size: 0.85rem;
    color: var(--saffron);
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-copy-statement {
    font-size: 0.9rem;
    color: #FFF1DC;
    opacity: 0.85;
    line-height: 1.6;
}

.footer-heading {
    font-size: 1.25rem;
    color: #FFF1DC;
    margin-top: 0.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    font-size: 0.95rem;
    color: #FFF1DC;
    opacity: 0.85;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--saffron);
    opacity: 1;
}

.footer-cta-desc {
    font-size: 0.9rem;
    color: #FFF1DC;
    opacity: 0.85;
    margin-bottom: 1.2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 241, 220, 0.15);
    border: 1px solid rgba(255, 241, 220, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFF1DC;
    transition: all var(--transition-fast);
}

.footer-socials a:hover {
    background: var(--saffron);
    color: #160504;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 241, 220, 0.15);
    padding-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.85rem;
    color: #FFF1DC;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 1.5rem;
}

.footer-legal a:hover {
    color: var(--saffron);
}

/* STICKY MOBILE CTA BAR */
.sticky-mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 244, 232, 0.96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-dark);
    padding: 0.85rem 1.25rem;
    z-index: 990;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 -10px 30px rgba(90, 18, 11, 0.15);
}

.sticky-bar-text {
    display: flex;
    flex-direction: column;
}

.sticky-bar-text span {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--red-primary);
    line-height: 1.1;
}

.sticky-bar-text small {
    font-size: 0.75rem;
    color: var(--text-sub);
}

/* TALLY FORM MODAL */
.tally-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(36, 8, 6, 0.7);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-normal);
    padding: 1.5rem;
}

.tally-modal-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.tally-modal-box {
    background: var(--bg-main);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    width: 100%;
    max-width: 750px;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 25px 70px rgba(90, 18, 11, 0.3);
    overflow: hidden;
    transform: translateY(20px);
    transition: transform var(--transition-normal);
}

.tally-modal-overlay.active .tally-modal-box {
    transform: translateY(0);
}

.tally-modal-header {
    padding: 1.25rem 1.75rem;
    background: var(--red-primary);
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-wrap h3 {
    font-size: 1.5rem;
    color: #FFF1DC;
    margin: 0;
}

.modal-title-wrap p {
    font-size: 0.8rem;
    color: var(--saffron);
    margin: 0;
}

.tally-modal-close {
    background: none;
    border: none;
    color: #FFF1DC;
    font-size: 1.4rem;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.tally-modal-close:hover {
    color: var(--saffron);
}

.tally-modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.modal-info-banner {
    background: rgba(90, 18, 11, 0.08);
    border: 1px solid rgba(90, 18, 11, 0.2);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.2rem;
    font-size: 0.88rem;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.modal-info-banner i {
    color: var(--red-primary);
    font-size: 1.1rem;
}

.tally-modal-footer {
    padding: 1rem 1.75rem;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.tally-modal-note {
    font-size: 0.8rem;
    color: var(--text-sub);
}

/* ANIMATIONS & SCROLL REVEAL */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-floating-card {
        max-width: 550px;
        margin: 0 auto;
    }

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

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

    .focus-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
        position: relative;
    }

    .site-header, .site-header.scrolled {
        background-color: rgba(250, 244, 232, 0.98) !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        padding: 0.4rem 0.85rem !important;
        height: 52px !important;
        min-height: 52px !important;
        display: flex !important;
        align-items: center !important;
    }

    .nav-container {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .mobile-drawer {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        background-color: #FAF4E8 !important;
    }

    .hamburger-btn {
        display: flex !important;
        width: 34px !important;
        height: 34px !important;
        padding: 5px !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .logo-img { height: 36px !important; max-height: 44px !important;
        width: auto !important;
    }

    .nav-actions {
        gap: 0.4rem !important;
        align-items: center !important;
    }

    .nav-actions .btn {
        padding: 0.4rem 0.65rem !important;
        font-size: 0.75rem !important;
        height: 32px !important;
        border-radius: 4px !important;
    }

    .container {
        width: 92% !important;
        max-width: 100% !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .hero-section {
        padding-top: 4.5rem !important;
        padding-bottom: 2.5rem !important;
        min-height: auto !important;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 2rem !important;
        box-sizing: border-box !important;
    }

    .hero-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        text-align: left;
    }

    .hero-eyebrow {
        font-size: 0.8rem !important;
        letter-spacing: 0.15em !important;
        padding: 0.3rem 0.8rem !important;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 1rem !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
    }

    .hero-subheadline {
        font-size: 0.98rem !important;
        line-height: 1.55 !important;
        margin-bottom: 1.5rem !important;
    }

    .hero-cta-group {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 0.75rem !important;
    }

    .hero-cta-group .btn-primary {
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 1rem 1.25rem !important;
        font-size: 1rem !important;
        justify-content: center !important;
    }

    .hero-floating-card {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        margin-top: 1rem !important;
        padding: 1.5rem 1.25rem !important;
    }

    .floating-card-title {
        font-size: 1.4rem !important;
    }

    .floating-card-list li {
        font-size: 0.9rem !important;
    }

    .section {
        padding: 3.5rem 0 !important;
    }

    .section-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .lead-cta-title {
        font-size: 2rem !important;
        line-height: 1.15 !important;
    }

    .lead-cta-subtext {
        font-size: 1rem !important;
    }

    .cards-grid, .services-grid, .grid-3, .grid-2x3, .grid-2x2, .grid-2, .grid-4 {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        max-width: 100% !important;
        gap: 1.5rem !important;
        box-sizing: border-box !important;
    }

    .problem-card, .service-card, .why-card, .timeline-step, .faq-item {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding: 1.5rem 1.25rem !important;
    }

    .timeline-step {
        flex-direction: column !important;
        gap: 0.75rem !important;
    }

    .footer-top {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        gap: 2rem !important;
    }

    .footer-col {
        padding-top: 1.25rem !important;
        border-top: 1px solid rgba(255, 241, 220, 0.15) !important;
    }

    .footer-col:first-child {
        border-top: none !important;
        padding-top: 0 !important;
    }

    .footer-bottom {
        flex-direction: column !important;
        gap: 1rem !important;
        text-align: center !important;
    }

    .sticky-mobile-bar {
        display: flex !important;
        width: 100% !important;
        left: 0 !important;
        bottom: 0 !important;
        box-sizing: border-box !important;
        z-index: 10000 !important;
        padding: 0.75rem 0.85rem !important;
        gap: 0.65rem !important;
        justify-content: space-between !important;
    }

    .sticky-mobile-bar .btn {
        flex: 1 !important;
        padding: 0.7rem 0.5rem !important;
        font-size: 0.85rem !important;
        justify-content: center !important;
    }

    body {
        padding-bottom: 75px !important;
    }

    /* Mobile 2-column grid layout for pills and chips */
    .event-types-grid, .category-chips-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .event-type-pill, .chip {
        width: 100% !important;
        justify-content: center !important;
        font-size: 0.85rem !important;
        padding: 0.65rem 0.5rem !important;
        text-align: center !important;
        box-sizing: border-box !important;
    }

    .event-type-pill i, .chip i {
        font-size: 0.85rem !important;
    }

    /* Mobile CTA layout optimization */
    .timeline-cta-wrapper {
        display: none !important;
    }

    .hero-floating-card .btn-saffron {
        display: none !important;
    }

    .hero-cta-group .btn-secondary {
        display: none !important;
    }
}

/* ==========================================================================
   DYNAMIC CAMPAIGNS & SPONSORSHIP LEAD FORM STYLES
   ========================================================================== */

/* CAMPAIGNS SECTION */
.section-campaigns {
    background-color: var(--bg-main);
    padding: 5rem 0;
    position: relative;
    border-bottom: 1px solid var(--border-dark);
}

.campaigns-grid-wrapper {
    margin-top: 2.5rem;
    min-height: 220px;
}

.campaigns-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .campaigns-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.campaign-card {
    background: #FFFFFF;
    border: 1.5px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(90, 18, 11, 0.06);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(90, 18, 11, 0.12);
    border-color: var(--saffron);
}

.campaign-card-header {
    position: relative;
    height: 180px;
    background: linear-gradient(135deg, var(--red-primary) 0%, var(--red-burnt) 100%);
    overflow: hidden;
}

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

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

.campaign-brand-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(17, 11, 11, 0.85);
    backdrop-filter: blur(8px);
    color: var(--saffron);
    border: 1px solid rgba(244, 119, 33, 0.4);
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.campaign-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.campaign-card-title {
    font-size: 1.35rem;
    color: var(--red-primary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.campaign-card-desc {
    font-size: 0.92rem;
    color: var(--text-sub);
    margin-bottom: 1.25rem;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.campaign-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px dashed rgba(90, 18, 11, 0.15);
    margin-bottom: 1.25rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.campaigns-empty {
    background: #FFFFFF;
    border: 2px dashed var(--border-dark);
    border-radius: var(--radius-md);
    padding: 3.5rem 2rem;
    max-width: 650px;
    margin: 0 auto;
}

.empty-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(244, 119, 33, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.75rem;
}

.empty-title {
    font-size: 1.4rem;
    color: var(--red-primary);
    margin-bottom: 0.5rem;
}

.empty-desc {
    font-size: 0.95rem;
    color: var(--text-sub);
}

/* CAMPAIGN MODAL */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 11, 11, 0.8);
    backdrop-filter: blur(6px);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-box {
    background: #FFFFFF;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
}

.campaign-modal-box {
    max-width: 650px;
    width: 92%;
}

.modal-header {
    padding: 1.25rem 1.5rem;
    background: #FAF4E8;
    border-bottom: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title-wrap .badge-brand {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--saffron);
}

.modal-title-wrap h3 {
    font-size: 1.35rem;
    color: var(--red-primary);
    margin-top: 0.25rem;
}

.modal-close-btn {
    background: transparent;
    border: none;
    font-size: 1.35rem;
    color: var(--text-sub);
    cursor: pointer;
    padding: 0.25rem;
    transition: color var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--red-primary);
}

.modal-body {
    padding: 1.5rem;
    overflow-y: auto;
    flex: 1;
}

.campaign-modal-cover-img {
    width: 100%;
    max-height: 260px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    margin-bottom: 1.25rem;
}

.campaign-meta-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 0.75rem 1rem;
    background: rgba(244, 119, 33, 0.08);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
}

.modal-footer {
    padding: 1.25rem 1.5rem;
    background: #FAF4E8;
    border-top: 1px solid var(--border-dark);
}

/* EVENT SPONSORSHIP LEAD FORM SECTION */
.section-sponsorship-form {
    background-color: var(--bg-main);
    padding: 5.5rem 0;
    position: relative;
    border-top: 1px solid var(--border-dark);
}

.form-container-card {
    background: #FFFFFF;
    border: 2px solid var(--border-dark);
    border-radius: var(--radius-lg);
    padding: 3.5rem 3rem;
    box-shadow: 0 10px 40px rgba(90, 18, 11, 0.08);
    max-width: 920px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .form-container-card {
        padding: 2rem 1.25rem;
        border-radius: var(--radius-md);
    }
}

.form-header {
    margin-bottom: 2.75rem;
}

.form-title {
    font-size: 2.2rem;
    color: var(--red-primary);
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.form-subheadline {
    font-size: 1rem;
    color: var(--text-sub);
    max-width: 620px;
    margin: 0 auto;
}

.form-section-group {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(90, 18, 11, 0.12);
}

.form-section-group:last-of-type {
    border-bottom: none;
    margin-bottom: 1.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    color: var(--red-primary);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem 1.5rem;
}

@media (max-width: 640px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    .grid-col-2 {
        grid-column: span 1 !important;
    }
}

.grid-col-2 {
    grid-column: span 2;
}

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

.form-group label {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-heading);
}

.form-group label .required {
    color: #DC0032;
    margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: #FAF4E8;
    border: 1.5px solid rgba(90, 18, 11, 0.2);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--saffron);
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(244, 119, 33, 0.15);
}

.form-group.has-error input,
.form-group.has-error select,
.form-group.has-error textarea {
    border-color: #DC0032;
    background: #FFF5F5;
}

.field-error {
    font-size: 0.78rem;
    color: #DC0032;
    font-weight: 500;
    min-height: 1.1em;
}

.form-alert-banner {
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-sm);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.form-alert-banner.alert-success {
    background: #E6F4EA;
    border: 1.5px solid #34A853;
    color: #137333;
}

.form-alert-banner.alert-error {
    background: #FCE8E6;
    border: 1.5px solid #EA4335;
    color: #C5221F;
}

.form-privacy-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* OPPORTUNITY MODAL RICH SPECS */
.opportunity-detail-box {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    padding-top: 0.5rem;
}

.opportunity-intro {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-sub);
}

.detail-meta-item {
    font-size: 0.92rem;
    padding: 0.65rem 0.85rem;
    background: rgba(90, 18, 11, 0.04);
    border-left: 3px solid var(--saffron);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
}

.detail-section-block {
    background: #FAF4E8;
    border: 1px solid rgba(90, 18, 11, 0.12);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.25rem;
}

.detail-block-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--red-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.detail-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-list li {
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-dark);
}

.detail-list li i {
    margin-top: 3px;
    font-size: 0.85rem;
}

.detail-categories-tag {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--red-burnt);
    background: rgba(244, 119, 33, 0.1);
    padding: 0.5rem 0.85rem;
    border-radius: var(--radius-sm);
    display: inline-block;
}

/* ==========================================================================
   MOBILE RESPONSIVE FIXES FOR MODALS, CAMPAIGN APPLICATION & CARDS
   ========================================================================== */
@media (max-width: 640px) {
    .modal-overlay {
        padding: 0.5rem !important;
    }

    .modal-box, .campaign-modal-box, .apply-modal-box {
        width: 98% !important;
        max-width: 100% !important;
        max-height: 90vh !important;
        border-radius: var(--radius-md) !important;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
    }

    .modal-header {
        padding: 0.85rem 1rem !important;
    }

    .modal-header h3, #applyModalCampaignTitle {
        font-size: 1.1rem !important;
        line-height: 1.25 !important;
    }

    .modal-body {
        padding: 1rem 0.85rem !important;
        -webkit-overflow-scrolling: touch;
    }

    .modal-footer {
        padding: 0.85rem 1rem !important;
    }

    .campaign-meta-row {
        flex-direction: column !important;
        gap: 0.4rem !important;
        padding: 0.6rem 0.75rem !important;
        font-size: 0.82rem !important;
    }

    .form-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }

    .grid-col-2 {
        grid-column: span 1 !important;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important; /* Prevents auto-zoom on iOS Safari */
        padding: 0.75rem 0.85rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .form-container-card, .campaign-detail-card {
        padding: 1.5rem 0.85rem !important;
        border-radius: var(--radius-md) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .form-title, .detail-main-title {
        font-size: 1.65rem !important;
        line-height: 1.2 !important;
        word-break: break-word !important;
    }

    .btn-xl, .btn-lg, .btn-saffron.btn-block {
        font-size: 1rem !important;
        padding: 0.85rem 1rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .meta-badges-row {
        flex-direction: column !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        padding: 0.65rem 0.85rem !important;
    }
}



