/*****************************************************
 * LA Paralegal Solutions, LLC
 * Professional Paralegal Services Website
 * Copyright 2026, LA Paralegal Solutions, LLC
 * Responsive CSS - Mobile-first approach
 * Filename & relative path: /assets/css/style.css
 * Date Created: 2025-12-30
 * Last Modified: 2026-01-07
 * Website Designer: Charley CycoNerd
 *****************************************************/

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

/* --------------------
   CSS VARIABLES
--------------------- */
:root {
    /* Colors */
    --navy: #0f1f2f;
    --navy-dark: #0a1520;
    --navy-light: #1a3045;
    --gold: #c9a24d;
    --gold-light: #d4b366;
    --gold-dark: #a8863d;
    --light-bg: #f5f6f8;
    --cream: #faf9f7;
    --text-dark: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: rgba(255, 255, 255, 0.85);
    
    /* Typography */
    --font-heading: "Playfair Display", "Georgia", serif;
    --font-body: "Georgia", "Times New Roman", serif;
    
    /* Spacing */
    --max-width: 1200px;
    --section-padding: 4rem;
    --card-gap: 1.5rem;
    
    /* Shadows */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
}

/* --------------------
   GLOBAL STYLES
--------------------- */
html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--light-bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    
    /* Flexbox for sticky footer */
    min-height: 100%;
    display: flex;
    flex-direction: column;
}

/* Main content area grows to push footer down */
main {
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

/* Footer stays at bottom */
.site-footer {
    flex-shrink: 0;
}

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

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-fast);
}

/* --------------------
   TYPOGRAPHY
--------------------- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
}

/* --------------------
   HEADER / NAVIGATION
--------------------- */
.site-header {
    background-color: var(--navy);
    color: var(--text-light);
    border-bottom: 3px solid var(--gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .container {
    padding-left: 0;
    padding-right: 0;
}

/* Mobile-first: Header stacks vertically
   Brand/logo on top, full navigation below as a unit */
.header-flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: 0.75rem 0;
    gap: 0.5rem;
}

/* =====================
   BRAND / LOGO SECTION
   Logo positioned beside company name
===================== */
.brand {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    /* On mobile, brand takes full width to force nav to next line */
    flex: 1 1 100%;
    justify-content: center;
}

.site-logo {
    height: 40px;
    width: auto;
    flex-shrink: 0;
}

.brand h1 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: left;
    line-height: 1.2;
}

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

/* Navigation - stays together as a unit */
.main-nav {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 0.5rem;
    flex-wrap: nowrap; /* Prevent individual items from wrapping */
    justify-content: center;
}

.main-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.8rem;
    padding: 0.35rem 0.5rem;
    border-radius: 3px;
    transition: all var(--transition-fast);
    font-weight: 400;
    white-space: nowrap;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--gold);
}

/* Mobile menu toggle (hidden by default, add JS if needed) */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

/* --------------------
   HERO SECTION
   NOTE: Image paths are relative to THIS CSS file location (/assets/css/)
   So ../images/ goes up one level to /assets/, then into /images/
--------------------- */
.hero {
    position: relative;

    /* Let hero absorb extra vertical space so lower sections don't "balloon" on tall displays */
    flex: 1 1 auto;
    min-height: 14rem;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--text-light);
    padding: clamp(1.75rem, 4vh, 3rem) 1rem 1.5rem;
    
    /* Background with overlay - JPG fallback first */
    background: 
        linear-gradient(
            to bottom,
            rgba(15, 31, 47, 0.75) 0%,
            rgba(15, 31, 47, 0.60) 50%,
            rgba(15, 31, 47, 0.80) 100%
        ),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
}

/* Modern browsers that support webp */
@supports (background-image: url("../images/hero-bg.webp")) {
    .hero {
        background: 
            linear-gradient(
                to bottom,
                rgba(15, 31, 47, 0.75) 0%,
                rgba(15, 31, 47, 0.60) 50%,
                rgba(15, 31, 47, 0.80) 100%
            ),
            url("../images/hero-bg.webp");
        background-size: cover;
        background-position: center 30%;
        background-repeat: no-repeat;
    }
}

.hero-content {
    max-width: 800px;
    padding: 0 0.75rem;
    z-index: 2;
}

.hero h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 4.5vw, 3rem);
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.25;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    /*padding-top: 10rem; /*TODO: Refactor this. Let hero container do layout work*/
}

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

.hero-subtitle {
    font-size: clamp(0.85rem, 2.2vw, 1.25rem);
    margin-bottom: 1.5rem;
    opacity: 0.95;
    font-weight: 400;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    /* Add modest negative margin only on wider screens. */
    .services-preview {
        margin-top: -1.25rem;
        padding-top: 0.75rem;
  }
}

