:root {
    /* Mitti Color Palette */
    --terracotta: #B65F3A;
    --burnt-clay: #9B5B3E;
    --sand: #E8D8C3;
    --beige: #F6F1E8;
    --earth-brown: #5A3E2B;
    --forest-green: #2F5D50;
    --antique-gold: #C89B3C;
    --charcoal: #2E2E2E;
    
    /* System */
    --bg-paper: url('images/texture_paper.png');
    --bg-clay: url('images/texture_clay.png');
    --bg-organic: url('images/organic_graphic.png');
    
    --shadow-soft: 0 24px 48px rgba(90, 62, 43, 0.08);
    --shadow-deep: 0 32px 64px rgba(46, 46, 46, 0.15);
}

[data-theme="dark"] {
    --terracotta: #D46B42;
    --burnt-clay: #C06B45;
    --sand: #1C1917;
    --beige: #0C0A09;
    --earth-brown: #D6C5B3;
    --forest-green: #3A7361;
    --antique-gold: #DBB059;
    --charcoal: #F5EBE1;
    
    --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.4);
    --shadow-deep: 0 32px 64px rgba(0, 0, 0, 0.6);
}

#theme-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--terracotta);
    color: var(--beige);
    border: none;
    box-shadow: var(--shadow-deep);
    cursor: pointer;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

#theme-toggle:hover {
    transform: scale(1.1) rotate(15deg);
    background-color: var(--antique-gold);
    color: var(--charcoal);
}

#theme-toggle svg {
    width: 28px;
    height: 28px;
    transition: transform 0.5s ease;
}

[data-theme="dark"] #theme-toggle svg.sun {
    display: none;
}
[data-theme="dark"] #theme-toggle svg.moon {
    display: block;
}
:root:not([data-theme="dark"]) #theme-toggle svg.sun {
    display: block;
}
:root:not([data-theme="dark"]) #theme-toggle svg.moon {
    display: none;
}

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

body {
    background-color: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    background-attachment: fixed;
    color: var(--charcoal);
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, .logo {
    font-family: 'Manrope', sans-serif;
    color: var(--charcoal);
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: var(--earth-brown);
}

/* Helper Classes */
.text-center { text-align: center; }
.hide-on-desktop { display: none !important; }
.text-light { color: var(--beige); }
.text-gold { color: var(--antique-gold); }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border-bottom: 1px solid rgba(90, 62, 43, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background-color: var(--burnt-clay);
    color: var(--beige);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-main {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--charcoal);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--earth-brown);
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--charcoal);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.btn-book {
    background-color: var(--burnt-clay);
    color: var(--beige);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.3s, background 0.3s;
}

.btn-book:hover {
    background-color: var(--terracotta);
    transform: translateY(-2px);
}

/* Cover Section */
.cover-section {
    position: relative;
    min-height: 90vh;
    background-image: linear-gradient(to right, rgba(28,27,33,0.95) 0%, rgba(28,27,33,0.85) 45%, rgba(28,27,33,0.3) 100%), url('images/madhubani_hero.png');
    background-size: cover;
    background-position: center;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.cover-top-text {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--antique-gold);
    text-transform: uppercase;
    font-weight: 600;
    justify-content: center;
    margin-bottom: 15px;
}

.cover-top-text span {
    height: 1px;
    width: 40px;
    background-color: var(--antique-gold);
    display: inline-block;
}

.cover-main {
    max-width: 800px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.headline {
    font-size: 5rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.text-white { color: #ffffff; }
.text-gold { color: var(--antique-gold); }

.subheading {
    font-size: 1.25rem;
    font-weight: 400;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    margin-bottom: 15px;
}

.btn-primary, .btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--burnt-clay);
    color: #F6F1E8;
    border: none;
}
.btn-primary:hover {
    background-color: var(--terracotta);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #F6F1E8;
    border: 1px solid rgba(255,255,255,0.3);
}
.btn-secondary:hover {
    border-color: #F6F1E8;
    background-color: rgba(255,255,255,0.1);
}

.whatsapp-icon {
    width: 20px;
    height: 20px;
}

.stats-row {
    display: flex;
    gap: 48px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 32px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-stars {
    font-size: 1.25rem;
    color: var(--antique-gold);
    margin-bottom: 4px;
}
.stat-number {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--antique-gold);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #999;
}

.qr-float {
    position: absolute;
    bottom: 40px;
    right: 60px;
    background: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-deep);
}

.qr-placeholder {
    width: 64px;
    height: 64px;
    background: var(--charcoal);
    color: var(--beige);
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    border-radius: 8px;
    margin: 0 auto;
}

.qr-float p {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 12px;
    color: var(--earth-brown);
}

/* Why Us */
.why-us-section {
    background-color: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--earth-brown);
    margin-bottom: 15px;
    line-height: 1.8;
}

.grid-6 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    background-color: var(--sand);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 16px rgba(90, 62, 43, 0.08);
    border: 1px solid rgba(182, 95, 58, 0.1);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.33, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.animated-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 24px 48px rgba(182, 95, 58, 0.15), 0 8px 16px rgba(90, 62, 43, 0.1);
    border-color: rgba(182, 95, 58, 0.4);
    z-index: 2;
}

.animated-card::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; right: -50%; bottom: -50%;
    background: radial-gradient(circle at center, rgba(182, 95, 58, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
    pointer-events: none;
    transform: scale(0.5);
}

.animated-card:hover::before {
    opacity: 1;
    transform: scale(1);
}

.icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    border: 2px dashed rgba(182, 95, 58, 0.2);
}

.animated-card:hover .icon-circle {
    transform: scale(1.1);
    background-color: var(--terracotta);
    color: var(--beige);
    border-style: solid;
    border-color: var(--terracotta);
    box-shadow: 0 0 20px rgba(182, 95, 58, 0.4);
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    transition: all 0.4s;
}

.animated-card:hover .icon-circle svg {
    stroke-width: 2.5;
}

.icon-terracotta {
    background-color: rgba(182, 95, 58, 0.1);
    color: var(--terracotta);
}

.icon-green {
    background-color: rgba(47, 93, 80, 0.1);
    color: var(--forest-green);
}

.feature-stat {
    font-family: 'Manrope', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.text-terracotta { color: var(--terracotta); }
.text-green { color: var(--forest-green); }

.feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 16px;
}

.feature-card p {
    color: var(--earth-brown);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Capabilities Tags */
.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 24px;
}

.tag-pill {
    font-size: 0.75rem;
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(182, 95, 58, 0.2);
    color: var(--terracotta);
    background-color: rgba(182, 95, 58, 0.05);
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.25, 1, 0.33, 1);
    cursor: default;
}

.tag-pill:hover {
    background-color: var(--terracotta);
    color: var(--beige);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 8px rgba(182, 95, 58, 0.2);
}

