/* Built by Denny - Navy & Gold Theme */

:root {
    --navy: #1a3a5c;
    --navy-dark: #132a42;
    --gold: #f5a623;
    --gold-dark: #d4911e;
    --yellow: #ffd000;
    --white: #ffffff;
    --gray: #666666;
    --gray-light: #f5f5f5;
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Source Sans 3', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--navy); line-height: 1.7; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.1; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* Honeypot - Anti-spam field (invisible to humans, bots will fill it) */
.form-hp {
    position: absolute;
    left: -9999px;
    top: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}
.form-hp input {
    position: absolute;
    left: -9999px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.03em;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-dark); transform: translateY(-2px); }
.btn-primary:disabled { background: #ccc; cursor: not-allowed; transform: none; }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-full { width: 100%; justify-content: center; }

/* Header */
header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: var(--navy);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo img { height: 70px; width: auto; }
nav { display: flex; gap: 30px; align-items: center; }
nav a { font-family: var(--font-heading); font-size: 1.15rem; color: var(--white); }
nav a:hover, nav a.active { color: var(--gold); }
.nav-cta { background: var(--gold); color: var(--navy) !important; padding: 10px 24px; }
.nav-cta:hover { background: var(--gold-dark); }
.mobile-menu { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 10px; background: none; border: none; }
.mobile-menu span { width: 25px; height: 3px; background: var(--white); display: block; }

/* Hero - Homepage */
.hero {
    padding: 150px 24px 80px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
}
.hero-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: center;
}
.hero-text { flex: 1; }
.hero-image { flex: 1; border-radius: 4px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.3); border: 4px solid var(--gold); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--gold);
    color: var(--navy);
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; color: var(--white); }
.hero h1 span { color: var(--gold); }
.hero-description { font-size: 1.15rem; color: rgba(255,255,255,0.9); margin-bottom: 30px; max-width: 500px; line-height: 1.7; }
.hero-cta { display: flex; gap: 15px; flex-wrap: wrap; }
.hero .btn-outline { color: var(--white); border-color: var(--white); }
.hero .btn-outline:hover { background: var(--white); color: var(--navy); }

/* Page Hero - Subpages */
.page-hero {
    padding: 160px 24px 70px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    text-align: center;
}
.page-hero .section-label { color: var(--gold); margin-bottom: 15px; }
.page-hero h1 { font-size: clamp(2.5rem, 5vw, 3.5rem); margin-bottom: 20px; }
.page-hero p { font-size: 1.2rem; color: rgba(255,255,255,0.9); max-width: 650px; margin: 0 auto; line-height: 1.7; }

/* Stats Bar */
.stats-bar { background: var(--gold); padding: 35px 24px; }
.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.stat-item { padding: 10px 20px; }
.stat-number { display: block; font-family: var(--font-heading); font-size: 2.5rem; color: var(--navy); }
.stat-label { font-size: 0.85rem; color: var(--navy-dark); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; }

/* Section Headers */
.section-header { text-align: center; margin-bottom: 50px; }
.section-label {
    display: inline-block;
    color: var(--gold);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}
.section-header h2 { font-size: clamp(2rem, 4vw, 2.75rem); margin-bottom: 15px; color: var(--navy); }
.section-header p { color: var(--gray); max-width: 550px; margin: 0 auto; font-size: 1.1rem; }

/* Process Section */
.process-section { padding: 80px 24px; background: var(--white); }
.process-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}
.process-card {
    background: var(--gray-light);
    padding: 30px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-card:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.process-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 18px;
}
.process-card h3 { font-size: 1.3rem; margin-bottom: 10px; color: var(--navy); }
.process-card p { color: var(--gray); font-size: 0.95rem; line-height: 1.6; }

