/* ============================================
   DALILAH PEREZ — PREMIUM EDITORIAL PORTFOLIO
   styles.css | Family First Life
   Aesthetic: Old-money trust + modern execution
   ============================================ */

/* --- RESET & BASE --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    /* Palette: Warm cream, deep navy, champagne gold */
    --bg: #FAF8F5;
    --bg-warm: #F5F0EB;
    --bg-dark: #1B2A4A;
    --text: #1B2A4A;
    --text-light: #5A6B8A;
    --text-muted: #8A95A8;
    --gold: #C9A96E;
    --gold-light: #E8D5B0;
    --gold-dark: #9A7B4F;
    --accent: #C9A96E;
    --white: #FFFFFF;
    --border: rgba(27, 42, 74, 0.08);
    --shadow: rgba(27, 42, 74, 0.06);
    --shadow-hover: rgba(27, 42, 74, 0.12);
    --success: #2D8A6E;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}

/* --- SELECTION --- */
::selection {
    background: var(--gold-light);
    color: var(--text);
}

/* --- SCROLLBAR --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ============================================
   LOADING SCREEN
   ============================================ */
.loader {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    background: var(--bg);
    z-index: 10000;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1), visibility 1s;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-brand {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 400;
    color: var(--text);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 3rem;
    overflow: hidden;
}
.loader-brand span {
    display: inline-block;
    opacity: 0;
    transform: translateY(40px);
    animation: loaderReveal 0.8s cubic-bezier(0.65, 0, 0.35, 1) forwards;
}
@keyframes loaderReveal {
    to { opacity: 1; transform: translateY(0); }
}

.loader-line {
    width: 60px; height: 1px;
    background: var(--gold);
    position: relative;
    overflow: hidden;
}
.loader-line::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--text);
    animation: loaderSlide 1.5s ease-in-out infinite;
}
@keyframes loaderSlide {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ============================================
   NAVIGATION — FLOATING PILL
   ============================================ */
.nav {
    position: fixed; top: 2rem; left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(250, 248, 245, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 0.875rem 2rem;
    display: flex; align-items: center; gap: 2.5rem;
    transition: all 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    box-shadow: 0 4px 24px var(--shadow);
}
.nav.scrolled {
    padding: 0.625rem 1.75rem;
    background: rgba(250, 248, 245, 0.95);
    box-shadow: 0 8px 32px var(--shadow-hover);
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex; gap: 2rem;
    list-style: none;
}
.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.4s ease;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 50%;
    width: 0; height: 1px;
    background: var(--gold);
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    transform: translateX(-50%);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 0.625rem 1.5rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}
.nav-cta:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

/* ============================================
   HERO — EDITORIAL SPLIT
   ============================================ */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    overflow: hidden;
}

.hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5rem 5rem;
    position: relative;
    z-index: 2;
}

.hero-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1.5rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.hero-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 400;
    line-height: 1.05;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.hero-subtitle {
    font-size: 1.0625rem;
    color: var(--text-light);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.hero-cta-group {
    display: flex; gap: 1rem;
    align-items: center;
}

.btn-primary {
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.3);
}

.btn-text {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 0.5rem;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}
.btn-text:hover { color: var(--gold-dark); }
.btn-text svg {
    transition: transform 0.3s ease;
}
.btn-text:hover svg {
    transform: translateX(4px);
}

.hero-right {
    position: relative;
    overflow: hidden;
    background: var(--bg-warm);
}

.hero-image {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 1.2s cubic-bezier(0.65, 0, 0.35, 1);
}
.hero-right:hover .hero-image {
    transform: scale(1.03);
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(250,248,245,0.4) 100%);
    pointer-events: none;
}

.hero-badge-float {
    position: absolute;
    bottom: 3rem; right: 3rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1.25rem 1.75rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px var(--shadow);
    z-index: 3;
    animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.hero-badge-float .badge-label {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
}
.hero-badge-float .badge-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--text);
    font-weight: 600;
}

/* ============================================
   MARQUEE — SERVICES
   ============================================ */
.marquee-section {
    background: var(--bg-dark);
    padding: 1.5rem 0;
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 3rem;
    animation: marqueeScroll 25s linear infinite;
    width: max-content;
}
.marquee-item {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
    white-space: nowrap;
    transition: color 0.3s ease;
}
.marquee-item:hover { color: var(--gold-light); }
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
section {
    padding: 7rem 2rem;
    position: relative;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    margin-bottom: 4rem;
    max-width: 600px;
}
.section-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.75rem;
}
.section-label::before {
    content: '';
    width: 32px; height: 1px;
    background: var(--gold);
}
.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}
.section-subtitle {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ============================================
   ABOUT — EDITORIAL LAYOUT
   ============================================ */
.about {
    background: var(--bg-warm);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: start;
}
.about-image-wrap {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 4/5;
}
.about-image-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.about-image-wrap:hover img {
    transform: scale(1.03);
}
.about-image-frame {
    position: absolute;
    inset: 12px;
    border: 1px solid var(--gold-light);
    border-radius: 2px;
    pointer-events: none;
    opacity: 0.5;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}
.about-content h3 em {
    font-style: italic;
    color: var(--gold-dark);
}

.about-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    font-weight: 400;
}

