/* ═══════════════════════════════════════════════════════════
   VALLEY PAINTING — Styles
   Teal (#0d9488) + Slate Grey palette · Space Grotesk + Inter
   ═══════════════════════════════════════════════════════════ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --teal:        #0d9488;
    --teal-dark:   #0f766e;
    --teal-light:  #99f6e4;
    --teal-bg:     #f0fdfa;
    --slate:       #1e293b;
    --slate-mid:   #334155;
    --slate-light: #f1f5f9;
    --slate-border:#e2e8f0;
    --white:       #ffffff;
    --text:        #1e293b;
    --text-muted:  #64748b;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(0,0,0,.08);
    --shadow-lg:   0 12px 48px rgba(0,0,0,.12);
    --transition:  .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
    font-weight: 700;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--teal-dark); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ── Accent utility ── */
.accent { color: var(--teal); }
.section-label {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .8rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--teal);
    background: var(--teal-bg);
    border: 1px solid var(--teal-light);
    padding: .4em 1em;
    border-radius: 100px;
    margin-bottom: 1rem;
}
.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--slate);
    margin-bottom: 1rem;
}
.section-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.7;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .95rem;
    padding: .85em 1.8em;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}
.btn-primary {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}
.btn-primary:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13,148,136,.3);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.5);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
}
.btn-nav {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
    padding: .6em 1.4em;
    font-size: .85rem;
}
.btn-nav:hover {
    background: var(--teal-dark);
    border-color: var(--teal-dark);
    color: var(--white);
}
.btn-white {
    background: var(--white);
    color: var(--teal);
    border-color: var(--white);
}
.btn-white:hover {
    background: var(--slate);
    border-color: var(--slate);
    color: var(--white);
}
.btn-ghost {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,.4);
}
.btn-ghost:hover {
    background: rgba(255,255,255,.1);
    border-color: var(--white);
    color: var(--white);
}
.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--slate-border);
    transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow); }
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: .6em;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--slate);
    text-decoration: none;
}
.logo:hover { color: var(--teal); }
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-menu a {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 500;
    font-size: .9rem;
    color: var(--slate-mid);
    text-decoration: none;
    transition: color var(--transition);
}
.nav-menu a:hover { color: var(--teal); }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--slate);
    border-radius: 2px;
    transition: all var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(30,41,59,.88) 0%,
        rgba(13,148,136,.72) 100%
    );
}
.hero-shape {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}
.hero-shape--tl {
    width: 420px;
    height: 420px;
    background: var(--teal);
    border-radius: 50%;
    top: -120px;
    left: -120px;
    opacity: .12;
}
.hero-shape--br {
    width: 600px;
    height: 600px;
    background: var(--teal-light);
    border-radius: 50%;
    bottom: -200px;
    right: -200px;
    opacity: .1;
}
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    width: 100%;
}
.hero-tag {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--teal-light);
    margin-bottom: 1.2rem;
}
.hero-title {
    font-size: clamp(2rem, 5vw, 3.6rem);
    color: var(--white);
    max-width: 780px;
    margin-bottom: 1.4rem;
    line-height: 1.15;
}
.hero-sub {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: rgba(255,255,255,.8);
    max-width: 560px;
    margin-bottom: 2rem;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.badge {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    font-size: .85rem;
    font-weight: 500;
    color: rgba(255,255,255,.9);
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    padding: .5em 1em;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
.badge svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════════════════════ */
.services {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}
.services::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: var(--teal-bg);
    border-radius: 0 0 0 100%;
    pointer-events: none;
}
.services .container { position: relative; z-index: 1; }
.services .section-label,
.services .section-title,
.services .section-sub { margin-bottom: 3rem; }
.services .section-sub { margin-bottom: 3rem; }

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.card {
    background: var(--white);
    border: 1px solid var(--slate-border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--slate-border);
    transition: background var(--transition);
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.card--teal::before { background: var(--teal); }
.card--teal:hover { border-color: var(--teal); }
.card--slate::before { background: var(--slate); }
.card--slate:hover { border-color: var(--slate); }
.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 1.2rem;
}
.card--teal .card-icon {
    background: var(--teal-bg);
    color: var(--teal);
}
.card--slate .card-icon {
    background: var(--slate-light);
    color: var(--slate);
}
.card h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
    color: var(--slate);
}
.card p {
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   WHY US
   ═══════════════════════════════════════════════════════════ */
.why-us {
    padding: 100px 0;
    background: var(--slate-light);
    position: relative;
    overflow: hidden;
}
.why-us::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: var(--teal);
    border-radius: 50%;
    opacity: .06;
    pointer-events: none;
}
.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.why-visual { position: relative; }
.why-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}
.why-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 6/7;
}
.why-shape {
    position: absolute;
    width: 200px;
    height: 200px;
    background: var(--teal);
    border-radius: var(--radius-lg);
    bottom: -30px;
    right: -30px;
    z-index: 0;
    opacity: .15;
}
.why-content .section-sub { margin-bottom: 2rem; }
.why-list { display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.why-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1rem;
    color: var(--text);
    line-height: 1.6;
}
.why-check {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: var(--teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    margin-top: 2px;
}

/* ═══════════════════════════════════════════════════════════
   GALLERY
   ═══════════════════════════════════════════════════════════ */
.gallery {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}
.gallery .container { position: relative; z-index: 1; }
.gallery .section-label,
.gallery .section-title,
.gallery .section-sub { margin-bottom: 3rem; }
.gallery .section-sub { margin-bottom: 3rem; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem 1.2rem 1.2rem;
    background: linear-gradient(transparent, rgba(30,41,59,.85));
    color: var(--white);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    transform: translateY(100%);
    transition: transform var(--transition);
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-shape {
    position: absolute;
    pointer-events: none;
}
.gallery-shape--tl {
    width: 250px;
    height: 250px;
    background: var(--teal-bg);
    border-radius: 50%;
    top: -60px;
    left: -60px;
    opacity: .6;
}
.gallery-shape--br {
    width: 180px;
    height: 180px;
    background: var(--teal-light);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
    opacity: .5;
}

/* ═══════════════════════════════════════════════════════════
   PROCESS
   ═══════════════════════════════════════════════════════════ */
.process {
    padding: 100px 0;
    background: var(--slate);
    position: relative;
    overflow: hidden;
}
.process::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: var(--teal);
    border-radius: 50%;
    opacity: .08;
    pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process .section-label { background: rgba(13,148,136,.2); border-color: rgba(13,148,136,.4); }
.process .section-title { color: var(--white); }
.process .section-sub { color: rgba(255,255,255,.6); margin-bottom: 3rem; }

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.step {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}
.step:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--teal);
    transform: translateY(-4px);
}
.step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
    margin-bottom: 1rem;
}
.step h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: .6rem;
}
.step p {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials {
    padding: 100px 0;
    background: var(--teal-bg);
    position: relative;
    overflow: hidden;
}
.testimonials::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 250px;
    height: 250px;
    background: var(--teal);
    border-radius: 50%;
    opacity: .08;
    pointer-events: none;
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials .section-label,
.testimonials .section-title,
.testimonials .section-sub { margin-bottom: 3rem; }
.testimonials .section-sub { margin-bottom: 3rem; }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all var(--transition);
    border: 1px solid transparent;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal-light);
}
.testimonial-stars {
    display: flex;
    gap: .25em;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-size: .95rem;
    color: var(--text);
    line-height: 1.75;
    margin-bottom: 1.2rem;
    font-style: italic;
}
.testimonial-author {
    font-size: .85rem;
    font-weight: 600;
    color: var(--teal);
}

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner {
    padding: 80px 0;
    background: var(--teal);
    position: relative;
    overflow: hidden;
}
.cta-shape {
    position: absolute;
    pointer-events: none;
}
.cta-shape--l {
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,.08);
    border-radius: 50%;
    top: -100px;
    left: -80px;
}
.cta-shape--r {
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,.06);
    border-radius: 50%;
    bottom: -60px;
    right: -40px;
}
.cta-banner .container {
    position: relative;
    z-index: 1;
    text-align: center;
}
.cta-title {
    font-size: clamp(1.6rem, 3.5vw, 2.6rem);
    color: var(--white);
    margin-bottom: 1rem;
}
.cta-sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,.85);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
   ═══════════════════════════════════════════════════════════ */
