/* ═══════════════════════════════════════
   SMOLKA & COMPANY — Global Styles
   Dark Blue & White Theme
   ═══════════════════════════════════════ */

:root {
    --navy: #0b1d3a;
    --navy-light: #132d55;
    --blue: #1a5276;
    --blue-accent: #2980b9;
    --blue-light: #d6eaf8;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --gray-light: #eef1f5;
    --gray: #6b7280;
    --gray-dark: #374151;
    --text: #1f2937;
    --gold: #c9952d;
    --gold-light: #f0d78c;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 8px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

a {
    transition: all 0.2s ease;
    text-decoration: none;
}

img { max-width: 100%; height: auto; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ─── TOP BAR ─── */
.top-bar {
    background: var(--navy);
    color: rgba(255,255,255,0.85);
    font-size: 0.82rem;
    padding: 0.4rem 2rem;
}

.top-bar-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.top-bar a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
}

.top-bar a:hover { color: var(--gold); }

.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar .separator {
    opacity: 0.3;
}

/* ─── HEADER / NAVBAR ─── */
.header {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
}

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

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--navy);
    line-height: 1.1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* Navigation */
.nav { display: flex; align-items: center; gap: 0.25rem; }

.nav a {
    color: var(--text);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border-radius: var(--radius);
    text-decoration: none;
}

.nav a:hover,
.nav a.active {
    color: var(--blue-accent);
    background: var(--blue-light);
}

.nav-cta {
    background: var(--navy) !important;
    color: var(--white) !important;
    padding: 0.6rem 1.4rem !important;
    border-radius: var(--radius) !important;
    margin-left: 0.5rem;
}

.nav-cta:hover {
    background: var(--navy-light) !important;
    color: var(--white) !important;
}

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: 0.3s;
}

/* ─── HERO ─── */
.hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--blue) 100%);
    color: var(--white);
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
}

.hero h1 span {
    color: var(--gold);
}

.hero p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.hero-stat h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gold);
}

.hero-stat p {
    font-size: 0.85rem;
    opacity: 0.75;
    margin-bottom: 0;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
    text-align: center;
    width: 100%;
    max-width: 400px;
}

.hero-card-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.hero-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.hero-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

/* ─── BUTTONS ─── */
.btn {
    display: inline-block;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-primary {
    background: var(--gold);
    color: var(--navy);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(201,149,45,0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.4);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--white);
}

.btn-dark {
    background: var(--navy);
    color: var(--white);
}

.btn-dark:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11,29,58,0.4);
}

.btn-white {
    background: var(--white);
    color: var(--navy);
}

.btn-white:hover {
    background: var(--off-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

/* ─── SECTION STYLES ─── */
.section {
    padding: 5rem 2rem;
}

.section-light {
    background: var(--off-white);
}

.section-dark {
    background: var(--navy);
    color: var(--white);
}

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

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--blue-accent);
    margin-bottom: 0.75rem;
}

.section-dark .section-label {
    color: var(--gold);
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 1rem;
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-header p {
    color: var(--gray);
    font-size: 1.05rem;
}

.section-dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ─── SERVICE CARDS ─── */
.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-accent);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: var(--blue-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.service-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.92rem;
    line-height: 1.6;
}

/* ─── WHY CHOOSE US ─── */
.why-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.why-number {
    width: 50px;
    height: 50px;
    background: var(--gold);
    color: var(--navy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
    font-family: 'Montserrat', sans-serif;
}

.why-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.why-item p {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* ─── PROCESS SECTION ─── */
.process-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    counter-reset: process;
}

.process-step {
    text-align: center;
    padding: 2rem 1.5rem;
    position: relative;
}

.process-step::before {
    counter-increment: process;
    content: counter(process);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    margin: 0 auto 1.25rem;
    font-family: 'Montserrat', sans-serif;
}

.process-step h3 {
    font-size: 1.05rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ─── CTA BANNER ─── */
.cta-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--gold);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.testimonial-card blockquote {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
}

.testimonial-location {
    font-size: 0.8rem;
    color: var(--gray);
}

/* ─── FAQ ─── */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--gray-light);
    padding: 1.5rem 0;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.faq-question::after {
    content: '+';
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--blue-accent);
    transition: transform 0.3s;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-top: 1rem;
}

.faq-answer p {
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ─── ABOUT PAGE ─── */
.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.about-hero p {
    font-size: 1.1rem;
    opacity: 0.85;
    max-width: 600px;
    margin: 0 auto;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.credentials-list {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.credentials-list li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.credentials-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: 700;
}

.about-image-placeholder {
    background: var(--blue-light);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder .placeholder-icon {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.about-image-placeholder p {
    color: var(--blue);
    font-weight: 600;
}

/* ─── CONTACT PAGE ─── */
.contact-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-detail h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.25rem;
}

.contact-detail p,
.contact-detail a {
    color: var(--white);
    font-size: 1rem;
}

.contact-detail a:hover {
    color: var(--gold);
}

.contact-hours {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.15);
}

.contact-hours h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.7;
    margin-bottom: 0.75rem;
}

.contact-hours p {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

/* Contact Form */
.contact-form-wrap {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    font-size: 1.3rem;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--blue-accent);
}

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

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

.form-submit {
    width: 100%;
    padding: 0.9rem;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.2s;
}

.form-submit:hover {
    background: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(11,29,58,0.3);
}

/* ─── SERVICES PAGE ─── */
.service-detail {
    max-width: 1200px;
    margin: 0 auto;
}

.service-detail-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 0;
    border-bottom: 1px solid var(--gray-light);
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-item:nth-child(even) {
    direction: rtl;
}

.service-detail-item:nth-child(even) > * {
    direction: ltr;
}

.service-detail-icon {
    background: var(--blue-light);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
    font-size: 4rem;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.service-detail-text p {
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.service-detail-text ul {
    list-style: none;
    padding: 0;
}

.service-detail-text ul li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-dark);
    font-size: 0.95rem;
}

.service-detail-text ul li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--blue-accent);
    font-weight: 700;
}

/* ─── FOOTER ─── */
.footer {
    background: var(--navy);
    color: var(--white);
    padding: 4rem 2rem 0;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand p {
    opacity: 0.7;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-top: 1rem;
}

.footer h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1.25rem;
    color: var(--gold);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    text-decoration: none;
}

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

.footer-disclaimer {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding: 2rem 0 1rem;
}

.footer-disclaimer-inner {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 0.72rem;
    line-height: 1.55;
    color: rgba(255,255,255,0.55);
}

.footer-disclaimer-inner p {
    margin-bottom: 0.75rem;
}

.footer-disclaimer-inner strong {
    color: rgba(255,255,255,0.75);
    font-weight: 700;
}

.footer-disclaimer-title {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 0;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.8rem;
    opacity: 0.6;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 992px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .hero-image {
        display: none;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

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

    .service-detail-item,
    .service-detail-item:nth-child(even) {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .top-bar { display: none; }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: var(--shadow-lg);
    }

    .nav.open { display: flex; }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
    }

    .nav-cta {
        margin-left: 0 !important;
    }

    .nav-toggle { display: block; }

    .hero {
        padding: 3rem 1.5rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .section { padding: 3rem 1.5rem; }

    .section-header h2 { font-size: 1.6rem; }

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

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .cta-banner h2 { font-size: 1.5rem; }
}