/* --------------------
   BUTTONS
--------------------- */
.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--navy-dark);
    padding: 0.9rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: all var(--transition-medium);
    box-shadow: 0 4px 15px rgba(201, 162, 77, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 162, 77, 0.4);
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
}

/* --------------------
   SERVICE CARDS SECTION
   Cards flow naturally below hero with seamless background
--------------------- */
.services-preview {
    flex: 0 0 auto;
    padding: 1.25rem 1rem 1.5rem; /* slightly tighter */
    position: relative;
    z-index: 10;
    padding: 1.5rem 1rem 2rem;
    background: 
        linear-gradient(
            to bottom,
            rgba(15, 31, 47, 0.80) 0%,
            var(--navy-dark) 30%,
            var(--navy-dark) 100%
        ),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center 70%;
}

@supports (background-image: url("../images/hero-bg.webp")) {
    .services-preview {
        background: 
            linear-gradient(
                to bottom,
                rgba(15, 31, 47, 0.80) 0%,
                var(--navy-dark) 30%,
                var(--navy-dark) 100%
            ),
            url("../images/hero-bg.webp");
        background-size: cover;
        background-position: center 70%;
    }
}

.services-preview h3 {
    text-align: center;
    color: var(--text-light);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--card-gap);
    max-width: var(--max-width);
    margin: 0 auto;
    /* Ensure grid items stretch (explicit; grid default is stretch, but keep it clear) */
    align-items: stretch;
}

.service-card {
    min-height: 15.25rem;
    display: flex;
    flex-direction: column;
    background: linear-gradient(
        135deg,
        rgba(15, 31, 47, 0.98) 0%,
        rgba(26, 48, 69, 0.98) 100%
    );
    border: 1px solid rgba(201, 162, 77, 0.3);
    border-top: 4px solid var(--gold);
    padding: 1.5rem 1.25rem;
    text-align: center;
    box-shadow: var(--shadow-strong);
    transition: all var(--transition-medium);
    /* Make the <article> fill the link (and therefore the grid cell) */
    height: 100%;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(201, 162, 77, 0.5);
}

.service-card-icon {
    margin: 0 auto 0.75rem;
}

.service-card-icon img {
    width: 72px;
    height: 72px;
    display: block;
}

.service-card h4 {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    /* display: block; */
    /* Make the <a> fill the grid cell and let the card stretch with it */
    display: flex;
    height: 100%;
}

/* --------------------
   VALUE PROPOSITION SECTION
--------------------- */
.value-prop {
    background-color: var(--cream);
    padding: 2.5rem 1rem;
    text-align: center;
}

.value-prop .container {
    max-width: 800px;
}

.value-prop h3 {
    flex: 0 0 auto;
    padding: 2rem 1rem;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    color: var(--navy);
    margin-bottom: 1rem;
}

.value-prop p {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.7;
}

/* --------------------
   PAGE HEADERS (for inner pages)
--------------------- */
.page-header {
    background: 
        linear-gradient(
            to bottom,
            rgba(15, 31, 47, 0.85),
            rgba(15, 31, 47, 0.9)
        ),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center 30%;
    color: var(--text-light);
    text-align: center;
    padding: 2.5rem 1rem 2rem;
    flex-shrink: 0;
}

@supports (background-image: url("../images/hero-bg.webp")) {
    .page-header {
        background: 
            linear-gradient(
                to bottom,
                rgba(15, 31, 47, 0.85),
                rgba(15, 31, 47, 0.9)
            ),
            url("../images/hero-bg.webp");
        background-size: cover;
        background-position: center 30%;
    }
}

.page-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 5vw, 2.5rem);
    margin-bottom: 0.5rem;
    flex-shrink: 0;
}

