/* ============================================================
   GRÚAS URBANAS — Custom CSS
   - Hero con imagen real de fondo + overlay
   - Logo PNG en header
   - Service feature con imagen
   - Coverage feature con mapa
   - Google badge con rating
   - Sticky CTA (WhatsApp + Llamada)
   - Mobile-first responsive
   - Sin librerías externas
   ============================================================ */

/* ============================================================
   VARIABLES — Sistema de diseño
   ============================================================ */
:root {
    --color-primary: #FF6B00;        /* Naranja grúa */
    --color-primary-dark: #E55A00;
    --color-secondary: #1A1A1A;      /* Negro/carbón */
    --color-accent: #FFB347;         /* Naranja claro */
    --color-success: #25D366;        /* Verde WhatsApp */
    --color-whatsapp: #25D366;
    --color-call: #FF6B00;
    --color-text: #2C2C2C;
    --color-text-light: #6B6B6B;
    --color-bg: #FFFFFF;
    --color-bg-alt: #F7F7F8;
    --color-border: #E5E5E7;
    --color-rating: #FFB400;

    --font-main: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

    --container: 1200px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);

    --header-h: 130px;
    --header-h-mobile: 70px;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    margin: 0;
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text);
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    padding-bottom: 80px; /* espacio para sticky CTA en móvil */
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { color: var(--color-primary-dark); text-decoration: underline; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 800; line-height: 1.2; margin: 0 0 1rem; color: var(--color-secondary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
p { margin: 0 0 1rem; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; box-shadow: var(--shadow); }

.header-top {
    background: var(--color-secondary);
    color: #fff;
    font-size: 0.85rem;
    padding: 0.5rem 0;
}

.header-top .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.header-top__info { display: flex; gap: 1.5rem; flex-wrap: wrap; align-items: center; }
.header-top__item, .header-top__rating { display: inline-flex; align-items: center; gap: 0.4rem; color: rgba(255,255,255,0.9); }
.header-top__rating .stars { color: var(--color-rating); letter-spacing: 1px; font-size: 0.9rem; }
.header-top__phone { color: #fff; font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; transition: color 0.2s; }
.header-top__phone:hover { color: var(--color-accent); text-decoration: none; }

.site-nav { padding: 0.75rem 0; }
.site-nav .container { display: flex; justify-content: space-between; align-items: center; gap: 1rem; }

.site-logo { display: inline-flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.site-logo:hover { text-decoration: none; }
.site-logo__img { height: auto; max-height: 54px; width: auto; }

.nav-menu { display: flex; gap: 1.5rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu a { color: var(--color-secondary); font-weight: 600; padding: 0.5rem 0.25rem; position: relative; transition: color 0.2s; text-decoration: none; }
.nav-menu a:hover, .nav-menu a.active { color: var(--color-primary); }
.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--color-primary);
}
.nav-cta a.btn-whatsapp {
    background: var(--color-whatsapp);
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-weight: 700;
    transition: background 0.2s, transform 0.2s;
}
.nav-cta a.btn-whatsapp:hover { background: #1DA851; transform: translateY(-1px); }

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0.5rem;
}
.nav-toggle span { display: block; width: 24px; height: 3px; background: var(--color-secondary); border-radius: 2px; transition: 0.3s; }

@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s;
    }
    .nav-menu.open { max-height: 500px; }
    .nav-menu li { width: 100%; }
    .nav-menu a { display: block; padding: 0.75rem 0; border-bottom: 1px solid var(--color-border); }
    .nav-cta { margin-top: 1rem; }
    .nav-cta a { text-align: center; }
    .header-top__info { display: none; }
    .site-logo__img { max-height: 40px; }
}

/* ============================================================
   STICKY CTA (WhatsApp + Llamada)
   ============================================================ */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    display: flex;
    gap: 0;
    padding: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.sticky-cta--hidden { transform: translateY(100%); }

.sticky-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 12px 16px;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 0.95rem;
    transition: background 0.2s;
}