/* Work Section */
.work-section { 
    background: var(--navy); 
    padding: 80px 24px;
    color: var(--white);
}
.work-inner { 
    max-width: 1100px;
    margin: 0 auto;
    display: flex; 
    gap: 50px;
    align-items: center;
}
.work-image { 
    flex: 1; 
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    border: 4px solid var(--gold);
}
.work-image img { width: 100%; height: auto; object-fit: cover; }
.work-content { flex: 1; }
.work-section .section-label { color: var(--gold); }
.work-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 20px; color: var(--white); }
.work-content > p { color: rgba(255,255,255,0.9); margin-bottom: 25px; font-size: 1.05rem; line-height: 1.7; }
.work-features { list-style: none; margin-bottom: 30px; }
.work-features li { padding: 8px 0 8px 28px; position: relative; color: var(--white); font-size: 1.05rem; }
.work-features li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: bold; }

/* About Section */
.about-section { padding: 80px 24px; background: var(--white); }
.about-inner { 
    max-width: 1100px;
    margin: 0 auto;
    display: flex; 
    gap: 50px; 
    align-items: flex-start; 
}
.about-content { flex: 1.5; }
.about-content h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 20px; color: var(--navy); }
.about-content > p { color: var(--gray); margin-bottom: 18px; font-size: 1.05rem; line-height: 1.7; }
.about-highlights { margin-top: 25px; }
.highlight-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; font-size: 1.05rem; }
.highlight-item svg { fill: var(--gold); }
.about-areas { flex: 1; background: var(--navy); padding: 35px; border-radius: 4px; }
.about-areas h3 { font-size: 1.25rem; margin-bottom: 20px; color: var(--gold); }
.areas-list { display: flex; flex-direction: column; gap: 12px; }
.areas-list span,
.areas-list a { 
    background: rgba(255,255,255,0.1); 
    color: var(--white); 
    padding: 12px 18px; 
    font-size: 1rem; 
    border-left: 3px solid var(--gold); 
    display: block;
    transition: background 0.3s ease;
}
.areas-list a:hover {
    background: rgba(255,255,255,0.2);
}

/* Contact Section */
.contact-section { padding: 80px 24px; background: var(--gray-light); }
.contact-inner { 
    max-width: 1100px;
    margin: 0 auto;
    display: flex; 
    gap: 50px; 
    align-items: flex-start; 
}
.contact-info { flex: 1; }
.contact-info h2 { font-size: clamp(1.75rem, 3vw, 2.25rem); margin-bottom: 15px; color: var(--navy); }
.contact-info > p { color: var(--gray); margin-bottom: 30px; font-size: 1.05rem; line-height: 1.7; }
.contact-methods { display: flex; flex-direction: column; gap: 18px; }
.contact-method { display: flex; align-items: center; gap: 18px; padding: 18px; background: var(--white); transition: transform 0.3s ease; border-radius: 4px; border-left: 4px solid var(--gold); }
.contact-method:hover { transform: translateX(5px); }
.contact-method svg { fill: var(--gold); flex-shrink: 0; }
.contact-method .label { display: block; font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.05em; }
.contact-method .value { font-weight: 600; color: var(--navy); font-size: 1.1rem; }

/* Contact Form */
.contact-form { 
    flex: 1.2; 
    background: var(--white); 
    padding: 35px; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.08); 
    border-radius: 4px; 
    border-top: 4px solid var(--gold);
    max-width: 100%;
    position: relative;
}
.form-row { display: flex; gap: 18px; }
.form-group { margin-bottom: 18px; flex: 1; min-width: 0; }
.form-group label { display: block; font-weight: 600; font-size: 0.95rem; margin-bottom: 8px; color: var(--navy); }
.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    font-family: inherit;
    font-size: 16px; /* Prevents iOS zoom on focus */
    transition: border-color 0.3s ease;
    border-radius: 4px;
    -webkit-appearance: none;
    appearance: none;
}
.form-group select {
    background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E") no-repeat right 14px center;
    padding-right: 40px;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); }

