/* ═══════════════════════════════════════════════════════════
   SELF-HOSTED FONTS — Issue #5
   Eliminates the Google Fonts CDN dependency (supply chain risk, IP leakage).
   SRI cannot be applied to Google Fonts — the CSS is dynamically generated
   per user-agent, so the hash changes per request.
   Run `bash download-fonts.sh` once before deploying to populate fonts/.
   ═══════════════════════════════════════════════════════════ */
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 300; font-display: swap; src: url('fonts/montserrat-300.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 500; font-display: swap; src: url('fonts/montserrat-500.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 600; font-display: swap; src: url('fonts/montserrat-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 700; font-display: swap; src: url('fonts/montserrat-700.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 800; font-display: swap; src: url('fonts/montserrat-800.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 900; font-display: swap; src: url('fonts/montserrat-900.woff2') format('woff2'); }

/* ═══════════════════════════════════════════════════════════
   CSS VARIABLES & RESET
   ═══════════════════════════════════════════════════════════ */
:root {
    --navy: #0D1B2A;
    --navy-light: #1B2D45;
    --navy-mid: #142236;
    --copper: #B87333;
    --copper-light: #D4A373;
    --copper-dark: #8B4513;
    --copper-glow: rgba(184, 115, 51, 0.3);
    --white: #F0EDE8;
    --white-dim: rgba(240, 237, 232, 0.6);
    --white-faint: rgba(240, 237, 232, 0.08);
}

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

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--copper) var(--navy);
}

body {
    font-family: 'Montserrat', sans-serif;
    background: var(--navy);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════════
   NOISE TEXTURE OVERLAY
   ═══════════════════════════════════════════════════════════ */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13, 27, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--white-faint);
    transition: all 0.4s ease;
}

nav.scrolled {
    padding: 0.75rem 3rem;
    background: rgba(13, 27, 42, 0.95);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.nav-logo img {
    height: 36px;
    transition: transform 0.3s ease;
}

.nav-logo:hover img {
    transform: scale(1.05);
}

.nav-logo-text {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--white);
    letter-spacing: 1px;
}

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

.nav-links a {
    color: var(--white-dim);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light));
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: linear-gradient(135deg, var(--copper), var(--copper-dark)) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 15px var(--copper-glow);
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 25px rgba(184, 115, 51, 0.5) !important;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--copper-light);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 3rem 4rem;
}

/* Radial glow behind MojoBot */
.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    right: 15%;
    transform: translate(0, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Copper accent line */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper-glow), transparent);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    align-items: center;
}

.hero-content {
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white-faint);
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 50px;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge .dot {
    width: 6px;
    height: 6px;
    background: var(--copper);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero h1 .copper {
    background: linear-gradient(135deg, var(--copper-light), var(--copper), var(--copper-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-tagline {
    font-size: 1.15rem;
    font-weight: 300;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--white-dim);
    max-width: 500px;
    margin-bottom: 2.5rem;
    font-weight: 400;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.7s both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--copper-glow);
    border: none;
    cursor: pointer;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(184, 115, 51, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: 1px solid rgba(184, 115, 51, 0.4);
}

.btn-secondary:hover {
    border-color: var(--copper);
    background: rgba(184, 115, 51, 0.08);
    transform: translateY(-2px);
}

/* MojoBot mascot */
.hero-mascot {
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
    animation: fadeIn 1s ease 0.5s both;
}

.mojobot-container {
    position: relative;
    width: 100%;
    max-width: 420px;
}

.mojobot-container img {
    width: 100%;
    filter: drop-shadow(0 20px 60px rgba(184, 115, 51, 0.3));
    animation: bobble 3s ease-in-out infinite;
}

/* Floating sparkles around MojoBot */
.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--copper-light);
    border-radius: 50%;
    animation: sparkleFloat 4s ease-in-out infinite;
}

.sparkle:nth-child(2) { top: 15%; left: 10%; animation-delay: 0.5s; }
.sparkle:nth-child(3) { top: 25%; right: 5%; animation-delay: 1s; width: 3px; height: 3px; }
.sparkle:nth-child(4) { bottom: 30%; left: 5%; animation-delay: 1.5s; width: 5px; height: 5px; }
.sparkle:nth-child(5) { top: 10%; right: 20%; animation-delay: 2s; }
.sparkle:nth-child(6) { bottom: 20%; right: 10%; animation-delay: 2.5s; width: 3px; height: 3px; }

/* ═══════════════════════════════════════════════════════════
   SERVICES SECTION
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: 8rem 3rem;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-faint), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem;
}

.section-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--copper);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 300;
}

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

.service-card {
    background: linear-gradient(145deg, var(--navy-mid), var(--navy));
    border: 1px solid var(--white-faint);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--copper), var(--copper-light), var(--copper));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--copper-glow), rgba(184, 115, 51, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--copper-light);
}

.service-icon svg {
    width: 26px;
    height: 26px;
}

.service-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--white-dim);
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
}

/* ═══════════════════════════════════════════════════════════
   WHY MOJO SECTION
   ═══════════════════════════════════════════════════════════ */
.why {
    padding: 6rem 3rem 8rem;
    position: relative;
}

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

.why-item {
    text-align: center;
    padding: 2rem 1rem;
}

.why-number {
    font-size: 3rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--copper-light), var(--copper));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.why-label {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--white-dim);
}