.about-quote {
    border-left: 2px solid var(--gold);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text);
    line-height: 1.5;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
}

.credential-stat {
    text-align: left;
}
.credential-stat .stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold-dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.credential-stat .stat-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

/* ============================================
   CARRIERS — LOGO GRID
   ============================================ */
.carriers-section {
    background: var(--white);
    padding: 5rem 2rem;
}
.carriers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}
.carrier-item {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 1.25rem 1rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    cursor: default;
}
.carrier-item:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: 0 8px 24px var(--shadow);
}
.carrier-item .carrier-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.02em;
}
.carrier-item .carrier-rating {
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-top: 0.5rem;
}

/* ============================================
   SERVICES — MINIMAL CARDS
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    border-color: var(--gold-light);
    box-shadow: 0 16px 48px var(--shadow-hover);
    transform: translateY(-4px);
}

.service-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--gold);
    margin-bottom: 1.25rem;
    letter-spacing: 0.1em;
}

.service-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--text);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.service-desc {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-dark);
    padding: 0.375rem 0.875rem;
    border: 1px solid var(--gold-light);
    border-radius: 100px;
    transition: all 0.3s ease;
}
.service-card:hover .service-tag {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

/* ============================================
   TESTIMONIALS — EDITORIAL QUOTES
   ============================================ */
.testimonials-section {
    background: var(--bg-dark);
    color: var(--bg);
}
.testimonials-section .section-label::before { background: var(--gold-light); }
.testimonials-section .section-title { color: var(--bg); }
.testimonials-section .section-subtitle { color: rgba(250,248,245,0.6); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: rgba(250, 248, 245, 0.05);
    border: 1px solid rgba(250, 248, 245, 0.1);
    border-radius: 12px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.testimonial-card:hover {
    background: rgba(250, 248, 245, 0.08);
    border-color: var(--gold-light);
    transform: translateY(-4px);
}

.testimonial-quote-mark {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1;
    color: var(--gold);
    opacity: 0.4;
    margin-bottom: 0.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(250, 248, 245, 0.85);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex; align-items: center; gap: 1rem;
}

.testimonial-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex; align-items: center; justify-content: center;
    font-weight: 600; color: var(--white);
    font-size: 0.875rem;
    flex-shrink: 0;
}

.testimonial-info h4 {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--bg);
    margin-bottom: 0.25rem;
}
.testimonial-info p {
    font-size: 0.8125rem;
    color: rgba(250, 248, 245, 0.5);
}

/* ============================================
   CONTACT — DARK SECTION
   ============================================ */
.contact-section {
    background: var(--bg-warm);
    text-align: center;
}

.contact-content {
    max-width: 640px;
    margin: 0 auto;
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.contact-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 1.0625rem;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    justify-content: center; gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex; align-items: center; gap: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border);
    padding: 1rem 1.75rem;
    border-radius: 100px;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    text-decoration: none;
    color: var(--text);
    font-size: 0.9375rem;
    font-weight: 500;
}

.contact-method:hover {
    border-color: var(--gold);
    box-shadow: 0 8px 24px var(--shadow);
    transform: translateY(-2px);
}

.contact-method-icon {
    width: 36px; height: 36px;
    background: var(--bg-warm);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-form {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2.5rem;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
    box-shadow: 0 4px 24px var(--shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.8125rem;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 0.875rem 1rem;
    color: var(--text);
    font-family: inherit;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

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

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

.form-submit {
    width: 100%;
    background: var(--text);
    color: var(--bg);
    border: none;
    padding: 1rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.65, 0, 0.35, 1);
    margin-top: 0.5rem;
}

.form-submit:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(201, 169, 110, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--text);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--bg);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
}

.footer-tagline {
    color: rgba(250, 248, 245, 0.5);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-contact {
    color: rgba(250, 248, 245, 0.6);
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.footer-contact a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-contact a:hover { color: var(--gold); }

.footer-social {
    display: flex;
    justify-content: center; gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.social-link {
    width: 40px; height: 40px;
    background: rgba(250, 248, 245, 0.08);
    border: 1px solid rgba(250, 248, 245, 0.15);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(250, 248, 245, 0.6);
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 0.875rem;
}

.social-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(250, 248, 245, 0.1);
    padding-top: 1.5rem;
    color: rgba(250, 248, 245, 0.35);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.9s cubic-bezier(0.65, 0, 0.35, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-left {
        padding: 7rem 2rem 3rem;
        order: 2;
    }
    .hero-right {
        height: 50vh;
        order: 1;
    }
    .hero-badge-float {
        bottom: 1.5rem; right: 1.5rem;
        padding: 1rem 1.25rem;
    }
    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .carriers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .nav-links { display: none; }
    .nav { padding: 0.75rem 1.25rem; gap: 1rem; }
}

@media (max-width: 600px) {
    section { padding: 4rem 1.5rem; }
    .about-credentials { grid-template-columns: 1fr; gap: 1.5rem; }
    .hero-title { font-size: 2.5rem; }
    .contact-methods { flex-direction: column; align-items: center; }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