/* Form Success State */
.form-success {
    text-align: center;
    padding: 40px 20px;
}
.form-success svg {
    margin-bottom: 20px;
}
.form-success h3 {
    font-size: 1.75rem;
    color: var(--navy);
    margin-bottom: 15px;
}
.form-success p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.form-success-note {
    font-size: 0.95rem;
    color: var(--gray);
}

/* Form Error State */
.form-error {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 4px;
    padding: 15px;
    margin-bottom: 18px;
    color: #c00;
    font-size: 0.95rem;
}
.form-error a {
    color: #c00;
    text-decoration: underline;
}

/* Footer */
footer { background: var(--navy-dark); padding: 50px 24px 25px; color: var(--white); }
.footer-inner { 
    max-width: 1100px;
    margin: 0 auto;
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    padding-bottom: 30px; 
    border-bottom: 1px solid rgba(255,255,255,0.1); 
    margin-bottom: 30px; 
}
.footer-logo { height: 50px; margin-bottom: 10px; }
.footer-brand p { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-links { display: flex; gap: 35px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.95rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; max-width: 1100px; margin: 0 auto; }
.footer-bottom p { color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* ===== SERVICES PAGE STYLES ===== */

/* Services Preview - Homepage */
.services-preview {
    padding: 80px 24px;
    background: var(--white);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
}
.service-card {
    background: var(--gray-light);
    padding: 30px;
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.service-card .service-icon {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--navy);
}
.service-card h3 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.6;
}
.services-cta {
    text-align: center;
    margin-top: 40px;
}

.services-main { 
    padding: 70px 24px; 
    max-width: 1100px;
    margin: 0 auto;
}

.service-block {
    padding: 50px 0;
    border-bottom: 1px solid #e0e0e0;
}
.service-block:first-child { padding-top: 0; }
.service-block:last-child { border-bottom: none; padding-bottom: 0; }

.service-content { max-width: 850px; }

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--gold);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--navy);
}

.service-content h2 {
    font-size: 1.85rem;
    color: var(--navy);
    margin-bottom: 18px;
}

.service-content > p {
    color: var(--gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
}
.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--navy);
    font-size: 1.05rem;
}
.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.1rem;
}

/* CTA Section */
.cta-section {
    background: var(--navy);
    padding: 80px 24px;
    text-align: center;
}
.cta-content h2 {
    color: var(--gold);
    font-size: 2.25rem;
    margin-bottom: 18px;
}
.cta-content p {
    color: rgba(255,255,255,0.9);
    max-width: 650px;
    margin: 0 auto 30px;
    font-size: 1.15rem;
    line-height: 1.7;
}
.cta-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-outline {
    color: var(--white);
    border-color: var(--white);
}
.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--navy);
}

/* Service Areas Section */
.service-areas-section {
    padding: 80px 24px;
    background: var(--gray-light);
}
.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-bottom: 25px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.area-card {
    background: var(--white);
    padding: 22px;
    text-align: center;
    font-weight: 600;
    color: var(--navy);
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: 1.05rem;
}
.area-card:hover { 
    transform: translateY(-3px); 
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Area Card Links - for service areas page */
.area-card-link {
    display: block;
    text-decoration: none;
}
.area-card-link strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 5px;
}
.area-card-link span {
    display: block;
    color: var(--gray);
    font-size: 0.9rem;
    font-weight: 400;
}
.area-card-link:hover {
    border-left-color: var(--gold-dark);
}

.areas-note {
    text-align: center;
    color: var(--gray);
    font-style: italic;
    font-size: 1rem;
    max-width: 1100px;
    margin: 25px auto 0;
}
.areas-note a {
    color: var(--gold-dark);
    text-decoration: underline;
}

/* ===== VA SAH GRANT PAGE STYLES ===== */