/* Services Section */
.services-section {
    position: relative;
    padding: 25px 0;
    background-color: var(--sand);
    background-image: linear-gradient(rgba(246, 241, 232, 0.82), rgba(246, 241, 232, 0.82)), url('images/ram.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
}

.services-section .section-title,
.network-section .section-title {
    position: relative;
    color: var(--earth-brown);
    display: block;
    width: fit-content;
    margin: 0 auto 60px auto !important;
    padding: 16px 36px;
    background-color: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border: 2px dashed var(--terracotta);
    outline: 1px solid var(--terracotta);
    outline-offset: -8px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 8px 16px rgba(90, 62, 43, 0.2);
    text-shadow: none;
}

.services-section .feature-card {
    background-color: var(--beige);
}

/* Service Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.service-card-black {
    background-color: #111316;
    background-image: var(--bg-paper);
    background-blend-mode: overlay;
    color: white;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.service-card-black::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border: 2px dashed rgba(255, 184, 0, 0.2);
    border-radius: 14px;
    pointer-events: none;
    margin: 8px;
    opacity: 0.5;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
}

.service-card-black:hover::before {
    opacity: 1;
    transform: scale(0.98);
    border-color: rgba(255, 184, 0, 0.6);
}

.service-card-black .service-title {
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 16px;
    color: white;
    font-weight: 600;
}

.service-card-black .service-price {
    font-size: 2rem;
    color: #FFB800; /* gold */
    margin-bottom: 24px;
    font-weight: 600;
}

.service-card-black p {
    color: #a0a0a0;
    line-height: 1.7;
    font-size: 1rem;
}

/* Network */
.network-section {
    background-color: var(--beige);
    padding: 25px 0;
}

.network-screens-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.network-screen-card {
    background-color: var(--sand);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(90, 62, 43, 0.05);
    border: 1px solid rgba(182, 95, 58, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    position: relative;
    z-index: 1;
}

.network-screen-card .screen-image {
    position: relative;
    height: 200px;
    width: 100%;
}

.network-screen-card .screen-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.network-screen-card .screen-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background-color: var(--terracotta);
    color: var(--beige);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    z-index: 2;
}

.network-screen-card .screen-location {
    position: absolute;
    bottom: 16px;
    left: 16px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.network-screen-card .screen-details {
    padding: 24px;
}

.network-screen-card h4 {
    font-size: 1.15rem;
    margin-bottom: 20px;
    color: var(--charcoal);
    font-weight: 600;
}

.screen-stats {
    display: flex;
    justify-content: space-between;
}

.stat-col {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-lbl {
    font-size: 0.65rem;
    color: var(--earth-brown);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.stat-val {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

.network-summary-card {
    background-color: var(--forest-green);
    color: var(--beige);
    border-radius: 16px;
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.33, 1);
    position: relative;
    z-index: 1;
}

.summary-content {
    position: relative;
    z-index: 3;
}

.summary-lbl {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    color: rgba(246, 241, 232, 0.7);
    margin-bottom: 16px;
}

.summary-val {
    font-family: 'Manrope', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--antique-gold);
    line-height: 1;
    margin-bottom: 12px;
}

.summary-sub {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 32px;
    line-height: 1.4;
}

.summary-desc {
    font-size: 0.9rem;
    color: rgba(246, 241, 232, 0.8);
    line-height: 1.6;
    border-top: 1px solid rgba(246, 241, 232, 0.1);
    padding-top: 24px;
}

/* Services Layout Details */
.organic-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 800px;
}

.service-row {
    display: flex;
    gap: 40px;
}

.service-line {
    width: 2px;
    background-color: var(--terracotta);
    border-radius: 2px;
}

.service-content h3 {
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 16px;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--earth-brown);
    line-height: 1.8;
}

/* Trusted By */
.trusted-section {
    background-color: var(--beige);
    background-image: var(--bg-paper);
}

.logo-wall {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 80px;
    align-items: center;
    padding: 25px 0;
}