.page-header p {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* --------------------
   CONTENT SECTIONS
--------------------- */
.content-section {
    padding: 2.5rem 1rem;
    /* flex: 1 0 auto; */
    flex: 1;
    min-height: 0;
}

.content-section.dark {
    background: 
        linear-gradient(
            135deg,
            rgba(15, 31, 47, 0.97),
            rgba(26, 48, 69, 0.97)
        ),
        url("../images/hero-bg.jpg");
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    color: var(--text-light);
    flex: 1;
}

@supports (background-image: url("../images/hero-bg.webp")) {
    .content-section.dark {
        background: 
            linear-gradient(
                135deg,
                rgba(15, 31, 47, 0.97),
                rgba(26, 48, 69, 0.97)
            ),
            url("../images/hero-bg.webp");
        background-size: cover;
        background-position: center;
        background-attachment: scroll;
        flex: 1;
    }
}

.content-section h3 {
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

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

/* Two column layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

/* --------------------
   RATES PAGE STYLES
--------------------- */
.rates-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rate-card {
    background: linear-gradient(
        135deg,
        rgba(15, 31, 47, 0.95) 0%,
        rgba(26, 48, 69, 0.95) 100%
    );
    border: 1px solid rgba(201, 162, 77, 0.3);
    padding: 1.5rem 1rem;
    text-align: center;
}

.rate-card-icon {
    width: 35px;
    height: 35px;
    margin: 0 auto 0.75rem;
    color: var(--gold);
}

.rate-card h4 {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.rate-card .price {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-light);
}

.rate-card .price span {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.8;
}

.retainer-info {
    background: rgba(201, 162, 77, 0.1);
    border-top: 2px solid var(--gold);
    padding: 1.25rem;
    text-align: center;
}

.retainer-info h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.retainer-info p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* --------------------
   ABOUT PAGE STYLES
--------------------- */
.about-content {
    padding: 2.5rem 1rem;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-text h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
}

.about-text p {
    margin-bottom: 0.75rem;
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-features {
    list-style: none;
}

.about-features li {
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-features li::before {
    content: "•";
    color: var(--gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.about-features strong {
    color: var(--gold);
}

/* --------------------
   CONTACT PAGE STYLES
--------------------- */
.contact-section {
    padding: 2.5rem 1rem;
}

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

.contact-info h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.contact-details {
    list-style: none;
}

.contact-details li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-details li svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

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

.contact-details a:hover {
    color: var(--gold-light);
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(
        135deg,
        rgba(15, 31, 47, 0.95) 0%,
        rgba(26, 48, 69, 0.95) 100%
    );
    border: 1px solid rgba(201, 162, 77, 0.3);
    padding: 1.5rem;
}

.contact-form-wrapper h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
}

.form-group input,
.form-group textarea {
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(201, 162, 77, 0.3);
    background: rgba(255, 255, 255, 0.95);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: border-color var(--transition-fast);
}

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

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

.form-submit {
    margin-top: 0.25rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* Form Success Message */
.form-success-message {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(201, 162, 77, 0.1);
    border: 1px solid rgba(201, 162, 77, 0.3);
}

.form-success-message h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.form-success-message p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* --------------------
   SERVICES PAGE STYLES
--------------------- */
.services-full {
    padding: 2.5rem 1rem;
}

.service-category {
    margin-bottom: 1.75rem;
}

.service-category:last-child {
    margin-bottom: 0;
}

.service-category h3 {
    color: var(--gold);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    padding-bottom: 0.4rem;
    border-bottom: 2px solid rgba(201, 162, 77, 0.3);
}

.service-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem;
}

.service-list li {
    padding: 0.3rem 0 0.3rem 1.25rem;
    position: relative;
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.service-list li::before {
    content: "✔";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-weight: bold;
    font-size: 0.85rem;
}

/* --------------------
   FOOTER
--------------------- */
.site-footer {
    background-color: var(--navy-dark);
    color: var(--text-light);
    padding: 1.5rem 1rem;
    border-top: 3px solid var(--gold);
    flex-shrink: 0;
}

.footer-content {
    text-align: center;
}

.footer-content p {
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
}

.disclaimer {
    font-size: 0.7rem;
    opacity: 0.75;
    line-height: 1.5;
    max-width: 700px;
    margin: 0.75rem auto 0;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.disclaimer:hover {
    opacity: 1;
}

/* Clickable disclaimer link wrapper */
.disclaimer-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.disclaimer-link:hover {
    color: var(--gold-light);
}

/* --------------------
   UTILITY CLASSES
--------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }

/* --------------------
   RESPONSIVE BREAKPOINTS
--------------------- */

/* Small phones (landscape) and up */
@media (min-width: 480px) {
    /* Brand/Logo - slightly larger on small landscape */
    .site-logo {
        height: 45px;
    }

    .site-header .container {
        padding-left: 0;
        padding-right: 0;
    }
    
    .brand h1 {
        font-size: 1rem;
        letter-spacing: 0.75px;
    }
    
    .main-nav a {
        font-size: 0.85rem;
        padding: 0.4rem 0.6rem;
    }
    
    .main-nav ul {
        gap: 0.4rem;
    }
    
    .hero {
        padding: 3rem 1rem 2.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .rates-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets (portrait) - around 600-767px */
@media (min-width: 600px) {
    /* Specific width override so navigation has room. */
    @media (min-width: 725px) and (max-width: 767px) { 
        /* Header switches to horizontal: brand left, nav right */
        .header-flex {
            flex-wrap: nowrap;
            justify-content: space-between;
            padding: 0;
            min-height: 65px;
        }
        
        /* Brand no longer forces full width */
        .brand {
            flex: 0 1 auto;
            justify-content: flex-start;
            gap: 0.875rem;
        }
        
        /* Nav no longer takes full width */
        .main-nav {
            flex: 0 1 auto;
            justify-content: flex-end;
        }        
    }
    
    .main-nav ul {
        gap: 0.5rem;
    }
    
    .container {
        padding: 0 1.5rem;
    }
    
    .site-logo {
        height: 48px;
    }
    
    .brand h1 {
        font-size: 1.1rem;
    }
    
    .main-nav a {
        font-size: 0.9rem;
        padding: 0.5rem 0.7rem;
    }
    
    .hero {
        padding: 3.5rem 1.5rem 3rem;
    }
    
    .hero h2 {
        font-size: clamp(1.6rem, 4.5vw, 2.5rem);
    }
    
    .services-preview {
        padding: 2rem 1.5rem 2.5rem;
    }
    
    .services-preview h3 {
        font-size: 1.4rem;
    }
    
    .service-card {
        padding: 1.75rem 1.25rem;
    }
    
    .service-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.3rem 1.5rem;
    }
}

/* Tablets (landscape) - 768px+ */
@media (min-width: 768px) {
    :root {
        --section-padding: 4rem;
    }
    
    .header-flex {
        min-height: 70px;
    } 

    .services-preview {
        margin-top: -0.75rem;
        padding-top: 1rem;
    }

    @media (min-width: 800px) {
        .header-flex { 
            flex-wrap: nowrap; 
            justify-content: space-between; 
            padding: 0; 
            min-height: 70px; 
        } 
        
        .brand { 
            flex: 0 1 auto; 
            justify-content: flex-start; 
            gap: 1rem; 
        } 
        
        .main-nav { 
            flex: 0 1 auto; 
            justify-content: flex-end; 
        }
    }

    
    /* Brand/Logo - larger on tablet landscape */
    .brand {
        gap: 1rem;
    }
    
    .site-logo {
        height: 52px;
    }
    
    .brand h1 {
        font-size: 1.2rem;
        letter-spacing: 1px;
    }
    
    .main-nav ul {
        gap: 0.75rem;
    }
    
    .main-nav a {
        font-size: 0.95rem;
        padding: 0.5rem 0.9rem;
    }
    
    .hero {
        padding: 4rem 2rem 3.5rem;
    }
    
    .hero h2 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
    
    .services-preview {
        padding: 2rem 2rem 3rem;
    }
    
    .services-preview h3 {
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-card h4 {
        font-size: 1.05rem;
    }
    
    .two-col {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .about-grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Small laptops / large tablets - 992px+ */
@media (min-width: 992px) {
    :root {
        --section-padding: 5rem;
    }
    
    .container {
        padding: 0 2rem;
    }
    
    .header-flex {
        flex-wrap: nowrap;
        justify-content: space-between;
        padding: 0;
        min-height: 80px;
    }
    
    /* Brand/Logo - full size on desktop */
    .brand {
        gap: 1rem;
    }
    
    .site-logo {
        height: 55px;
    }
    
    .brand h1 {
        font-size: 1.35rem;
        letter-spacing: 1.5px;
    }
    
    .main-nav ul {
        gap: 1.25rem;
    }
    
    .main-nav a {
        font-size: 1rem;
    }
    
    .hero {
        padding: 5rem 2rem 4rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .rates-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    /* .service-card-icon {
        width: 55px;
        height: 55px;
    } */
    
    .service-card h4 {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* Desktop - 1200px+ */
@media (min-width: 1200px) {
    :root {
        --section-padding: 5rem;
    }
    
    /* Brand/Logo - largest size */
    .site-logo {
        height: 58px;
    }
    
    .brand h1 {
        font-size: 1.4rem;
    }
    
    .hero {
        padding: 6rem 2rem 5rem;
    }
    
    .hero h2 {
        font-size: 3rem;
    }
    
    .services-preview {
        padding: 2.5rem 2rem 3.5rem;
    }
    
    .service-card {
        padding: 2.25rem;
    }
    
    /* .service-card-icon {
        width: 60px;
        height: 60px;
    } */
}

/* Large screens / 4K - 1600px+ */
@media (min-width: 1600px) {
    :root {
        --max-width: 1400px;
    }
    
    body {
        font-size: 18px;
    }
    
    .site-logo {
        height: 62px;
    }
    
    .brand h1 {
        font-size: 1.6rem;
    }
    
    .hero h2 {
        font-size: 3.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Ultra-wide screens - 2000px+ */
@media (min-width: 2000px) {
    :root {
        --max-width: 1600px;
    }
}

/* --------------------
   PRINT STYLES
--------------------- */
@media print {
    .site-header,
    .site-footer,
    .btn-primary {
        display: none;
    }
    
    .hero {
        background: var(--navy) !important;
        min-height: auto;
        padding: 2rem;
    }
    
    .service-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}

/* --------------------
   ACCESSIBILITY
--------------------- */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
    }
}

/* Focus states for keyboard navigation */
a:focus,
button:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* Skip to content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--gold);
    color: var(--navy);
    padding: 8px;
    z-index: 9999;
}

.skip-link:focus {
    top: 0;
}