.content-section {
    padding: 70px 24px;
}
.content-section.bg-light {
    background: var(--gray-light);
}
.content-narrow {
    max-width: 850px;
    margin: 0 auto;
}
.content-narrow h2 {
    font-size: 1.85rem;
    color: var(--navy);
    margin-bottom: 25px;
}
.content-narrow h3 {
    font-size: 1.35rem;
    color: var(--navy);
    margin: 35px 0 18px;
}
.content-narrow p {
    color: var(--gray);
    margin-bottom: 18px;
    font-size: 1.1rem;
    line-height: 1.7;
}
.content-narrow strong {
    color: var(--navy);
}
.content-narrow a {
    color: var(--gold-dark);
    text-decoration: underline;
}
.content-narrow a:hover {
    color: var(--gold);
}

/* Areas Grid inside content sections - inherits light bg */
.content-section .areas-grid {
    background: transparent;
}
.content-section .area-card {
    background: var(--white);
    color: var(--navy);
}
.content-section.bg-light .area-card {
    background: var(--white);
    color: var(--navy);
}

/* Highlight Box */
.highlight-box {
    background: var(--navy);
    color: var(--white);
    padding: 35px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 35px 0;
}
.highlight-number {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--gold);
    line-height: 1;
}
.highlight-text {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Eligibility Grid */
.eligibility-grid {
    display: grid;
    gap: 18px;
    margin: 30px 0;
}
.eligibility-item {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: var(--white);
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}
.eligibility-icon {
    color: var(--gold);
    flex-shrink: 0;
}
.eligibility-text strong {
    display: block;
    color: var(--navy);
    margin-bottom: 6px;
    font-size: 1.05rem;
}
.eligibility-text span {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Use Cards */
.use-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin: 30px 0;
}
.use-card {
    background: var(--gray-light);
    padding: 28px;
    border-radius: 8px;
    border-top: 4px solid var(--gold);
}
.use-card h3 {
    font-size: 1.15rem;
    margin: 0 0 12px;
}
.use-card p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Check List */
.check-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    margin: 25px 0;
}
.check-list li {
    padding: 10px 0 10px 30px;
    position: relative;
    color: var(--navy);
    font-size: 1.05rem;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

/* Steps List */
.steps-list {
    margin: 35px 0;
}
.step-item {
    display: flex;
    gap: 25px;
    padding: 30px 0;
    border-bottom: 1px solid #e0e0e0;
}
.step-item:last-child { border-bottom: none; }
.step-num {
    width: 55px;
    height: 55px;
    background: var(--gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.step-content h3 {
    margin: 0 0 10px;
    font-size: 1.25rem;
}
.step-content p {
    margin: 0;
    font-size: 1.05rem;
}

/* Comparison Table */
.comparison-table {
    margin: 30px 0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}
.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--navy);
    color: var(--white);
}
.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid #e0e0e0;
}
.comparison-row:last-child { border-bottom: none; }
.comparison-cell {
    padding: 18px;
    text-align: center;
    font-size: 1rem;
}
.comparison-row .comparison-cell:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--navy);
    background: var(--gray-light);
}
.comparison-cell.highlight {
    color: var(--gold);
    font-weight: 700;
    font-size: 1.15rem;
}