.logo-item {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #999; /* Minimalist representation */
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Campaigns */
.campaigns-section {
    background-color: var(--earth-brown);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.gallery-img {
    height: 400px;
    background: var(--charcoal);
    border-radius: 16px;
    box-shadow: var(--shadow-deep);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    cursor: pointer;
    overflow: hidden;
}

.gallery-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.gallery-img img {
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

/* Pricing */
.pricing-section {
    background-color: var(--sand);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: end;
}

.pricing-card {
    background: var(--beige);
    padding: 48px 40px;
    border-radius: 24px;
    position: relative;
    box-shadow: var(--shadow-soft);
}

.pricing-card.highlighted {
    background: var(--terracotta);
    color: var(--beige);
    padding: 64px 40px;
}
.pricing-card.highlighted h4, 
.pricing-card.highlighted .price, 
.pricing-card.highlighted .duration, 
.pricing-card.highlighted .impressions {
    color: var(--beige);
}

.badge-gold {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--antique-gold);
    color: var(--beige);
    padding: 8px 24px;
    border-radius: 30px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
}

.card-top {
    margin-bottom: 24px;
}

.card-top h4 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.duration {
    font-size: 0.8rem;
    color: var(--earth-brown);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price {
    font-family: 'Manrope', sans-serif;
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 16px;
    color: var(--charcoal);
}

.impressions {
    font-size: 1rem;
    color: var(--earth-brown);
    margin-bottom: 40px;
}

.cta-outline, .cta-solid, .cta-clay {
    display: inline-block;
    width: 100%;
    text-align: center;
    padding: 16px 32px;
    border-radius: 40px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-outline {
    background: transparent;
    border: 1px solid var(--charcoal);
    color: var(--charcoal);
}

.cta-solid {
    background: var(--beige);
    border: 1px solid var(--beige);
    color: var(--terracotta);
}

.cta-clay {
    background: var(--burnt-clay);
    border: none;
    color: var(--beige);
    width: auto;
}

/* Contact */
.contact-section {
    background-color: var(--charcoal);
    color: var(--beige);
}
[data-theme="dark"] .contact-section {
    background-color: var(--beige);
    color: var(--charcoal);
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 80px;
}

.contact-desc {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #aaa;
    margin-bottom: 40px;
    max-width: 400px;
}

.detail-block {
    margin-bottom: 40px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.detail-block:hover {
    transform: translateX(12px);
}

.detail-block h4 {
    color: var(--antique-gold);
    margin-bottom: 16px;
}

.detail-block p {
    color: #ccc;
    font-size: 1rem;
    transition: color 0.3s ease;
}
.detail-block:hover p {
    color: var(--beige);
}

[data-theme="dark"] .detail-block:hover p {
    color: var(--charcoal);
}

.contact-qrs {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.qr-box {
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    cursor: pointer;
}
.qr-box:hover {
    transform: translateY(-8px) scale(1.05);
    filter: drop-shadow(0 15px 25px rgba(0,0,0,0.5));
}

.qr-box p {
    margin-top: 12px;
    font-size: 0.8rem;
    color: #aaa;
}

/* Modal */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(46, 46, 46, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

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

.modal-content {
    background: var(--beige);
    background-image: var(--bg-paper);
    color: var(--charcoal);
    padding: 60px;
    border-radius: 24px;
    width: 480px;
    position: relative;
    box-shadow: var(--shadow-deep);
}

.close-btn {
    position: absolute;
    top: 24px; right: 32px;
    font-size: 2rem;
    font-weight: 300;
    cursor: pointer;
    color: var(--earth-brown);
}

.order-summary {
    background: var(--sand);
    padding: 24px;
    border-radius: 12px;
    margin: 32px 0;
}

.input-earth {
    width: 100%;
    padding: 16px;
    margin-bottom: 16px;
    background: transparent;
    border: 1px solid var(--earth-brown);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
}
.input-earth::placeholder {
    color: #999;
}

.w-100 { width: 100%; }

/* Responsive */
@media (max-width: 1024px) {
    .cover-main, .grid-3, .pricing-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
    .headline { font-size: 3.5rem; }
}

/* Capabilities Section */
.capabilities-section {
    background-color: var(--beige);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    padding: 25px 0;
}

.capabilities-heading {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    color: var(--earth-brown);
    text-transform: uppercase;
}

.capabilities-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.capability-card {
    background-color: var(--sand);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border-radius: 12px;
    padding: 40px;
    display: flex;
    gap: 32px;
    box-shadow: 0 4px 12px rgba(90, 62, 43, 0.1);
    border: 2px dashed var(--terracotta);
    outline: 1px solid var(--terracotta);
    outline-offset: -8px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    animation: stableFloat 6s ease-in-out infinite;
}

.capability-card:nth-child(2) { animation-delay: -2s; }
.capability-card:nth-child(3) { animation-delay: -4s; }

.capability-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(90, 62, 43, 0.15);
    animation-play-state: paused;
}

@keyframes stableFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.cap-badge {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--beige);
    font-weight: 600;
    font-size: 1.25rem;
    flex-shrink: 0;
    border: 2px solid var(--beige);
    outline: 1px dashed var(--terracotta);
    outline-offset: 4px;
}

.cap-blue { background-color: var(--terracotta); }
.cap-red { background-color: var(--earth-brown); }
.cap-orange { background-color: var(--antique-gold); }

.cap-content {
    flex-grow: 1;
}

.cap-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    text-transform: uppercase;
}

.badge-new {
    background-color: var(--terracotta);
    color: var(--beige);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
    border: 1px dashed var(--beige);
}

.badge-pop-new {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: var(--antique-gold);
    color: var(--charcoal);
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 14px;
    border-radius: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    animation: popBounce 2s infinite;
    z-index: 10;
}

@keyframes popBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1) rotate(5deg); }
}


.cap-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cap-content li {
    display: flex;
    gap: 12px;
    color: var(--charcoal);
    line-height: 1.6;
    font-size: 1rem;
    font-weight: 500;
}

.cap-content .dash {
    color: var(--terracotta);
    font-weight: 600;
}

/* Per-Card Duration Selector */
.card-duration-selector {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 16px;
    background: rgba(90, 62, 43, 0.05);
    padding: 6px;
    border-radius: 40px;
    border: 1px solid rgba(90, 62, 43, 0.1);
}

.mini-dur-btn {
    background: transparent;
    border: none;
    padding: 6px 12px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--earth-brown);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.mini-dur-btn:hover {
    background-color: rgba(169, 50, 38, 0.1);
}

.mini-dur-btn.active {
    background-color: var(--terracotta);
    color: var(--beige);
    box-shadow: 0 2px 6px rgba(169, 50, 38, 0.3);
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

/* Service Tabs */
.service-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.service-tab-btn {
    background: var(--beige);
    color: var(--charcoal);
    border: 2px solid transparent;
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.service-tab-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-deep);
}

.service-tab-btn.active {
    background: var(--terracotta);
    color: var(--beige);
    border-color: var(--antique-gold);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.tab-pane.active {
    display: block;
}

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

.placeholder-pane {
    background: var(--beige);
    border-radius: 24px;
    padding: 60px 20px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px dashed rgba(45, 42, 38, 0.2);
}

.placeholder-pane h3 {
    color: var(--terracotta);
    margin-bottom: 16px;
    font-size: 2rem;
}

.placeholder-pane p {
    color: var(--charcoal);
    margin-bottom: 32px;
    font-size: 1.1rem;
}

/* Scrollable tabs on mobile */
@media (max-width: 768px) {
    .service-tabs {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
        -webkit-overflow-scrolling: touch;
    }
    .service-tabs::-webkit-scrollbar {
        display: none;
    }
    .service-tab-btn {
        flex: 0 0 auto;
    }
}

/* Custom Pricing Grid */
.custom-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.custom-screen-card {
    background-color: var(--sand);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border: 2px solid rgba(90, 62, 43, 0.2);
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    user-select: none;
    animation: cardFloat 6s ease-in-out infinite;
}

/* Stagger animation so cards float organically */
.custom-screen-card:nth-child(1) { animation-delay: 0s; }
.custom-screen-card:nth-child(2) { animation-delay: 1s; }
.custom-screen-card:nth-child(3) { animation-delay: 2.5s; }
.custom-screen-card:nth-child(4) { animation-delay: 1.5s; }
.custom-screen-card:nth-child(5) { animation-delay: 0.5s; }

.custom-screen-card:hover {
    border-color: var(--terracotta);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(169, 50, 38, 0.2);
    z-index: 2;
    animation-play-state: paused;
}

.custom-screen-card.selected {
    border-color: var(--terracotta);
    background-color: rgba(169, 50, 38, 0.05); /* very light terracotta */
    box-shadow: 0 4px 12px rgba(169, 50, 38, 0.15);
}

[data-theme="dark"] .custom-screen-card.selected {
    background-color: var(--sand);
}

.screen-check {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid rgba(90, 62, 43, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background-color: transparent;
    color: transparent;
}

.custom-screen-card.selected .screen-check {
    background-color: var(--terracotta);
    border-color: var(--terracotta);
    color: var(--beige);
}

.screen-check svg {
    width: 14px;
    height: 14px;
}

.card-screen-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: 16px;
    margin-bottom: 12px;
    border: 2px solid rgba(90, 62, 43, 0.2);
    transition: all 0.3s ease;
}

.custom-screen-card:hover .card-screen-img {
    transform: scale(1.03);
}

.custom-screen-card.selected .card-screen-img {
    border-color: var(--terracotta);
}

.social-package-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 16px 32px rgba(169, 50, 38, 0.2);
    z-index: 2;
}

.social-package-card.selected {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 0 0 4px var(--antique-gold), 0 16px 32px rgba(169, 50, 38, 0.2);
    z-index: 2;
}

.social-package-card.selected .screen-check {
    background-color: var(--antique-gold);
    border-color: var(--antique-gold);
    color: var(--charcoal);
}

.custom-screen-card h4 {
    font-size: 1.25rem;
    color: var(--charcoal);
    margin-bottom: 4px;
    margin-top: 12px;
}

.custom-screen-card .location {
    font-size: 0.9rem;
    color: var(--earth-brown);
    margin-bottom: 16px;
}

.custom-screen-card .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--terracotta);
}
.custom-screen-card .price span {
    font-size: 0.9rem;
    color: rgba(90, 62, 43, 0.6);
    font-weight: 500;
}