.sticky-btn--whatsapp { background: var(--color-whatsapp); }
.sticky-btn--whatsapp:hover { background: #1DA851; }

.sticky-btn--call { background: var(--color-call); }
.sticky-btn--call:hover { background: var(--color-primary-dark); }

.sticky-icon { width: 24px; height: 24px; flex-shrink: 0; }

@media (min-width: 900px) {
    .sticky-cta {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
        left: auto;
        right: 24px;
        flex-direction: column;
        gap: 16px;
        background: transparent;
        box-shadow: none;
        height: auto;
    }
    .sticky-btn {
        /* Reset flex grow so circles don't deform */
        flex: 0 0 auto;
        /* Tamaño grande y perfectamente circular */
        width: 84px;
        height: 84px;
        border-radius: 50%;
        padding: 0;
        box-sizing: border-box;
        box-shadow: 0 6px 20px rgba(0,0,0,0.25);
        display: flex;
        align-items: center;
        justify-content: center;
    }
    /* Icono más grande para que se vea mejor dentro del círculo */
    .sticky-icon {
        width: 38px;
        height: 38px;
    }
    .sticky-btn--whatsapp { animation: pulse-wa 2s infinite; }
    .sticky-label { display: none; }
    body { padding-bottom: 0; padding-right: 0; }
}

@keyframes pulse-wa {
    0% { box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0.7); }
    70% { box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 4px 16px rgba(0,0,0,0.2), 0 0 0 0 rgba(37,211,102,0); }
}

/* ============================================================
   HERO SECTION (con imagen de fondo real)
   ============================================================ */
.hero {
    position: relative;
    color: #fff;
    padding: 4rem 0 5rem;
    overflow: hidden;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.65) 50%, rgba(255,107,0,0.4) 100%);
    z-index: 1;
}

.hero__container {
    position: relative;
    z-index: 2;
}

.hero__content { max-width: 720px; }

.hero__logo {
    margin-bottom: 1.5rem;
}
.hero__logo img {
    max-width: 280px;
    height: auto;
    background: rgba(255,255,255,0.95);
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
}
.hero__rating .stars { color: var(--color-rating); }

.hero__title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}
.hero__title span { color: var(--color-accent); }

.hero__subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 2rem;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

.hero__cta { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
    text-decoration: none !important;
    cursor: pointer;
    border: 0;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn--primary {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff !important;
}
.btn--whatsapp { background: var(--color-whatsapp); color: #fff !important; }
.btn--secondary { background: #fff; color: var(--color-secondary) !important; }

.hero__trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}
.hero__trust-item { display: flex; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.95); }
.hero__trust-item svg { color: var(--color-accent); }

@media (max-width: 768px) {
    .hero { min-height: 500px; padding: 3rem 0 4rem; }
    .hero__logo img { max-width: 200px; }
    .hero__overlay {
        background: linear-gradient(180deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.7) 100%);
    }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 4rem 0; }
.section--alt { background: var(--color-bg-alt); }
.section__title { text-align: center; margin-bottom: 1rem; }
.section__subtitle { text-align: center; color: var(--color-text-light); font-size: 1.1rem; max-width: 700px; margin: 0 auto 3rem; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Feature principal con imagen */
.services-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-bottom: 3rem;
}
.services-feature__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 320px;
    display: block;
}
.services-feature__content { padding: 2.5rem; }
.services-feature__tag {
    display: inline-block;
    background: var(--color-primary);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.3rem 0.8rem;
    border-radius: 99px;
    margin-bottom: 1rem;
}
.services-feature__content h3 { font-size: 1.6rem; margin-bottom: 1rem; }
.services-feature__content p { color: var(--color-text-light); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .services-feature { grid-template-columns: 1fr; }
    .services-feature__image img { min-height: 200px; }
    .services-feature__content { padding: 1.5rem; }
}

.service-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    border-top: 4px solid var(--color-primary);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.service-card__icon {
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    margin-bottom: 1rem;
}
.service-card__title { font-size: 1.3rem; margin-bottom: 0.5rem; }
.service-card__text { color: var(--color-text-light); margin-bottom: 1rem; }
.service-card__link { font-weight: 700; color: var(--color-primary); }

/* ============================================================
   COVERAGE FEATURE (mapa)
   ============================================================ */
.coverage-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}
.coverage-feature__map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 300px;
}
.coverage-feature__content { padding: 2rem; }
.coverage-feature__content h3 { margin-bottom: 1rem; }
.coverage-feature__content p { color: var(--color-text-light); margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .coverage-feature { grid-template-columns: 1fr; }
    .coverage-feature__map img { min-height: 200px; }
    .coverage-feature__content { padding: 1.5rem; }
}