/* FAQ List */
.faq-list {
    margin: 35px 0;
}
.faq-item {
    padding: 28px;
    background: var(--white);
    margin-bottom: 18px;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
}
.faq-item h3 {
    margin: 0 0 12px;
    font-size: 1.15rem;
    color: var(--navy);
}
.faq-item p {
    margin: 0;
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Note text */
.note {
    background: #fff3cd;
    border-left: 4px solid var(--gold);
    padding: 18px 22px;
    margin: 25px 0;
    font-size: 1rem;
    line-height: 1.6;
    border-radius: 0 4px 4px 0;
}

/* ===== RESPONSIVE - TABLET ===== */
@media (max-width: 900px) {
    .container { padding: 0 20px; }
    .logo img { height: 55px; }
    .hero { padding: 140px 20px 60px; }
    .page-hero { padding: 140px 20px 50px; }
    .hero-content { flex-direction: column; text-align: center; gap: 40px; }
    .hero-description { margin: 0 auto 25px; }
    .hero-cta { justify-content: center; }
    .hero-image { max-width: 500px; margin: 0 auto; }
    .stats-inner { flex-wrap: wrap; }
    .stat-item { width: 50%; }
    .process-grid { grid-template-columns: repeat(2, 1fr); }
    .work-inner { flex-direction: column; gap: 40px; }
    .about-inner { flex-direction: column; gap: 40px; }
    .contact-inner { flex-direction: column; gap: 40px; }
    .contact-form { max-width: 100%; }
    .service-features { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .areas-grid { grid-template-columns: repeat(2, 1fr); }
    .use-cards { grid-template-columns: 1fr; }
    .check-list { grid-template-columns: 1fr; }
    .highlight-box { flex-direction: column; text-align: center; }
}

/* ===== RESPONSIVE - MOBILE ===== */
@media (max-width: 600px) {
    .container { padding: 0 16px; }
    .header-inner { padding: 10px 16px; }
    .logo img { height: 50px; }
    nav { 
        display: none; 
        position: absolute; 
        top: 100%; 
        left: 0; 
        right: 0; 
        background: var(--navy); 
        flex-direction: column; 
        padding: 25px 20px; 
        gap: 18px; 
        box-shadow: 0 10px 20px rgba(0,0,0,0.2); 
    }
    nav.active { display: flex; }
    nav a { font-size: 1.2rem; }
    .mobile-menu { display: flex; }
    .hero { padding: 120px 16px 50px; }
    .page-hero { padding: 120px 16px 40px; }
    .page-hero h1 { font-size: 2rem; }
    .hero h1 { font-size: 2rem; }
    .hero-description { font-size: 1.05rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; justify-content: center; }
    .stats-bar { padding: 25px 16px; }
    .stats-inner { flex-direction: row; flex-wrap: wrap; }
    .stat-item { width: 50%; padding: 12px 8px; }
    .stat-number { font-size: 1.8rem; }
    .stat-label { font-size: 0.75rem; }
    .process-section { padding: 50px 16px; }
    .process-grid { grid-template-columns: 1fr; gap: 18px; }
    .work-section { padding: 50px 16px; }
    .about-section { padding: 50px 16px; }
    
    /* Contact Section Mobile */
    .contact-section { padding: 50px 16px; }
    .contact-inner { gap: 30px; }
    .contact-form { 
        padding: 25px 20px; 
        margin: 0 -4px; /* Slight negative margin to use more width */
    }
    .form-row { flex-direction: column; gap: 0; }
    .form-group { margin-bottom: 16px; }
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 12px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    .btn { padding: 14px 20px; }
    .btn-full { width: 100%; }
    
    footer { padding: 40px 16px 20px; }
    .footer-inner { flex-direction: column; text-align: center; gap: 25px; }
    .footer-links { flex-wrap: wrap; justify-content: center; gap: 18px; }
    .services-main { padding: 50px 16px; }
    .services-preview { padding: 50px 16px; }
    .service-block { padding: 40px 0; }
    .content-section { padding: 50px 16px; }
    .cta-section { padding: 50px 16px; }
    .cta-buttons { flex-direction: column; }
    .cta-buttons .btn { width: 100%; justify-content: center; }
    .comparison-table { font-size: 0.85rem; }
    .comparison-cell { padding: 12px 8px; }
    .step-item { gap: 18px; padding: 22px 0; }
    .step-num { width: 45px; height: 45px; font-size: 1.3rem; }
    .areas-grid { grid-template-columns: 1fr; }
}

/* ===== EXTRA SMALL SCREENS ===== */
@media (max-width: 375px) {
    .container { padding: 0 12px; }
    .contact-section { padding: 40px 12px; }
    .contact-form { padding: 20px 16px; }
    .form-group input, 
    .form-group select, 
    .form-group textarea {
        padding: 10px 12px;
    }
    .hero { padding: 110px 12px 40px; }
    .hero h1 { font-size: 1.75rem; }
    .page-hero { padding: 110px 12px 35px; }
    .page-hero h1 { font-size: 1.75rem; }
}