/* Pricing Summary Bar */
@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatPulse {
    0% { transform: translateY(0); box-shadow: 0 12px 32px rgba(169, 50, 38, 0.2); }
    50% { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(169, 50, 38, 0.4); }
    100% { transform: translateY(0); box-shadow: 0 12px 32px rgba(169, 50, 38, 0.2); }
}

.pricing-summary-bar {
    background: linear-gradient(-45deg, #a93226, #7a2016, #2d2a26, #a93226);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
    border-radius: 12px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin-top: 40px;
    border: 2px dashed rgba(242, 238, 230, 0.4);
    flex-wrap: nowrap;
    gap: 16px;
}

.summary-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.summary-info .selected-count {
    color: rgba(242, 238, 230, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.summary-info .total-price {
    color: #F6F1E8;
    font-size: 2rem;
    font-weight: 800;
}
.summary-info .total-price span {
    font-size: 1rem;
    font-weight: 500;
    color: rgba(242, 238, 230, 0.7);
}

@keyframes buttonShine {
    0% { box-shadow: 0 0 0 0 rgba(242, 238, 230, 0.7); }
    70% { box-shadow: 0 0 0 10px rgba(242, 238, 230, 0); }
    100% { box-shadow: 0 0 0 0 rgba(242, 238, 230, 0); }
}

.pricing-summary-bar button {
    background-color: var(--beige);
    color: var(--terracotta);
    border: none;
    font-weight: 700;
    padding: 16px 32px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-summary-bar button:not(:disabled) {
    animation: buttonShine 2s infinite;
}

.pricing-summary-bar button:hover:not(:disabled) {
    background-color: var(--beige);
    transform: scale(1.05);
}

.pricing-summary-bar button:disabled {
    opacity: 1;
    cursor: not-allowed;
    background-color: rgba(255, 255, 255, 0.15);
    color: rgba(242, 238, 230, 0.5);
    border: 1px dashed rgba(242, 238, 230, 0.3);
}

/* Rating Section */
.rating-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.rating-card {
    background-color: var(--sand);
    background-image: var(--bg-paper);
    background-blend-mode: multiply;
    border: 2px solid rgba(90, 62, 43, 0.2);
    max-width: 450px;
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.rating-card h3 {
    font-size: 1.5rem;
    color: var(--terracotta);
    margin-bottom: 24px;
    font-weight: 700;
}

.rating-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 24px;
}

.rating-divider .line {
    height: 1px;
    background-color: rgba(90, 62, 43, 0.2);
    flex: 0 0 30px;
}

.rating-divider .text {
    color: var(--earth-brown);
    font-size: 0.95rem;
    font-weight: 600;
}

.rating-card .stars {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 30px;
}

.star-box {
    width: 44px;
    height: 44px;
    background-color: var(--terracotta);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(169, 50, 38, 0.2);
}

.star-box svg {
    width: 24px;
    height: 24px;
}

.qr-container {
    border: 2px solid var(--terracotta);
    border-radius: 16px;
    padding: 24px;
    display: inline-block;
    margin-bottom: 24px;
    background-color: #fff;
}

.qr-container img {
    width: 200px;
    height: 200px;
    display: block;
}

.business-name {
    font-size: 1.15rem;
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 8px;
}

.business-address {
    color: var(--earth-brown);
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.bottom-dash {
    width: 24px;
    height: 2px;
    background-color: var(--terracotta);
    margin: 0 auto;
}

/* Categorized Brands Section with Terracotta & Madhubani */
.brands-categorized-section {
    background-color: var(--terracotta);
    background-image: url('images/madhubani_pattern.png');
    background-size: 400px;
    background-repeat: repeat;
    background-blend-mode: multiply;
    padding: 25px 0;
    position: relative;
}

[data-theme="dark"] .brands-categorized-section {
    background-color: var(--beige);
    background-blend-mode: overlay;
    opacity: 0.95;
}

[data-theme="dark"] .brands-main-title {
    color: var(--charcoal);
}

.brands-main-title {
    color: var(--sand);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
}

.madhubani-border-top,
.madhubani-border-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url('images/madhubani_pattern.png');
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.15; /* Subtle touch */
}

.madhubani-border-top {
    top: 0;
}

.madhubani-border-bottom {
    bottom: 0;
}

.brand-category {
    margin-bottom: 50px;
}

.category-title {
    color: var(--antique-gold);
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.brand-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.brand-card {
    background-color: var(--sand);
    border-radius: 8px;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--terracotta);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(244, 238, 221, 0.4);
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.brand-card img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.brand-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

[data-theme="dark"] .brand-card:hover {
    box-shadow: 0 0 15px var(--terracotta), 0 0 30px rgba(212, 107, 66, 0.3);
    border-color: var(--terracotta);
}

/* Footer */
.site-footer {
    background-color: var(--charcoal);
    padding: 30px 0;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .site-footer {
    background-color: var(--beige);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer .footer-links {
    margin-bottom: 12px;
}

.site-footer .footer-links a {
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.site-footer .footer-links a:hover {
    color: var(--terracotta);
}

.site-footer .separator {
    margin: 0 15px;
    color: #666;
}

.site-footer .copyright {
    color: #999;
}

[data-theme="dark"] .site-footer .copyright {
    color: #777;
}

/* Billboard Hanging Lights */
.billboard-lights {
    position: absolute;
    top: -25px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-around;
    padding: 0 100px;
    z-index: 5;
    pointer-events: none;
}
.billboard-light {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.light-fixture {
    width: 30px;
    height: 15px;
    background: #333;
    border-radius: 5px 5px 0 0;
    box-shadow: inset 0 -2px 5px rgba(0,0,0,0.8);
    position: relative;
    z-index: 2;
}
.light-fixture::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 15px;
    background: linear-gradient(to right, #444, #222);
}
.light-beam {
    width: 150px;
    height: 250px;
    background: linear-gradient(to bottom, rgba(255, 255, 220, 0.4) 0%, rgba(255, 255, 220, 0) 100%);
    clip-path: polygon(40% 0, 60% 0, 100% 100%, 0 100%);
    opacity: 0;
    transition: opacity 0.8s ease;
    transform-origin: top center;
    position: absolute;
    top: 15px;
    mix-blend-mode: overlay;
}
/* Turn on lights in dark mode */
[data-theme="dark"] .light-beam {
    opacity: 1;
}

/* Advance Payment Selector & Checkout */
.pricing-summary-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
}
.pricing-summary-bar .summary-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.advance-payment-selector {
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.2);
    padding-bottom: 15px;
    flex-wrap: wrap;
}
.adv-label {
    color: var(--beige);
    font-weight: 600;
}
.adv-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.adv-btn {
    background-color: transparent;
    color: var(--beige);
    border: 1px solid var(--antique-gold);
    padding: 6px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
    font-size: 0.9rem;
}
.adv-btn:hover {
    background-color: rgba(200, 155, 60, 0.2);
}
.adv-btn.active {
    background-color: var(--antique-gold);
    color: var(--charcoal);
}

/* Checkout Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none; /* hidden by default */
    justify-content: center;
    align-items: center;
    z-index: 2000;
}
.modal-overlay.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}
.checkout-modal {
    background-color: var(--beige);
    background-image: var(--bg-paper);
    padding: 40px;
    border-radius: 12px;
    width: 90%;
    max-width: 450px;
    position: relative;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    text-align: center;
}
[data-theme="dark"] .checkout-modal {
    background-color: var(--beige); /* 'beige' is very dark grey in dark mode */
    background-image: none; /* Remove light paper texture in dark mode */
    color: var(--charcoal); /* 'charcoal' is light in dark mode */
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-subtitle {
    color: var(--forest-green);
    margin-bottom: 20px;
    font-weight: 500;
}
[data-theme="dark"] .modal-subtitle {
    color: var(--antique-gold);
}

.order-summary {
    background: rgba(0,0,0,0.05);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
    text-align: left;
}
[data-theme="dark"] .order-summary {
    background: rgba(255, 255, 255, 0.05);
}

[data-theme="dark"] .checkout-modal .cta-solid {
    background-color: var(--charcoal);
    color: var(--terracotta);
    border: none;
}
[data-theme="dark"] .checkout-modal .cta-outline {
    border-color: var(--antique-gold);
    color: var(--antique-gold);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 1.8rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--charcoal);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
}
.close-modal:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}
[data-theme="dark"] .close-modal {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--charcoal); /* charcoal is light in dark mode */
}
[data-theme="dark"] .close-modal:hover {
    background: rgba(255, 255, 255, 0.15);
}
.checkout-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--terracotta);
}
.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 25px;
}
.checkout-form input {
    padding: 12px 15px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background-color: rgba(255,255,255,0.8);
}
[data-theme="dark"] .checkout-form input {
    background-color: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--beige);
}
.qr-payment-box {
    margin-top: 25px;
    display: none; /* shown after form submit */
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.qr-payment-box img {
    width: 200px;
    height: 200px;
    border-radius: 8px;
    border: 2px solid var(--antique-gold);
    padding: 10px;
    background: white;
}

/* ==========================================================================
   Leaflet Maps Custom Styles
   ========================================================================== */
.leaflet-popup-content-wrapper {
    padding: 0 !important;
    border-radius: 20px !important;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15) !important;
    overflow: hidden !important;
}
.leaflet-popup-content {
    margin: 0 !important;
    width: 250px !important;
}
.custom-map-popup {
    width: 250px;
    font-family: 'Inter', sans-serif;
}
.custom-map-popup img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-bottom: 3px solid var(--brand-primary);
}
.custom-map-popup .popup-content {
    padding: 15px;
}
.custom-map-popup h4 {
    color: var(--charcoal);
    font-size: 1rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.custom-map-popup p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    margin-top: 0;
}
.custom-map-popup .price {
    font-weight: 700;
    color: var(--brand-secondary);
    font-size: 1.1rem;
    margin-top: 8px;
    display: block;
}
.leaflet-container a.leaflet-popup-close-button {
    color: #fff !important;
    background: rgba(0,0,0,0.5) !important;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    top: 8px !important;
    right: 8px !important;
    padding: 0 !important;
}
.leaflet-container a.leaflet-popup-close-button:hover {
    background: rgba(0,0,0,0.8) !important;
}