/* ═══════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════ */
.contact {
    padding: 8rem 3rem;
    position: relative;
    background: linear-gradient(180deg, var(--navy), var(--navy-light), var(--navy));
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--copper-glow), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.contact-info p {
    color: var(--white-dim);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.contact-detail {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    color: var(--white-dim);
    font-size: 0.95rem;
}

.contact-detail-icon {
    width: 42px;
    height: 42px;
    background: var(--white-faint);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--copper-light);
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
}

.contact-form {
    background: rgba(20, 34, 54, 0.6);
    border: 1px solid var(--white-faint);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--copper-light);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--white-faint);
    border: 1px solid rgba(240, 237, 232, 0.1);
    border-radius: 12px;
    padding: 0.9rem 1.2rem;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 3px var(--copper-glow);
}

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

.form-group select option {
    background: var(--navy);
    color: var(--white);
}

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

.form-submit {
    width: 100%;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: var(--white);
    padding: 1rem;
    border-radius: 12px;
    border: none;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--copper-glow);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(184, 115, 51, 0.5);
}

/* ═══════════════════════════════════════════════════════════
   FLYER DOWNLOAD SECTION
   ═══════════════════════════════════════════════════════════ */
.flyer {
    padding: 4rem 3rem;
    position: relative;
}

.flyer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--white-faint), transparent);
}

.flyer-inner {
    max-width: 1100px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
    border: 1px solid rgba(184, 115, 51, 0.2);
    border-radius: 24px;
    padding: 3.5rem 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    position: relative;
    overflow: hidden;
}

/* Subtle copper glow in the corner */
.flyer-inner::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(184, 115, 51, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.flyer-text {
    flex: 1;
    position: relative;
}

.flyer-text h2 {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.flyer-text > p:not(.section-tag) {
    color: var(--white-dim);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    max-width: 480px;
}

.flyer-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
    position: relative;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, var(--copper), var(--copper-dark));
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px var(--copper-glow);
    white-space: nowrap;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(184, 115, 51, 0.5);
}