.communes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}
.commune-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    padding: 1.25rem;
    text-align: center;
    transition: border-color 0.2s, transform 0.2s;
    display: block;
    color: var(--color-secondary);
}
.commune-card:hover { border-color: var(--color-primary); transform: translateY(-2px); text-decoration: none; }
.commune-card__name { font-weight: 700; margin-bottom: 0.25rem; }
.commune-card__desc { font-size: 0.85rem; color: var(--color-text-light); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}
.testimonial {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--color-primary);
}
.testimonial__stars { color: var(--color-rating); margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial__avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 1rem;
    border: 3px solid var(--color-primary);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.testimonial__text { font-style: italic; margin-bottom: 1rem; color: var(--color-text); }
.testimonial__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial__source {
    font-size: 0.85rem;
    color: var(--color-text-light);
    text-decoration: none;
    display: inline-block;
    margin-top: 0.25rem;
}
a.testimonial__source:hover { color: #1a73e8; text-decoration: underline; }
.testimonial__author-img {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.testimonial__author-name { font-weight: 700; }
.testimonial__author-meta { font-size: 0.85rem; color: var(--color-text-light); }

/* Google Badge con rating */
.google-badge {
    margin-top: 3rem;
    text-align: center;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}
.google-badge__rating { display: flex; align-items: center; gap: 0.75rem; }
.google-badge__stars { color: var(--color-rating); font-size: 1.5rem; letter-spacing: 2px; }
.google-badge__score strong { color: var(--color-secondary); font-size: 1.3rem; }
.google-badge__score span { color: var(--color-text-light); }
.google-badge__cta { display: inline-flex; align-items: center; gap: 0.5rem; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border-radius: var(--radius);
    margin-bottom: 1rem;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-primary);
    transition: transform 0.3s;
}
.faq-item[open] .faq-question::after { transform: rotate(45deg); }
.faq-answer { padding: 0 1.5rem 1.25rem; color: var(--color-text-light); }

/* ============================================================
   FINAL CTA SECTION
   ============================================================ */
.final-cta {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.95; }
.final-cta__buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.final-cta .btn--secondary { background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--color-secondary);
    color: #fff;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr; }
}

.footer-col h3.footer-title {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.footer-logo-wrap { margin-bottom: 1rem; }
.footer-logo-img { max-width: 200px; height: auto; }
.footer-tagline { color: rgba(255,255,255,0.8); margin-bottom: 1rem; }
.footer-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; }
.rating-stars { color: var(--color-rating); font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.9); }
.rating-text strong { color: #fff; }
.footer-gbp { color: var(--color-accent); font-weight: 700; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.footer-links a:hover { color: var(--color-accent); text-decoration: none; }

.footer-nap { font-style: normal; color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.8; }
.footer-nap a { color: var(--color-accent); }
.footer-btn-contact {
    display: inline-block;
    background: var(--color-primary);
    color: #fff !important;
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    margin-top: 1rem;
    font-weight: 700;
    transition: background 0.2s;
}
.footer-btn-contact:hover { background: var(--color-primary-dark); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-legal { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-social a:hover { color: var(--color-accent); }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb {
    background: var(--color-bg-alt);
    padding: 1rem 0;
    font-size: 0.9rem;
    color: var(--color-text-light);
}
.breadcrumb a { color: var(--color-text-light); }
.breadcrumb a:hover { color: var(--color-primary); }

/* ============================================================
   ARTICLE / BLOG
   ============================================================ */
article h2, article h3 { margin-top: 2rem; }
article p { line-height: 1.8; }
article img { border-radius: var(--radius); margin: 1.5rem 0; }
.blog-list { display: grid; gap: 2rem; max-width: 800px; margin: 0 auto; }
.blog-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}
.blog-card:hover { transform: translateY(-2px); }
.blog-card__meta { font-size: 0.85rem; color: var(--color-text-light); margin-bottom: 0.5rem; }
.blog-card__title { font-size: 1.5rem; margin-bottom: 0.5rem; }
.blog-card__excerpt { color: var(--color-text-light); margin-bottom: 1rem; }
.blog-card__link { color: var(--color-primary); font-weight: 700; }

/* ============================================================
   UTILITY
   ============================================================ */
.text-center { text-align: center; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    margin: -1px; padding: 0;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

/* ============================================================
   FORM
   ============================================================ */
.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 1rem;
}
.form-group input:focus, .form-group textarea:focus {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--color-primary);
    color: #fff;
    border: 0;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}
.form-submit:hover { background: var(--color-primary-dark); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
    .site-header, .sticky-cta, .site-footer, .nav-toggle { display: none; }
    body { padding: 0; }
}