/* ==========================================================================
   Map Scroll Buttons
   ========================================================================== */
.map-scroll-btn {
    position: absolute;
    right: 20px;
    width: 45px;
    height: 45px;
    
    /* Glassmorphism Effect */
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    
    color: var(--brand-primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    z-index: 1000;
    transition: all 0.3s ease;
    animation: bounce-subtle 2s infinite;
}

.map-scroll-btn:hover {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
    color: var(--brand-secondary);
}

.map-scroll-btn.up {
    top: 20px;
}

.map-scroll-btn.down {
    bottom: 20px;
}

@keyframes bounce-subtle {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}
.map-scroll-btn:hover {
    animation-play-state: paused;
}

/* ==========================================================================
   Madhubani Global Frame & Map Theme
   ========================================================================== */
.madhubani-framed {
    position: relative;
}

.madhubani-framed::before,
.madhubani-framed::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 15px;
    background-image: url('images/madhubani_pattern.png');
    background-repeat: repeat-x;
    background-size: contain;
    opacity: 0.4;
    z-index: 10;
    pointer-events: none;
}

.madhubani-framed::before {
    top: 0;
    border-bottom: 2px solid var(--antique-gold);
}

.madhubani-framed::after {
    bottom: 0;
    border-top: 2px solid var(--antique-gold);
    transform: rotate(180deg);
}

.map-section {
    background-image: url('images/texture_paper.png');
    background-color: #fcf9f2 !important;
    background-blend-mode: multiply;
    padding: 25px 0;
}

/* Elevate the map itself with a friendly style */
.map-container-friendly {
    margin-top: 40px;
    position: relative;
    background: rgba(255, 255, 255, 0.7);
    padding: 15px;
    border-radius: 32px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.9);
}

.map-container-friendly #map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: inset 0 0 10px rgba(0,0,0,0.05);
}

/* Hide mobile app elements on desktop */
.app-bottom-nav, .app-fab, .hamburger-btn, .mobile-menu-overlay { display: none; }