.btn-download svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.flyer-meta {
    font-size: 0.8rem;
    color: var(--white-dim);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .flyer {
        padding: 3rem 1.5rem;
    }

    .flyer-inner {
        flex-direction: column;
        text-align: center;
        padding: 2.5rem 2rem;
        gap: 2rem;
    }

    .flyer-text > p:not(.section-tag) {
        max-width: none;
    }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
footer {
    padding: 3rem;
    border-top: 1px solid var(--white-faint);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-left img {
    height: 28px;
}

.footer-left span {
    color: var(--white-dim);
    font-size: 0.85rem;
    font-weight: 300;
}

.footer-right {
    color: var(--white-dim);
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.footer-right a {
    color: var(--copper-light);
    text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
@keyframes bobble {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-18px); }
}

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

@keyframes sparkleFloat {
    0%, 100% { opacity: 0; transform: translateY(0) scale(0.5); }
    25% { opacity: 1; transform: translateY(-10px) scale(1); }
    50% { opacity: 0.6; transform: translateY(-20px) scale(0.8); }
    75% { opacity: 1; transform: translateY(-10px) scale(1.2); }
}

/* Scroll reveal animation base */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

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

    .hero-content { order: 2; }
    .hero-mascot { order: 1; }

    .hero-description {
        margin: 0 auto 2.5rem;
    }

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

    .mojobot-container {
        max-width: 280px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

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

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

@media (max-width: 768px) {
    nav {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 27, 42, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--white-faint);
    }

    .nav-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
    }

    .services, .why, .contact {
        padding: 5rem 1.5rem;
    }

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

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

    .contact-form {
        padding: 2rem;
    }

    footer {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════
   THEME TOGGLE BUTTON
   ═══════════════════════════════════════════════════════════ */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.theme-toggle {
    background: none;
    border: 1px solid var(--white-faint);
    border-radius: 50px;
    width: 38px;
    height: 38px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-dim);
    transition: border-color 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
}

.theme-toggle:hover {
    border-color: var(--copper);
    color: var(--copper-light);
}

.theme-toggle svg {
    width: 16px;
    height: 16px;
}

/* Dark (default): show moon; light: show sun */
.icon-sun  { display: none;  }
.icon-moon { display: block; }
[data-theme="light"] .icon-sun  { display: block; }
[data-theme="light"] .icon-moon { display: none;  }

/* ═══════════════════════════════════════════════════════════
   LIGHT THEME
   Applied when JS sets data-theme="light" on <html>.
   Dark is the default — no attribute needed.
   ═══════════════════════════════════════════════════════════ */
[data-theme="light"] {
    scrollbar-color: var(--copper) #F0EDE8;
}

[data-theme="light"] body {
    background: #F5F2ED;
    color: #0D1B2A;
}

[data-theme="light"] nav {
    background: rgba(245, 242, 237, 0.92);
    border-bottom-color: rgba(13, 27, 42, 0.1);
}

[data-theme="light"] nav.scrolled {
    background: rgba(245, 242, 237, 0.98);
}

[data-theme="light"] .nav-logo-text {
    color: #0D1B2A;
}

[data-theme="light"] .nav-links a {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .nav-links a:hover {
    color: var(--copper);
}

[data-theme="light"] .nav-links {
    background: rgba(245, 242, 237, 0.98);
    border-bottom-color: rgba(13, 27, 42, 0.1);
}

[data-theme="light"] .theme-toggle {
    border-color: rgba(13, 27, 42, 0.15);
    color: rgba(13, 27, 42, 0.6);
}

[data-theme="light"] .mobile-toggle span {
    background: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .hero-badge {
    background: rgba(13, 27, 42, 0.06);
    border-color: rgba(184, 115, 51, 0.25);
}

[data-theme="light"] .hero-description {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .services::before {
    background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.1), transparent);
}

[data-theme="light"] .section-header p {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .service-card {
    background: #FFFFFF;
    border-color: rgba(13, 27, 42, 0.08);
    box-shadow: 0 2px 20px rgba(13, 27, 42, 0.06);
}

[data-theme="light"] .service-card:hover {
    border-color: rgba(184, 115, 51, 0.3);
    box-shadow: 0 20px 60px rgba(13, 27, 42, 0.12);
}

[data-theme="light"] .service-card p {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .why-label {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .contact {
    background: linear-gradient(180deg, #F0EDE8, #E8E4DD, #F0EDE8);
}

[data-theme="light"] .contact-info p {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .contact-detail {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .contact-detail-icon {
    background: rgba(13, 27, 42, 0.07);
}

[data-theme="light"] .contact-form {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(13, 27, 42, 0.1);
}

[data-theme="light"] .form-group label {
    color: var(--copper-dark);
}

[data-theme="light"] .form-group input,
[data-theme="light"] .form-group textarea,
[data-theme="light"] .form-group select {
    background: rgba(13, 27, 42, 0.05);
    border-color: rgba(13, 27, 42, 0.15);
    color: #0D1B2A;
}

[data-theme="light"] .form-group select option {
    background: #F5F2ED;
    color: #0D1B2A;
}

[data-theme="light"] footer {
    border-top-color: rgba(13, 27, 42, 0.1);
}

[data-theme="light"] .footer-left span {
    color: rgba(13, 27, 42, 0.55);
}

[data-theme="light"] .footer-right {
    color: rgba(13, 27, 42, 0.55);
}

[data-theme="light"] .flyer::before {
    background: linear-gradient(90deg, transparent, rgba(13, 27, 42, 0.1), transparent);
}

[data-theme="light"] .flyer-inner {
    background: linear-gradient(135deg, #FFFFFF, #F5F2ED);
    border-color: rgba(184, 115, 51, 0.2);
    box-shadow: 0 4px 30px rgba(13, 27, 42, 0.08);
}

[data-theme="light"] .flyer-text > p:not(.section-tag) {
    color: rgba(13, 27, 42, 0.65);
}

[data-theme="light"] .flyer-meta {
    color: rgba(13, 27, 42, 0.5);
}