.contact {
    padding: 100px 0;
    background: var(--white);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-info .section-sub { margin-bottom: 2rem; }
.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-details svg { flex-shrink: 0; margin-top: 2px; }
.contact-details strong {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: .9rem;
    color: var(--slate);
    margin-bottom: .2em;
}
.contact-details span,
.contact-details a {
    font-size: .95rem;
    color: var(--text-muted);
}
.contact-details a:hover { color: var(--teal); }

.contact-form-wrap {
    background: var(--slate-light);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--slate-border);
}
.contact-form h3 {
    font-size: 1.4rem;
    color: var(--slate);
    margin-bottom: .4rem;
}
.form-note {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}
.form-group {
    margin-bottom: 1rem;
}
.form-group label {
    display: block;
    font-size: .85rem;
    font-weight: 600;
    color: var(--slate);
    margin-bottom: .4em;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: .75em 1em;
    border: 1px solid var(--slate-border);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: .95rem;
    color: var(--text);
    background: var(--white);
    transition: border-color var(--transition), box-shadow var(--transition);
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(13,148,136,.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }

.form-success {
    display: flex;
    align-items: center;
    gap: .6em;
    margin-top: 1rem;
    padding: 1em;
    background: var(--teal-bg);
    border: 1px solid var(--teal-light);
    border-radius: var(--radius);
    color: var(--teal-dark);
    font-size: .9rem;
}
.form-success svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
    background: var(--slate);
    color: rgba(255,255,255,.7);
    padding: 60px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
.footer-brand p {
    font-size: .9rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-links h4,
.footer-contact h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 1rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a {
    font-size: .9rem;
    color: rgba(255,255,255,.6);
    text-decoration: none;
    transition: color var(--transition);
}
.footer-links a:hover { color: var(--teal-light); }
.footer-contact p {
    font-size: .9rem;
    margin-bottom: .4rem;
    line-height: 1.6;
}
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-contact a:hover { color: var(--teal-light); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.1);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: .5rem;
    font-size: .8rem;
    color: rgba(255,255,255,.4);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        align-items: stretch;
        padding: 1.5rem 24px;
        gap: 1rem;
        border-bottom: 1px solid var(--slate-border);
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        transition: all var(--transition);
        pointer-events: none;
    }
    .nav-menu.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-menu a { padding: .5rem 0; font-size: 1rem; }
    .nav-toggle { display: flex; }
    .btn-nav { text-align: center; }

    .hero-title { font-size: clamp(1.8rem, 7vw, 2.6rem); }
    .hero-shape--tl { width: 250px; height: 250px; }
    .hero-shape--br { width: 350px; height: 350px; }

    .services-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; gap: 2rem; }
    .why-visual { order: -1; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
    .process-steps { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .hero-badges { flex-direction: column; }
    .gallery-grid { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: column; align-items: center; }
    .cta-actions .btn { width: 100%; justify-content: center; }
}