@media (max-width: 768px) {
    /* Mobile Top App Bar */
    .navbar { 
        display: flex !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        padding: 0 15px !important;
        /* Glassmorphic Base */
        background: rgba(246, 241, 232, 0.65) !important;
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        z-index: 10000 !important;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid rgba(0,0,0,0.05) !important;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.15) !important;
        animation: topBarGlow 4s infinite alternate ease-in-out;
        overflow: hidden; /* Keep the pseudo-element inside */
    }
    [data-theme="dark"] .navbar {
        background: rgba(26, 26, 26, 0.65) !important;
    }
    
    /* Madhubani Background Overlay for Top Nav */
    .navbar::before {
        content: '';
        position: absolute;
        top: 0; left: 0; width: 100%; height: 100%;
        background-image: url('images/madhubani_bg.jpg');
        background-size: cover;
        background-position: center;
        opacity: 0.15;
        z-index: -1;
    }
    
    @keyframes topBarGlow {
        0% { box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1) !important; }
        100% { box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important; }
    }
    
    .navbar .logo-container { transform: scale(1); transform-origin: left center; z-index: 2; }
    .navbar .nav-links, .navbar .nav-actions { display: none !important; }
    
    /* App Bottom Navigation */
    .app-bottom-nav {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        border-top: 1px solid rgba(0,0,0,0.05);
        justify-content: space-around;
        align-items: center;
        height: 70px;
        z-index: 9999;
        padding-bottom: env(safe-area-inset-bottom);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    }
    
    .app-bottom-nav::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background-image: url('images/madhubani_pattern.png');
        background-size: contain;
        background-repeat: repeat-x;
        opacity: 0.8;
    }
    
    [data-theme="dark"] .app-bottom-nav {
        background: rgba(25, 25, 25, 0.95);
        border-top: 1px solid rgba(255,255,255,0.05);
    }

    .app-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #888;
        font-size: 0.7rem;
        font-weight: 600;
        gap: 4px;
        width: 60px;
        transition: color 0.2s;
    }

    .app-bottom-nav .nav-item svg {
        width: 24px;
        height: 24px;
    }
    
    .app-bottom-nav .nav-item.active,
    .app-bottom-nav .nav-item:active {
        color: var(--brand-primary);
    }

    /* Floating Action Button */
    .app-fab {
        display: flex;
        position: fixed;
        bottom: 90px; /* Above the bottom nav */
        right: 20px;
        width: 56px;
        height: 56px;
        background: #25D366; /* WhatsApp Green */
        color: white;
        border-radius: 50%;
        justify-content: center;
        align-items: center;
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
        z-index: 9998;
        transition: transform 0.2s;
    }
    .app-fab:active { transform: scale(0.9); }
    .app-fab svg { width: 28px; height: 28px; }

    /* Prevent content from hiding behind bottom nav */
    body { padding-bottom: 80px; }

    /* Swipeable Carousels (App-like horizontal lists) */
    .services-grid, .pricing-grid, .gallery-grid, .network-screens-grid, .grid-6, .grid-3 {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        gap: 16px;
        padding-bottom: 20px; 
        margin-right: -20px;
        margin-left: -20px;
        padding-left: 20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
    }
    
    .services-grid > *, .pricing-grid > *, .gallery-grid > *, .network-screens-grid > *, .grid-6 > *, .grid-3 > * {
        scroll-snap-align: center;
        flex: 0 0 85%;
        min-width: 85%;
    }

    .services-grid::-webkit-scrollbar, .pricing-grid::-webkit-scrollbar, .gallery-grid::-webkit-scrollbar, .network-screens-grid::-webkit-scrollbar, .grid-6::-webkit-scrollbar, .grid-3::-webkit-scrollbar {
        display: none; /* Hide scrollbars for clean app look */
    }
    
    /* Hero Section App Redesign */
    .qr-float, .stats-row { display: none !important; }
    
    .cover-section {
        min-height: auto;
        padding-top: 40px;
        padding-bottom: 20px;
        background: var(--beige);
    }
    [data-theme="dark"] .cover-section { background: var(--dark-bg); }
    
    /* Elegant Madhubani Background Reveal on Mobile */
    .cover-bg { 
        display: block !important; 
        background-position: center; 
        background-size: cover;
        opacity: 0.25; /* Slightly softer so text remains highly readable */
    }
    
    .cover-overlay { 
        display: block !important;
        /* Semi-transparent everywhere so painting shows through, fading to solid at the very bottom */
        background: linear-gradient(to bottom, 
            rgba(246, 241, 232, 0.75) 0%, 
            rgba(246, 241, 232, 0.8) 50%, 
            rgba(246, 241, 232, 0.4) 80%,
            rgba(246, 241, 232, 1) 100%
        );
    }
    [data-theme="dark"] .cover-overlay {
        background: linear-gradient(to bottom, 
            rgba(26, 26, 26, 0.85) 0%, 
            rgba(26, 26, 26, 0.9) 50%, 
            rgba(26, 26, 26, 0.5) 80%,
            rgba(26, 26, 26, 1) 100%
        );
    }

    /* Cover Content Coordinate System Fix */
    .cover-content {
        position: relative;
        z-index: 10;
        width: 100%;
    }

    /* Static Horizontal Black Rod */
    .mobile-billboard-rod {
        position: absolute;
        top: 15px; /* Centers the 6px rod exactly at Y=18px to perfectly intersect the O-rings */
        left: -50px;
        right: -50px; /* Forces the rod to extend far off screen on both sides */
        height: 6px; 
        background: linear-gradient(to bottom, #333, #000 40%, #111);
        border-radius: 3px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.5);
        z-index: 3; 
    }

    /* Continuous Gentle Animation */
    .billboard-swing-wrapper {
        width: 100%;
        perspective: 1200px;
        z-index: 5;
        position: relative;
        padding-top: 60px; /* Robust spacing */
        transform-origin: 50% 18px; /* Pivot exactly from the rod's center */
        animation: hangingSwing 5s ease-in-out infinite;
    }
    
    /* Touch Interaction Physics (Independent) */
    .mobile-3d-banner {
        width: 98%; 
        max-width: 500px;
        margin: 0 auto 30px auto; 
        height: 280px; 
        position: relative;
        transform-origin: 50% -42px; /* Center of rotation relative to banner */
        transition: transform 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }
    
    /* Wind Gushing Physics on Touch */
    .mobile-3d-banner:active {
        transform: rotateX(45deg) rotateZ(3deg) !important;
        transition: transform 0.15s ease-out; /* Fast wind push back */
    }

    /* Exact Screenshot Chains: O-ring, link, and mount */
    .mobile-3d-banner::before,
    .mobile-3d-banner::after {
        content: '';
        position: absolute;
        top: -50px; 
        width: 24px;
        height: 50px;
        /* Custom SVG matching the screenshot exactly */
        background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="50" viewBox="0 0 24 50"><ellipse cx="12" cy="8" rx="6" ry="10" fill="none" stroke="%23111" stroke-width="3"/><rect x="8" y="18" width="8" height="20" rx="4" ry="4" fill="none" stroke="%23222" stroke-width="3"/><path d="M7 45 L17 45 L20 50 L4 50 Z" fill="%23222"/><circle cx="12" cy="40" r="4" fill="%23111"/><rect x="10" y="37" width="4" height="6" fill="%23222"/></svg>');
        background-repeat: no-repeat;
        background-size: 24px 50px; /* Force exact sizing to prevent browser scaling bugs */
        background-position: top center;
        z-index: -1;
    }
    /* Position the chains slightly inward */
    .mobile-3d-banner::before { left: 10%; }
    .mobile-3d-banner::after { right: 10%; }

    .banner-track {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        box-sizing: border-box;
        border-radius: 8px; 
        /* Ultra-Realistic 3D Thick Gold Frame */
        background: linear-gradient(145deg, #f5d688 0%, #c89c56 40%, #8e6216 80%, #3a2505 100%);
        padding: 8px; /* Thickness of the metal frame */
        box-shadow: 
            0 35px 55px rgba(0,0,0,0.7), /* Deep space shadow */
            inset 0 3px 6px rgba(255,255,255,0.6), /* Strong top/left metallic highlight */
            inset 0 -4px 8px rgba(0,0,0,0.7); /* Deep bottom/right bevel shadow */
        overflow: hidden;
    }
    
    /* Inner Recessed Screen with White Bezel */
    .banner-track::after {
        content: '';
        position: absolute;
        top: 8px; left: 8px; right: 8px; bottom: 8px;
        border: 2px solid #fff; /* White inner frame from screenshot */
        border-radius: 2px;
        box-shadow: inset 0 0 25px rgba(0,0,0,0.9); /* Deep screen shadow */
        pointer-events: none;
        z-index: 2; /* Cast shadow OVER the images */
    }

    .banner-track img {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
        top: 8px; left: 8px;
        position: absolute;
        border-radius: 2px;
        object-fit: cover;
        opacity: 0;
        animation: crossFade 12s infinite;
        z-index: 1;
    }
    .banner-track img:nth-child(1) { animation-delay: 0s; }
    .banner-track img:nth-child(2) { animation-delay: 4s; }
    .banner-track img:nth-child(3) { animation-delay: 8s; }

    @keyframes crossFade {
        0%, 25% { opacity: 1; transform: scale(1); }
        33%, 92% { opacity: 0; transform: scale(1.05); }
        100% { opacity: 1; transform: scale(1); }
    }
    @keyframes hangingSwing {
        0%, 100% { transform: rotateX(4deg) rotateY(0deg) rotateZ(1deg); }
        50% { transform: rotateX(-2deg) rotateY(2deg) rotateZ(-1deg); }
    }

    /* Hero Text Adjustments and Animations */
    .cover-top-text {
        text-align: center;
        margin-bottom: 15px;
        align-items: flex-start;
        display: inline-flex;
        flex-direction: row;
        font-size: 0.65rem; /* Reduced size */
        letter-spacing: 1.5px;
        line-height: 1.5;
        color: var(--antique-gold);
    }
    .cover-top-text span:first-child {
        margin-top: 5px;
        margin-right: 12px;
    }
    .cover-top-text span:last-child {
        margin-top: 15px;
        margin-left: 12px;
    }

    .hero-content {
        position: relative;
        z-index: 2; /* Keep above overlay */
        text-align: center; 
        display: flex;
        flex-direction: column;
        align-items: center;
        padding-top: 10px; /* Reduced padding */
    }
    
    .hero-content .headline {
        animation: textFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 0.2s;
        opacity: 0;
        line-height: 1.1;
        font-family: 'Playfair Display', serif; /* Luxury serif for heading */
        font-size: 2.2rem; /* Reduced size to take less space */
        font-weight: 700;
        letter-spacing: -0.5px;
        margin-bottom: 10px;
        color: var(--charcoal);
    }
    [data-theme="dark"] .hero-content .headline { color: var(--beige); }
    
    .hero-content p.subheading {
        animation: textFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 0.4s;
        opacity: 0;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem; /* Reduced size */
        font-weight: 500; 
        letter-spacing: 0.5px;
        line-height: 1.6;
        color: var(--charcoal);
        margin-bottom: 25px;
        position: relative;
        text-align: left; /* Paragraph itself is left aligned */
        padding-left: 25px;
        padding-right: 25px;
        display: inline-block;
    }
    [data-theme="dark"] .hero-content p.subheading { color: rgba(246, 241, 232, 0.85); }
    
    .hero-content p.subheading::before {
        content: '';
        position: absolute;
        left: 0;
        top: 8px;
        width: 15px;
        height: 1px;
        background-color: var(--antique-gold);
    }
    .hero-content p.subheading::after {
        content: '';
        position: absolute;
        right: 0;
        bottom: 8px;
        width: 15px;
        height: 1px;
        background-color: var(--antique-gold);
    }

    .hero-content .hero-buttons {
        animation: textFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 0.6s;
        opacity: 0;
        display: flex;
        flex-direction: row; /* Horizontal as requested */
        width: 100%;
        max-width: 100%;
        gap: 10px;
        padding: 0 10px;
    }
    .hero-content .hero-buttons .btn-primary {
        background-color: #b07248 !important; /* Match golden brown from screenshot */
        color: #fff !important;
        border: none !important;
    }
    .hero-content .hero-buttons .btn-secondary {
        background-color: transparent !important;
        color: #b07248 !important; /* Golden brown text */
        border: 1px solid #b07248 !important;
    }
    .hero-content .hero-buttons .btn-primary,
    .hero-content .hero-buttons .btn-secondary {
        flex: 1; /* Make buttons equal width side-by-side */
        margin: 0;
        justify-content: center;
        border-radius: 12px; /* Smoother buttons */
        font-weight: 600;
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    /* Continuous Gold Shimmer */
    @keyframes goldShimmer {
        0%, 100% { color: var(--antique-gold); transform: scale(1); }
        50% { color: #d6983a; transform: scale(1.02); }
    }
    .hero-content .text-gold {
        display: block; /* Make it stack nicely on its own line */
        font-style: italic; /* Italic serif looks incredibly premium */
        animation: goldShimmer 4s ease-in-out infinite;
        margin-top: 5px;
        transform-origin: left center; /* Animate from left since text is left aligned */
    }
    
    /* Hide specific elements on desktop */
    .hide-on-desktop {
        display: flex !important; /* Will be flex on mobile */
    }

    /* Mobile Feature Icons (3 in a row) */
    .hero-features-mobile {
        margin-top: 30px;
        width: 100%;
        display: flex !important;
        justify-content: space-between;
        align-items: flex-start;
        gap: 10px;
        animation: textFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 0.8s;
        opacity: 0;
    }
    .hero-features-mobile .feature-col {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        flex: 1;
    }
    .hero-features-mobile svg {
        width: 28px;
        height: 28px;
        margin-bottom: 8px;
        color: #b07248; /* Golden brown */
    }
    .hero-features-mobile strong {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--charcoal);
        margin-bottom: 4px;
        line-height: 1.2;
    }
    [data-theme="dark"] .hero-features-mobile strong { color: #fff; }
    .hero-features-mobile span {
        font-family: 'Inter', sans-serif;
        font-size: 0.65rem;
        font-weight: 400;
        color: rgba(44,44,44,0.7);
        line-height: 1.3;
    }
    [data-theme="dark"] .hero-features-mobile span { color: rgba(255,255,255,0.7); }

    /* Mobile Stats Card (Dark Rounded Box) */
    .stats-card-mobile {
        margin-top: 40px;
        background-color: #1a1c23; /* Dark card background */
        border-radius: 20px;
        padding: 25px;
        display: flex !important;
        flex-direction: column;
        gap: 25px;
        width: 100%;
        max-width: 100%;
        box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        animation: textFadeInUp 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
        animation-delay: 1s;
        opacity: 0;
        position: relative;
        z-index: 2;
    }
    .stats-card-heading h3 {
        font-family: 'Playfair Display', serif;
        font-size: 1.4rem;
        color: #fff;
        line-height: 1.2;
        margin-bottom: 12px;
    }
    .stats-card-heading p {
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        color: rgba(255,255,255,0.6);
        line-height: 1.6;
        margin: 0;
        max-width: 100%;
    }
    .stats-card-heading p strong {
        color: #fff;
    }
    .stats-card-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 20px;
    }
    .stats-card-grid .stat-box {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .stats-card-grid .stat-number {
        font-family: 'Inter', sans-serif;
        font-size: 1.5rem;
        font-weight: 700;
        color: #d6983a; /* Gold */
        margin-bottom: 5px;
    }
    .stats-card-grid .stat-label {
        font-family: 'Inter', sans-serif;
        font-size: 0.75rem;
        font-weight: 500;
        color: rgba(255,255,255,0.8);
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    @keyframes textFadeInUp {
        0% { opacity: 0; transform: translateY(30px); }
        100% { opacity: 1; transform: translateY(0); }
    }

    
    .hero-content {
        padding: 20px;
        text-align: left;
        align-items: flex-start;
        position: relative;
        z-index: 10;
    }
    
    /* Fix text contrast on mobile */
    .headline .text-white { color: var(--charcoal) !important; }
    [data-theme="dark"] .headline .text-white { color: var(--beige) !important; }
    
    .headline { 
        font-size: 2.8rem !important; 
        line-height: 1.15; 
        margin-bottom: 15px;
        color: var(--charcoal);
    }
    
    .subheading { color: #555 !important; }
    [data-theme="dark"] .subheading { color: #bbb !important; }
    
    .hero-content p {
        font-size: 1.1rem;
        line-height: 1.6;
        margin-bottom: 25px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    /* Fix secondary button visibility */
    .hero-buttons .btn-secondary {
        border: 2px solid var(--terracotta) !important;
        color: var(--terracotta) !important;
        background: transparent !important;
    }
    [data-theme="dark"] .hero-buttons .btn-secondary {
        border-color: var(--antique-gold) !important;
        color: var(--antique-gold) !important;
    }

    .hero-buttons .btn-primary, .hero-buttons .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 16px;
        font-size: 1.1rem;
        border-radius: 16px; /* Super round app-style buttons */
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    
    .billboard-demo-container {
        margin-top: 0;
        transform: scale(0.9); /* Fit nicely on mobile */
    }

    /* iOS-Style UI Polish */
    .section-container, .container { padding: 50px 20px !important; }
    
    /* Mobile Typography Polish */
    .headline { font-size: 2.3rem !important; margin-bottom: 15px; letter-spacing: -0.5px; }
    .hero-content p { font-size: 1rem; margin-bottom: 25px; }
    .section-title { font-size: 1.8rem !important; margin-bottom: 25px; letter-spacing: -0.5px; }
    .section-subtitle { font-size: 0.95rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.1rem; }
    .pricing-price { font-size: 2.2rem; }
    .btn-primary, .btn-secondary, .btn-book { font-size: 1rem !important; }
    
    /* Maximize border radius for app feel */
    .feature-card, .service-card-black, .pricing-card, .gallery-img { border-radius: 20px; }
    
    /* Contact and map */
    .contact-grid, .grid-2 { grid-template-columns: 1fr; gap: 30px; }
    .map-container-friendly { min-height: 350px; border-radius: 20px; }
    
    /* Feature Cards Polish (ONE PARTNER. EVERY CHANNEL.) */
    .capabilities-heading { 
        font-size: 2rem !important; 
        line-height: 1.1; 
        margin-bottom: 30px;
        letter-spacing: -0.5px;
    }
    .capability-card {
        padding: 25px 20px; 
        gap: 20px;
        flex-direction: column; /* Stack circle and text vertically */
        border-radius: 20px;
        outline-offset: -6px;
    }
    .cap-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        align-self: flex-start;
    }
    .cap-content h3 { font-size: 1.25rem; margin-bottom: 15px; line-height: 1.3; }
    .cap-content ul li { font-size: 0.95rem; line-height: 1.5; margin-bottom: 12px; }
    .cap-content .dash { margin-right: 8px; }
    
    /* Connect With Us - Beautiful 3-in-one-frame Layout */
    #campaigns .gallery-grid {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr); /* All 3 side-by-side */
        gap: 10px; /* Tight gap to fit them all nicely */
        overflow-x: visible; /* Disable horizontal scroll */
        padding-bottom: 0;
    }
    #campaigns .gallery-img {
        flex: none; 
        height: auto; 
        aspect-ratio: 1 / 1; /* Perfect square */
        border-radius: 16px; /* Scaled down for smaller size */
        padding: 12px !important; /* Tighter padding for small size */
        background-color: var(--beige) !important;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        border: 2px solid var(--antique-gold);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    [data-theme="dark"] #campaigns .gallery-img {
        background-color: var(--sand) !important;
    }
    #campaigns .gallery-img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    
    /* Floating Theme Toggle -> Moved to Top Bar */
    #theme-toggle {
        position: fixed !important;
        top: 9px !important; 
        right: 15px !important;
        bottom: auto;
        width: 42px !important;
        height: 42px !important;
        z-index: 10001 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    #theme-toggle svg { width: 22px; height: 22px; color: var(--charcoal); }
    [data-theme="dark"] #theme-toggle svg { color: var(--beige); }
    
    /* Billboard adjustments */
    .billboard-frame { padding: 5%; border-width: 2px; border-radius: 12px; }
    
    /* Global fixes */
    html, body { overflow-x: hidden; padding-top: 60px; /* Offset for top bar */ }
}

/* ==========================================================================
   Animations & Micro-interactions
   ========================================================================== */

/* Bottom Nav Bouncy Animation (Continuous) */
@keyframes continuousBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.app-bottom-nav .nav-item svg {
    animation: continuousBounce 3s ease-in-out infinite;
}
.app-bottom-nav .nav-item:nth-child(2) svg { animation-delay: 0.5s; }
.app-bottom-nav .nav-item:nth-child(3) svg { animation-delay: 1s; }
.app-bottom-nav .nav-item:nth-child(4) svg { animation-delay: 1.5s; }

/* Click animation for nav item */
@keyframes navClickBounce {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}
.app-bottom-nav .nav-item.clicked svg {
    animation: navClickBounce 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
    color: var(--terracotta);
}

/* FAB Pulse Animation */
@keyframes pulse-fab {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.app-fab {
    animation: pulse-fab 2s infinite;
}

/* Primary Button Glow Animation */
@keyframes glow-btn {
    0% { box-shadow: 0 4px 15px rgba(168, 64, 50, 0.3); }
    50% { box-shadow: 0 4px 25px rgba(168, 64, 50, 0.7); }
    100% { box-shadow: 0 4px 15px rgba(168, 64, 50, 0.3); }
}
@media (max-width: 768px) {
    .hero-buttons .btn-primary {
        animation: glow-btn 3s infinite;
    }
}

/* Flowing Madhubani Borders */
@keyframes panBackground {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}
.madhubani-border-top, .madhubani-border-bottom, .app-bottom-nav::before {
    animation: panBackground 30s linear infinite;
}

/* Scroll Reveal Animations */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.scroll-animate.in-view {
    opacity: 1;
    transform: translateY(0);
}

.stagger-container .scroll-animate {
    opacity: 0;
    transform: translateY(30px);
}
.stagger-container.in-view .scroll-animate:nth-child(1) { transition-delay: 0.1s; opacity: 1; transform: translateY(0); }
.stagger-container.in-view .scroll-animate:nth-child(2) { transition-delay: 0.2s; opacity: 1; transform: translateY(0); }
.stagger-container.in-view .scroll-animate:nth-child(3) { transition-delay: 0.3s; opacity: 1; transform: translateY(0); }
.stagger-container.in-view .scroll-animate:nth-child(4) { transition-delay: 0.4s; opacity: 1; transform: translateY(0); }
.stagger-container.in-view .scroll-animate:nth-child(5) { transition-delay: 0.5s; opacity: 1; transform: translateY(0); }
