    .footer-column ul {
        align-items: center;
    }

    .footer-column ul li {
        width: 100%;
    }

    .footer-column ul li a {
        display: inline-block;
    }

.form-navigation {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
/* Reset and Base Styles - Optimized for Performance */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #001F54;
    --primary-dark: #001640;
    --primary-light: #003366;
    --secondary-color: #001F54;
    --secondary-light: #003366;
    --dark-text: #1a1a1a;
    --light-text: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --success-color: #10b981;
    --accent-color: #4a90e2;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --font-family-base: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* Mobile-First Optimizations */
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

body {
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
    position: relative;
}

/* Images - removed global responsive rules to restore original styling */

/* Improve mobile tap targets */
a, button, input, select, textarea {
    -webkit-tap-highlight-color: rgba(0, 31, 84, 0.1);
    touch-action: manipulation;
}

/* Smooth momentum scrolling on iOS */
* {
    -webkit-overflow-scrolling: touch;
}

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

/* Screen reader only - for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Navigation */
.navbar {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1.5rem 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.mobile-menu-toggle {
    display: none;
}

.mobile-nav {
    display: none;
}

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

.logo-image {
    display: block;
    max-height: 56px;
    width: auto;
}

.logo-image-footer {
    height: auto;
    max-height: 50px;
    width: auto;
}

.logo-icon {
    flex-shrink: 0;
    color: var(--primary-color);
}

.logo-text {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.logo-text sup {
    font-size: 0.6em;
    vertical-align: super;
    font-weight: normal;
}

.logo-tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.logo-footer .logo-icon {
    color: var(--primary-color);
}

.logo-footer .logo-text {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--dark-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-phone {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    white-space: nowrap;
    font-weight: 700;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(0, 31, 84, 0.18);
}

.btn-phone:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(0, 31, 84, 0.22);
}

/* Hero Section */
.hero {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.9) 45%, rgba(255, 255, 255, 0.78) 100%),
        url('assets/images/hero-bg.jpg');
    background-size: cover, cover;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    padding: 2.4rem 0 3.6rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-wrapper-centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.9rem;
    position: relative;
    z-index: 1;
    width: 100%;
    text-align: center;
}

.hero-main-content.centered {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    max-width: 700px;
}

.hero-title-main {
    font-size: clamp(2.35rem, 2vw + 1.4rem, 3.1rem);
    font-weight: 900;
    line-height: 1.2;
    color: #1a1a1a;
}

.hero-value-prop {
    font-size: 1.05rem;
    color: #2b2b2b;
    line-height: 1.7;
    font-weight: 400;
    max-width: 680px;
}

.hero-value-prop em {
    font-style: italic;
    color: var(--primary-color);
}

.hero-value-prop strong {
    font-weight: 800;
    color: var(--primary-color);
}

.hero-form-centered {
    width: 100%;
    max-width: 760px;
}

.form-container-centered {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.35rem 2.25rem;
    box-shadow: 0 26px 60px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(15, 22, 40, 0.05);
}

.form-container-centered .btn-submit-hero-large {
    width: 100%;
    margin-top: 1rem;
}

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

.form-step-header-minimal {
    margin-bottom: 1.25rem;
    text-align: left;
}

.form-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.form-step-subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0.4rem 0 0;
}

.place-autocomplete-element {
    display: block;
    width: 100%;
}

.form-group-address {
    position: relative;
    padding-bottom: 1rem;
}

.address-suggestions {
    list-style: none;
    margin: 0;
    padding: 0;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 12px 24px rgba(15, 22, 40, 0.12);
    max-height: 220px;
    overflow-y: auto;
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 0.35rem);
    z-index: 5;
}

.address-suggestions.visible {
    display: block;
}

.address-suggestions li {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.95rem;
    border-bottom: 1px solid rgba(229, 229, 229, 0.6);
    transition: background 0.2s ease;
}

.address-suggestions li:last-child {
    border-bottom: none;
}

.address-suggestions li:hover,
.address-suggestions li:focus {
    background: rgba(0, 31, 84, 0.08);
    outline: none;
}

.autocomplete-branding {
    margin-top: 0.35rem;
    display: none;
}

.autocomplete-branding.visible {
    display: flex;
    justify-content: flex-end;
    position: absolute;
    right: 0;
    bottom: 0;
}

.autocomplete-branding img {
    width: 120px;
    height: auto;
    object-fit: contain;
}

.form-step[data-step="1"] .form-group-phone {
    grid-column: 1 / -1;
}

.form-consent-centered {
    font-size: 0.68rem;
    line-height: 1.45;
    color: #6c6c6c;
    margin-top: 0.6rem;
}

.hero-visual {
    display: none !important;
}

@media (max-width: 768px) {
    .hero {
        padding: 2.1rem 0 3rem;
    }

    .form-container-centered {
        padding: 2rem 1.6rem;
        border-radius: 22px;
    }

    .hero-title-main {
        font-size: 2.2rem;
    }

    .hero-value-prop {
        font-size: 0.98rem;
    }
}

@media (min-width: 992px) {
    .form-container-centered {
        padding: 2.6rem 2.6rem;
    }

    .form-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.3rem;
    }

    .form-step[data-step="1"] .form-grid-compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .form-step[data-step="1"] .form-group-address {
        grid-column: 1 / -1;
    }

    .form-step[data-step="1"] .form-group-phone {
        grid-column: 1 / -1;
    }
}

.hero-form-card {
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: #1a1a1a;
    border-radius: 26px;
    padding: 2.75rem 2.4rem;
    box-shadow: 0 35px 60px rgba(4, 8, 20, 0.28);
}

.hero-form-centered {
    position: static;
    width: 100%;
    max-width: none;
    margin: 0;
}

.form-container-centered {
    background: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.form-step-header {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 1.5rem;
}

.step-indicator {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.step-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-color);
}

.step-description {
    color: #4a4a4a;
    font-size: 0.95rem;
}

.hero-form-card .btn-submit-hero-large {
    width: 100%;
    margin-top: 1rem;
}

.form-consent-centered {
    font-size: 0.72rem;
    line-height: 1.4;
    color: #7a7a7a;
    margin-top: 1rem;
}

.hero-v2 .btn-cash-offer {
    box-shadow: 0 16px 30px rgba(255, 112, 55, 0.35);
}

.hero-form-card .form-navigation {
    margin-top: 1.75rem;
}

.hero-form-card .btn-secondary {
    border-color: rgba(0, 31, 84, 0.2);
    color: var(--primary-color);
}

.hero-form-card .btn-secondary:hover {
    background: var(--primary-color);
    color: #fff;
}

.hero-form-card .form-grid-compact {
    gap: 1.1rem 1.25rem;
}

.hero-form-card .form-group label {
    color: #0f1730;
}

.hero-form-card .form-group input,
.hero-form-card .form-group select,
.hero-form-card .form-group textarea {
    background: #f6f8fb;
}

.hero-form-card .phone-input-wrapper {
    background: #f6f8fb;
    border-radius: 10px;
}

.hero-form-card .phone-country {
    background: transparent;
}

.hero-form-card .btn-submit-final {
    margin-top: 0;
}

.hero-form-card .form-grid-step-two {
    margin-top: 1.15rem;
}

.hero-form-card .form-step.active + .form-step {
    margin-top: 1.35rem;
}

.hero-form-card #formSuccess {
    text-align: center;
    padding: 2rem 1rem;
}

.hero-form-card #formSuccess h3 {
    color: var(--primary-color);
}

.hero-form-card #formSuccess p {
    color: #4a4a4a;
}

.hero-v2-grid .form-success {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 20px 40px rgba(8, 11, 30, 0.22);
}

.hero-v2 .success-icon {
    background: #ffcf56;
    color: #0d1530;
}

/* Hero Testimonial */
.hero-testimonial-section {
    padding: 3rem 0;
    background: var(--bg-light);
}

.hero-testimonial {
    background: linear-gradient(135deg, #2C5282 0%, #1A365D 100%);
    border-radius: 16px;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-image {
    flex-shrink: 0;
}

.testimonial-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.hero-trust-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border: 2px solid #FFB800;
    padding: 0.6rem 1.3rem;
    border-radius: 50px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    position: relative;
}

.hero-trust-badge-inline::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 20px;
    border-color: transparent transparent transparent #FFD700;
    filter: drop-shadow(-2px 0 4px rgba(255, 215, 0, 0.3));
}

.trust-stars-inline {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.15);
}

.trust-text-inline {
    color: #000;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.trust-source-inline {
    color: #000;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Form Styles */
.hero-form-centered {
    position: relative;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.form-container-centered {
    background:
        linear-gradient(rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.98)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="houses" x="0" y="0" width="300" height="250" patternUnits="userSpaceOnUse"><path d="M30 180L150 80L270 180V260H30V180Z" fill="%23C8D9F0" opacity="0.15"/><rect x="80" y="130" width="30" height="40" fill="%23A8C5E8" opacity="0.15"/><rect x="190" y="130" width="30" height="40" fill="%23A8C5E8" opacity="0.15"/><rect x="120" y="180" width="60" height="80" fill="%23A8C5E8" opacity="0.15"/><path d="M230 240L300 180L370 240V320H230V240Z" fill="%23C8D9F0" opacity="0.15"/><rect x="270" y="190" width="30" height="40" fill="%23A8C5E8" opacity="0.15"/><rect x="300" y="190" width="30" height="40" fill="%23A8C5E8" opacity="0.15"/></pattern></defs><rect width="1200" height="800" fill="url(%23houses)"/></svg>');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 2.75rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 100%;
}

.hero-visual {
    display: none;
}

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

.form-step-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.step-indicator {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--primary-color);
}

.step-title {
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0.4rem 0 0.25rem;
}

.step-description {
    font-size: 0.95rem;
    color: var(--light-text);
    margin: 0 auto;
    max-width: 420px;
}

.form-step {
    display: none;
    animation: formStepFade 0.25s ease;
}

.form-step.active {
    display: block;
}

.form-step:not(.active) {
    pointer-events: none;
}

@keyframes formStepFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.form-grid-compact {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem 1.5rem;
    align-items: start;
}

.form-step[data-step="1"] .form-grid-compact {
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.form-step[data-step="1"] .form-group {
    text-align: center;
    gap: 0.25rem;
    margin: 0;
}

.form-step[data-step="1"] .form-group + .form-group {
    margin-top: 0;
}

.form-step[data-step="1"] .form-group label {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary-color);
}

.form-step[data-step="1"] .form-group input {
    background: #ffffff;
    border: 2px solid #d9deef;
    box-shadow: 0 6px 20px rgba(0, 31, 84, 0.08);
    font-size: 1.05rem;
    padding: 0.85rem 1.2rem;
}

.form-step[data-step="1"] .phone-input-wrapper {
    box-shadow: 0 6px 20px rgba(0, 31, 84, 0.08);
    border-radius: 12px;
    overflow: hidden;
}

.form-step[data-step="1"] .phone-country {
    border-radius: 12px 0 0 12px;
}

.form-step[data-step="1"] .phone-input-wrapper input {
    border-left: none;
    border-radius: 0 12px 12px 0;
    padding: 0.85rem 1.2rem;
}

.form-group-address,
.form-group-phone {
    grid-column: 1 / -1;
    margin: 0;
}

.form-group-address input,
.form-group-phone input {
    width: 100%;
}

.form-group-full {
    grid-column: 1 / -1;
}

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

.form-group label {
    font-weight: 700;
    color: #1a1a1a;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem 1.1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--bg-white);
    width: 100%;
    resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 31, 84, 0.1);
    transform: scale(1.01);
}

.form-group input:hover,
.form-group select:hover {
    border-color: #c0c0c0;
    transform: scale(1.005);
}

.form-group input:active,
.form-group select:active {
    transform: scale(0.99);
}

.form-group input::placeholder {
    color: #999;
}

/* Form Consent */
.form-consent-centered {
    font-size: 0.55rem;
    color: #6c768a;
    line-height: 1.5;
    margin: 0.75rem 0 0;
    text-align: center;
}

.form-consent-centered a {
    color: inherit;
    text-decoration: underline;
}

.form-consent-inline {
    margin-top: 0.75rem;
    margin-bottom: 0;
    color: #8a94a7;
    font-size: 0.58rem;
    line-height: 1.5;
}

/* Core CTA button styling */
.btn-cash-offer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #fff;
    font-weight: 900;
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1.15rem 2.6rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cash-offer:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 36px rgba(255, 107, 53, 0.45);
}

.btn-cash-offer:active {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 107, 53, 0.35);
}

.btn-cash-offer:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.28), 0 12px 28px rgba(255, 107, 53, 0.35);
}

/* Submit Button */
.btn-submit-hero-large {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.6rem 2rem;
    font-size: 1.4rem;
    margin-top: 0.5rem;
}

.form-consent {
    font-size: 0.75rem;
    color: var(--light-text);
    line-height: 1.5;
    margin: 0.5rem 0 0;
}

.btn-submit-hero {
    background: var(--accent-color);
    color: white;
    padding: 1.5rem;
    font-size: 1.2rem;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
}

.btn-submit-hero:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Legacy button styles for other sections */
.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 1.25rem;
    font-size: 1.1rem;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.form-success {
    text-align: center;
    padding: 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--success-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.5rem;
}

.form-success h3 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.form-success p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Small Trust Badges Banner */
.small-trust-badges {
    background: white;
    padding: 0.4rem 0 0.9rem;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-banners-heading {
    text-align: center;
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin: 0 0 0.3rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hp-field {
    position: absolute !important;
    left: -99999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.trust-badges-row-small {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.trust-badges-row-small > * {
    flex: 0 0 auto;
}

.trust-badges-row-small img {
    height: auto;
    width: auto;
    max-height: 86px;
    max-width: 100%;
    object-fit: contain;
}

.trust-badge-link-small {
    transition: transform 0.3s ease;
}

.trust-badge-link-small:hover {
    transform: scale(1.05);
}

.veteran-badge-small {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Trust Badges */
.trust-badges {
    background: var(--primary-color);
    color: white;
    padding: 2rem 0;
}

.trust-badges-review {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.review-image {
    flex-shrink: 0;
}

.review-image img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: block;
    max-width: 100%;
    flex-shrink: 0;
}

.review-content {
    flex: 1;
}

.review-quote {
    color: white;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-style: italic;
}

.review-name {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.review-date {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.badge-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.badge-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
}

.badge-label {
    font-size: 1rem;
    opacity: 0.9;
}

.trust-badges-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 0;
    flex-wrap: wrap;
}

.trust-badge-link {
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
}

.trust-badge-link:hover {
    transform: scale(1.05);
}

.bbb-badge {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    width: 220px;
    height: auto;
}

.google-rating-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.1), rgba(52, 168, 83, 0.1));
    padding: 1rem 1.5rem;
    border-radius: 12px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    min-width: 160px;
}

.google-logo {
    font-family: Arial, sans-serif;
    font-weight: 500;
    letter-spacing: -2px;
}

.star-rating {
    font-size: 20px;
    color: #FFD700;
    letter-spacing: 3px;
    margin-top: 5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.veteran-badge {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.2));
    width: 160px;
    height: auto;
}

@media (max-width: 768px) {
    .trust-badges-row {
        flex-direction: column;
        gap: 2rem;
    }
    
    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Video Section */
.video-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: #000;
}

.video-embed iframe,
.video-embed video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-cta-wrapper {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

/* inherits styling from .btn-cash-offer */

@media (max-width: 768px) {
    .video-cta-wrapper {
        margin-top: 1.5rem;
    }
    
    .btn-video-cta {
        width: 100%;
        text-align: center;
    }
}

/* How It Works */
.how-it-works {
    padding: 6rem 0;
    background: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

.section-header p {
    font-size: 1.25rem;
    color: var(--light-text);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

@media (max-width: 768px) {
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.step-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 16px;
    background: var(--bg-light);
    transition: all 0.3s;
    position: relative;
}

.step-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

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

.step-icon svg {
    width: 56px;
    height: 56px;
    display: block;
    margin: 0 auto;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.step-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Why Us */
.why-us {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.why-us .section-header h2 {
    color: white;
}

.why-us .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

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

.benefit-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.benefit-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    background: white;
}

.benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.benefit-icon svg {
    width: 56px;
    height: 56px;
    display: block;
    margin: 0 auto;
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.benefit-card p {
    color: var(--light-text);
    line-height: 1.8;
}

/* Detailed Benefits */
.detailed-benefits {
    padding: 6rem 0;
    background: var(--bg-white);
}

.detailed-benefit-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.detailed-benefit-row:last-child {
    margin-bottom: 0;
}

.detailed-benefit-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.detailed-benefit-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--light-text);
    line-height: 1.8;
}

.benefit-checklist {
    list-style: none;
    margin-bottom: 2.5rem;
}

.benefit-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--dark-text);
    line-height: 1.6;
}

.check-icon {
    color: var(--success-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-testimonial {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(0, 31, 84, 0.1) 100%);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(0, 31, 84, 0.1);
    display: block;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid rgba(74, 144, 226, 0.3);
}

.testimonial-text {
    flex: 1;
}

.testimonial-quote {
    font-style: italic;
    color: var(--dark-text);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #FFD700;
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.detailed-benefit-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    border-radius: 16px;
}

.detailed-benefit-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    display: block;
}

/* When to Reach Out */
.when-section {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.when-card {
    background: var(--bg-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.when-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.when-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.when-icon svg {
    width: 40px;
    height: 40px;
    display: block;
    margin: 0 auto;
}

.when-card h3 {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 1024px) {
    .when-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .when-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .when-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    background: var(--bg-light);
}

.testimonials-container {
    display: flex;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.google-reviews-embed {
    width: 100%;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    overflow: hidden;
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
}

.stars {
    color: #FFB800;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2rem;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 700;
    color: var(--dark-text);
}

.author-location {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Google Reviews Section */
.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.google-reviews-title {
    display: flex;
    align-items: center;
    gap: 0;
}

.google-reviews-title svg {
    width: 92px;
    height: 30px;
    flex-shrink: 0;
    display: block;
}

.google-excellent-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.excellent-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark-text);
    line-height: 1.2;
    margin: 0;
}

.excellent-subtitle {
    font-size: 0.875rem;
    color: var(--light-text);
    line-height: 1.2;
    margin: 0;
}

.btn-review-google {
    background: #4285F4;
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.btn-review-google:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.4);
    text-decoration: none;
    color: white;
}

.btn-review-google svg {
    flex-shrink: 0;
}

.google-reviews-container {
    width: 100%;
    margin-bottom: 2rem;
}

.google-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    width: 100%;
}

.google-review-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 280px;
    transition: all 0.3s ease;
    width: 100%;
}

.google-review-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: rgba(66, 133, 244, 0.2);
}

@media (max-width: 1024px) {
    .google-reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }
    
    .google-review-card {
        min-height: 260px;
    }
}

@media (max-width: 768px) {
    .google-reviews-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .google-review-card {
        min-height: auto;
    }
}

.review-stars {
    color: #FFB800;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
    line-height: 1.2;
}

.review-text {
    color: var(--dark-text);
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    flex-grow: 1;
    margin-top: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
}

.read-more {
    color: #4285F4;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
    display: inline-block;
    transition: all 0.2s ease;
}

.read-more:hover {
    text-decoration: underline;
    color: #3367D6;
    transform: translateX(2px);
}

.review-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: auto;
}

.author-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.review-author-photo {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
}

.author-avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.author-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    min-width: 0;
}

.author-info .google-logo-small {
    margin-top: 0.25rem;
}

.author-name-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--dark-text);
    font-size: 0.9375rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.verified-check {
    flex-shrink: 0;
}

.google-logo-small {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4285F4;
    color: white;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    font-family: Arial, sans-serif;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.carousel-arrow {
    background: var(--primary-color);
    color: white;
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 10;
}

.carousel-arrow:hover {
    background: var(--primary-dark);
    transform: scale(1.1);
}

.carousel-arrow:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.carousel-arrow svg {
    width: 24px;
    height: 24px;
}

.carousel-pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.pagination-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-dot.active {
    background: var(--primary-color);
    width: 24px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .google-reviews-title {
        width: 100%;
    }
    
    .btn-review-google {
        width: 100%;
        text-align: center;
    }
    
    .carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }
}

/* Comparison Section */
.comparison-section {
    padding: 6rem 0;
    background: var(--primary-color);
}

.comparison-header-small {
    color: #10B981;
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.comparison-section .section-header h2 {
    color: white;
}

.comparison-section .section-header p {
    color: white;
    opacity: 0.9;
}

.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1.5fr;
    gap: 0;
    margin: 3rem auto 0;
    max-width: 1100px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.comparison-row {
    display: contents;
}

.comparison-header-row .comparison-cell {
    padding: 2rem 1.5rem;
    font-weight: 800;
    font-size: 1.1rem;
}

.comparison-cell {
    padding: 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    min-height: 70px;
}

.comparison-label-cell {
    background: var(--primary-color);
    color: white;
    font-weight: 600;
}

.comparison-our-cell {
    background: #D0E7FF;
    color: #001F54;
}

.comparison-their-cell {
    background: var(--primary-color);
    color: white;
}

.our-brand-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.our-brand-icon svg {
    width: 50px;
    height: 50px;
}

.our-brand-text {
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.check-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: #10B981;
}

.x-icon {
    font-size: 1.8rem;
    font-weight: 900;
    color: white;
    background: rgba(239, 68, 68, 0.8);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cell-text {
    font-weight: 600;
    line-height: 1.5;
}

.comparison-footer {
    text-align: center;
    margin-top: 3rem;
}

.comparison-footer-text {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.comparison-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
}

.comparison-stars {
    color: #FFD700;
    font-size: 1.1rem;
    margin-top: 1rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .comparison-table {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: none;
        border-radius: 0;
    }

    .comparison-row {
        display: flex;
        flex-direction: column;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 18px;
        overflow: hidden;
        box-shadow: 0 16px 30px rgba(0, 0, 0, 0.25);
        border: 1px solid rgba(255, 255, 255, 0.08);
    }

    .comparison-row.comparison-header-row {
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.18);
    }

    .comparison-header-row .comparison-cell {
        border: none;
        justify-content: center;
        text-align: center;
        padding: 1.75rem 1.25rem;
    }

    .comparison-row .comparison-cell {
        border: none;
        justify-content: center;
        text-align: center;
        padding: 1.35rem 1.25rem;
    }

    .comparison-label-cell {
        background: rgba(0, 0, 0, 0.25);
        font-size: 1.05rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
    }

    .comparison-our-cell {
        background: #f0f7ff;
        color: #001F54;
        border-top: 1px solid rgba(0, 31, 84, 0.08);
    }

    .comparison-their-cell {
        background: rgba(0, 31, 84, 0.95);
        color: #ffffff;
    }

    .comparison-header-row .comparison-our-cell {
        background: #ffffff;
        color: #001F54;
    }

    .comparison-header-row .comparison-their-cell {
        background: rgba(0, 31, 84, 0.95);
        color: #ffffff;
    }

    .our-brand-box {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .icon-text {
        justify-content: center;
    }

    .comparison-section {
        padding: 4.5rem 0;
    }
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.faq-item h3 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.faq-item p {
    color: var(--light-text);
    line-height: 1.8;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.faq-item-link {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
    border-left: 4px solid var(--primary-color);
}

.faq-item-link:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.faq-item-link h3 {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
}

.faq-item-link h3 a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.faq-item-link h3 a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.faq-item-link p {
    color: var(--light-text);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-item-link {
        padding: 1.25rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.btn-cta {
    font-size: 1.2rem;
    padding: 1.25rem 3rem;
}

.cta-phone {
    margin-top: 1.5rem;
    font-size: 1.1rem;
}

.cta-phone strong {
    font-size: 1.5rem;
}

/* SEO Keywords Section */
.seo-keywords-section {
    padding: 4rem 0;
    background: var(--bg-white);
}

.seo-keywords-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.seo-keywords-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.seo-keywords-list li {
    margin-bottom: 0.5rem;
}

.seo-keywords-list a {
    color: var(--dark-text);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s;
    display: inline-block;
}

.seo-keywords-list a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Footer */
.footer {
    background: white;
    color: var(--primary-color);
    padding: 0;
    border-top: 2px solid var(--border-color);
}

.footer-cta {
    background: #0F2C59;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    width: 100%;
}

.footer-cta h2 {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-cta p {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.footer-cta .btn-cta {
    display: inline-block;
    background: linear-gradient(180deg, #FF8C42 0%, #FF6B00 100%);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 140, 66, 0.3);
    margin-bottom: 1.5rem;
}

.footer-cta .btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 140, 66, 0.4);
}

.footer-cta .footer-phone {
    color: white;
    font-size: 1.1rem;
    margin-top: 1rem;
}

.footer-cta .footer-phone strong {
    font-weight: 600;
}

.footer-content-wrapper {
    padding: 4rem 0 2rem;
}

@media (max-width: 768px) {
    .footer-cta {
        padding: 2.5rem 1.5rem;
    }
    
    .footer-cta h2 {
        font-size: 1.5rem;
    }
    
    .footer-cta p {
        font-size: 1rem;
    }
    
    .footer-cta .btn-cta {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-brand p {
    margin-top: 1rem;
    color: var(--light-text);
}

.footer-column h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary-color);
}

.footer-service-areas {
    width: 100%;
    text-align: center;
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2rem;
}

.footer-service-areas h4 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

.footer-service-areas ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
}

.footer-service-areas ul li {
    margin: 0;
}

.footer-service-areas ul li a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
}

.footer-service-areas ul li a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    gap: 1.5rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--light-text);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--primary-color);
}

/* Map Section for SEO */
.map-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.map-container {
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
    border-radius: 16px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero {
        padding: 4rem 0 3.5rem;
    }

    .hero-v2-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-copy {
        text-align: center;
        align-items: center;
    }

    .hero-trust-line {
        justify-content: center;
    }

    .hero-stat-bar {
        width: 100%;
    }

    .hero-form-card {
        padding: 2rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 3.5rem 0 3rem;
    }

    .hero-top-banner {
        font-size: 0.75rem;
        padding: 0.45rem 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-support {
        font-size: 1rem;
    }

    .hero-stat-bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding: 1.1rem;
    }

    .hero-form-card {
        padding: 1.75rem 1.5rem;
    }

    .step-title {
        font-size: 1.25rem;
    }

    .hero-form-card .form-grid-compact {
        grid-template-columns: 1fr;
    }

    .hero-form-card .phone-input-wrapper {
        grid-template-columns: 110px 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 2rem 0 4rem;
        min-height: auto;
    }

    .hero-wrapper-centered {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hero-main-content.centered {
        text-align: center;
        align-items: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-title-main {
        font-size: 2.5rem;
    }
    
    .hero-value-prop {
        font-size: 1.1rem;
    }

    .hero-testimonial {
        flex-direction: column;
        text-align: center;
        align-items: center;
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    .testimonial-image {
        margin-bottom: 1rem;
    }

    .trust-badges-review {
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 1rem;
    }

    .review-image {
        margin-bottom: 0.5rem;
    }
    
    .review-image img {
        width: 60px;
        height: 60px;
    }

    .form-container-centered {
        padding: 2rem;
    }

    .form-grid-compact {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto;
    }

    .form-group-address {
        grid-column: 1;
        grid-row: 1;
    }

    .form-group-phone {
        grid-column: 1;
        grid-row: 2;
    }

    .form-group-email {
        grid-column: 1;
        grid-row: 3;
    }
    
    .nav-content {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }
    
    .navbar {
        padding: 1rem 0;
    }
    
    .logo {
        order: 1;
        width: 100%;
        justify-content: center;
    }
    
    .logo-image {
        max-height: 48px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        order: 2;
        display: flex;
        flex-direction: column;
        background: none;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        gap: 4px;
        align-self: flex-end;
    }
    
    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: var(--primary-color);
        border-radius: 2px;
        transition: all 0.3s;
    }
    
    .mobile-nav {
        display: block;
        width: 100%;
        background: white;
        border-top: 2px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-out;
        border-radius: 12px;
        order: 4;
    }
    
    .mobile-nav.active {
        max-height: 400px;
    }
    
    .mobile-nav ul {
        list-style: none;
        padding: 1rem 0;
    }
    
    .mobile-nav ul li {
        border-bottom: 1px solid var(--border-color);
    }
    
    .mobile-nav ul li:last-child {
        border-bottom: none;
    }
    
    .mobile-nav a {
        display: block;
        padding: 1rem 1.5rem;
        color: var(--dark-text);
        text-decoration: none;
        font-weight: 500;
    }
    
    .mobile-nav a:hover {
        background: var(--bg-light);
        color: var(--primary-color);
    }
    
    .mobile-phone-link {
        background: var(--primary-color);
        color: white !important;
        text-align: center;
        font-weight: 600;
    }
    
    .btn-phone {
        display: inline-flex;
        order: 3;
        width: 100%;
        justify-content: center;
        font-size: 1rem;
        padding: 0.95rem 1.1rem;
        border-radius: 16px;
        box-shadow: 0 12px 24px rgba(0, 31, 84, 0.18);
    }
    
    .seo-keywords-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .badges-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .detailed-benefit-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .detailed-benefit-row-reverse {
        direction: ltr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        justify-items: center;
        text-align: center;
    }
    
    .footer-service-areas {
        padding: 1.75rem 0;
    }
    
    .footer-service-areas ul {
        gap: 0.75rem 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }

    body {
        font-size: 16px;
    }
    
    h1, h2, h3 {
        line-height: 1.2;
    }
    
    .btn-phone {
        font-size: 0.9rem;
        padding: 0.75rem 1rem;
    }

    .sticky-banner {
        display: none !important;
    }

    .section-header {
        text-align: center;
    }

    .section-header p {
        margin-left: auto;
        margin-right: auto;
    }

    .when-grid {
        gap: 1.2rem;
    }

    .comparison-section {
        padding: 4rem 0;
    }

    .comparison-table {
        display: block;
        overflow-x: auto;
        border-radius: 18px;
        box-shadow: none;
    }

    .comparison-row {
        display: grid;
        grid-template-columns: 1fr;
        margin-bottom: 1rem;
    }

    .comparison-header-row .comparison-cell {
        padding: 1.5rem 1.25rem;
        font-size: 1rem;
    }

    .comparison-cell {
        justify-content: center;
        text-align: center;
        padding: 1.25rem 1rem;
    }

    .comparison-label-cell {
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .comparison-row .comparison-our-cell {
        background: #ffffff;
        color: var(--primary-color);
    }

    .comparison-row .comparison-their-cell {
        background: #0f2a5a;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 1.5rem 0 3rem;
    }

    .hero-title-main {
        font-size: 2rem;
        line-height: 1.1;
    }
    
    .hero-value-prop {
        font-size: 1rem;
        line-height: 1.5;
    }

    .hero-trust-badge-inline {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }
    
    .form-container-centered {
        padding: 1.5rem;
    }

    .btn-submit-hero-large {
        font-size: 1.1rem;
        padding: 1.25rem;
    }
    
    .badge-number {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .btn {
        min-height: 48px;
    }
    
    input, select, textarea {
        font-size: 16px;
        min-height: 48px;
    }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
    }
    
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .step-card,
    .benefit-card,
    .when-card {
        padding: 1.5rem;
    }
    
    .detailed-benefits {
        padding: 3rem 0;
    }
    
    .detailed-benefit-row {
        margin-bottom: 4rem;
    }
    
    .detailed-benefit-content h3 {
        font-size: 1.5rem;
    }
    
    .comparison-table,
    .comparison-row {
        font-size: 0.9rem;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .trust-badges-row-small {
        padding: 0.85rem 0;
        gap: 0.8rem;
        flex-wrap: nowrap;
    }

    .trust-badges-row-small img {
        max-height: 64px;
    }
}

/* Extra narrow viewports (very thin windows or small phones in landscape) */
@media (max-width: 375px) {
    .hero-title-main {
        font-size: 1.75rem !important;
    }
    
    .hero-value-prop {
        font-size: 0.95rem;
    }
    
    .form-container-centered {
        padding: 1rem;
    }
    
    .hero-wrapper-centered {
        gap: 1.5rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .form-consent-centered {
        font-size: 0.45rem !important;
        line-height: 1.3;
    }
    
    .btn-submit-hero-large {
        font-size: 1rem;
        padding: 1rem;
    }

    .trust-badges-row-small {
        gap: 0.65rem;
    }

    .trust-badges-row-small img {
        max-height: 58px;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 52px;
        -webkit-tap-highlight-color: rgba(0, 31, 84, 0.1);
    }
    
    a, button {
        -webkit-tap-highlight-color: rgba(0, 31, 84, 0.1);
    }
    
    .benefit-card:hover,
    .step-card:hover,
    .when-card:hover {
        transform: none;
    }
    
    .nav-links a {
        padding: 0.75rem 0;
        display: block;
    }
}

/* Form Validation Styles */
input:invalid:not(:placeholder-shown),
select:invalid:not(:placeholder-shown) {
    border-color: #ef4444;
}

input:valid:not(:placeholder-shown),
select:valid:not(:placeholder-shown) {
    border-color: var(--success-color);
}

input.error,
select.error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 31, 84, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 31, 84, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-1px);
}

/* Sticky CTA Banner */
.sticky-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    z-index: 999;
    transform: translateY(-100%);
    transition: transform 0.3s ease-in-out;
}

.sticky-banner.visible {
    transform: translateY(0);
}

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

.sticky-banner-text {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0;
}

.btn-sticky-banner {
    padding: 0.9rem 2.2rem;
    font-size: 1rem;
    white-space: nowrap;
}

.sticky-banner-close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.sticky-banner-close:hover {
    opacity: 0.7;
}

/* Exit Intent Popup */
.exit-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.exit-popup.visible {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: white;
    border-radius: 16px;
    padding: 3rem 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.exit-popup.visible .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--light-text);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.exit-popup-close:hover {
    color: var(--dark-text);
    transform: rotate(90deg);
}

.exit-popup-content h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: center;
}

.exit-popup-content > p {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 2rem;
}

.exit-popup-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.exit-popup-form input {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.exit-popup-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-exit-popup {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.exit-popup-disclaimer {
    font-size: 0.85rem;
    color: var(--light-text);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 0;
}

.hidden {
    display: none !important;
}

/* Mobile Responsive for Sticky Elements */
@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 6.5rem;
        right: 1.5rem;
        width: 50px;
        height: 50px;
    }
    
    .sticky-banner-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .sticky-banner-text {
        font-size: 1rem;
        text-align: center;
    }
    
    .btn-sticky-banner {
        width: 100%;
        text-align: center;
    }
    
    .exit-popup-content {
        padding: 2rem 1.5rem;
        width: 95%;
    }
    
    .exit-popup-content h3 {
        font-size: 1.5rem;
    }
}

.local-page {
    background: #f4f7fb;
    color: #0f2439;
    font-family: var(--font-family-base);
}

.local-hero {
    background: linear-gradient(140deg, rgba(0, 31, 84, 0.92), rgba(0, 122, 204, 0.85)), url('/assets/images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 5rem 0 4rem;
    color: #ffffff;
}

.local-hero .local-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.16);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.local-hero h1 {
    font-size: clamp(2.4rem, 4vw, 3.2rem);
    margin: 1.5rem 0 1rem;
    font-weight: 800;
}

.local-hero p {
    font-size: 1.15rem;
    max-width: 660px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
}

.local-hero .btn {
    margin-top: 1.75rem;
    padding: 1.1rem 2.8rem;
    font-size: 1.1rem;
}

.local-section {
    padding: 4.5rem 0;
}

.local-section.alt {
    background: #ffffff;
}

.local-section h2 {
    font-size: clamp(2rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
    font-weight: 800;
    color: #001f54;
    text-align: center;
}

.local-section p.section-lead {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3rem;
    font-size: 1.05rem;
    color: #4a5a70;
    line-height: 1.7;
}

.local-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.75rem;
}

.local-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 1.75rem;
    box-shadow: 0 18px 40px rgba(15, 34, 58, 0.12);
    border: 1px solid rgba(15, 34, 58, 0.06);
}

.local-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.9rem;
    color: #001f54;
}

.local-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.local-card ul li {
    padding-left: 1.4rem;
    position: relative;
    margin-bottom: 0.6rem;
    font-size: 0.98rem;
    color: #3c4960;
}

.local-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 700;
}

.local-cta-box {
    background: linear-gradient(120deg, #ff7a1a, #ff954f);
    color: white;
    border-radius: 22px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 24px 45px rgba(255, 122, 26, 0.28);
}

.local-cta-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.local-cta-box p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.local-faq {
    max-width: 880px;
    margin: 0 auto;
}

.local-faq details {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.15rem 1.4rem;
    margin-bottom: 1rem;
    box-shadow: 0 10px 26px rgba(15, 34, 58, 0.1);
    border: 1px solid rgba(15, 34, 58, 0.06);
}

.local-faq summary {
    font-weight: 700;
    cursor: pointer;
    font-size: 1.05rem;
    color: #001f54;
}

.local-faq p {
    margin-top: 0.9rem;
    font-size: 0.97rem;
    color: #3c4960;
    line-height: 1.6;
}

@media (max-width: 640px) {
    .local-hero {
        padding: 4rem 0 3rem;
        text-align: center;
    }

    .local-hero .local-eyebrow {
        margin: 0 auto;
    }

    .local-hero p {
        margin: 0 auto;
    }

    .local-cta-box h3 {
        font-size: 1.7rem;
    }

    .local-card {
        padding: 1.5rem;
    }
}

/* Problem Resource Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.problem-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(15, 34, 58, 0.08);
    box-shadow: 0 12px 28px rgba(15, 34, 58, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.problem-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #001f54;
}

.problem-card p {
    font-size: 0.97rem;
    color: #3c4960;
    line-height: 1.6;
}

.problem-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    color: #4a5a70;
}

.problem-card ul li {
    padding-left: 1.35rem;
    position: relative;
    font-size: 0.93rem;
}

.problem-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: 700;
}

.problem-card .btn-problem {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.25rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 100%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.problem-card .btn-problem:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(255, 108, 53, 0.3);
}

.problem-card .btn-problem:focus {
    outline: 3px solid rgba(255, 108, 53, 0.35);
}

/* Blog Styles */
.blog-header {
    background: linear-gradient(135deg, #001F54 0%, #003366 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.blog-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.blog-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-posts-section {
    padding: 4rem 0;
    background: var(--bg-light);
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.blog-post-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-post-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.blog-post-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-post-card:hover .blog-post-image img {
    transform: scale(1.05);
}

.blog-post-content {
    padding: 1.5rem;
}

.blog-post-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.blog-post-date {
    color: var(--light-text);
}

.blog-post-category {
    color: var(--primary-color);
    font-weight: 600;
}

.blog-post-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-post-title a {
    color: var(--dark-text);
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-title a:hover {
    color: var(--primary-color);
}

.blog-post-excerpt {
    color: var(--light-text);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-post-read-more {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-post-read-more:hover {
    color: var(--primary-dark);
}

/* Blog Article Styles */
.blog-article {
    padding: 2rem 0 4rem;
}

.blog-article-header {
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.blog-article-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.blog-back-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.blog-back-link:hover {
    color: var(--primary-dark);
}

.blog-article-date,
.blog-article-category {
    color: var(--light-text);
    font-size: 0.9rem;
}

.blog-article-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.blog-article-subtitle {
    font-size: 1.2rem;
    color: var(--light-text);
    line-height: 1.6;
}

.blog-article-image {
    max-width: 1000px;
    margin: 0 auto 3rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.blog-article-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-article-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-text);
}

.blog-lead {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.blog-highlights-box {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.05) 0%, rgba(0, 122, 204, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
    padding: 2rem;
    margin: 2.5rem 0;
    box-shadow: 0 4px 12px rgba(0, 31, 84, 0.08);
}

.blog-highlights-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    margin-top: 0;
}

.blog-highlights-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.blog-highlights-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem;
    background: white;
    border-radius: 8px;
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark-text);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-highlights-list li:hover {
    transform: translateX(4px);
    box-shadow: 0 2px 8px rgba(0, 31, 84, 0.1);
}

.blog-highlights-list li strong {
    color: var(--primary-color);
    font-weight: 700;
}

.blog-article-reading-time {
    color: var(--light-text);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.blog-article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0 2rem;
    justify-content: center;
}

.blog-tag {
    background: linear-gradient(135deg, rgba(0, 31, 84, 0.1) 0%, rgba(0, 122, 204, 0.1) 100%);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 31, 84, 0.2);
    transition: all 0.2s ease;
}

.blog-tag:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 31, 84, 0.2);
}

.blog-image-inline {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.blog-image-inline img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

.blog-related-articles {
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.blog-related-articles h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.blog-related-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid var(--border-color);
}

.blog-related-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.blog-related-card a {
    text-decoration: none;
    color: inherit;
}

.blog-related-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.blog-related-card p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.blog-article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.blog-article-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.blog-article-content p {
    margin-bottom: 1.5rem;
}

.blog-article-content ul,
.blog-article-content ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-article-content li {
    margin-bottom: 0.5rem;
}

.blog-article-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.blog-article-content a:hover {
    color: var(--primary-dark);
}

.blog-article-cta {
    background: linear-gradient(135deg, #001F54 0%, #003366 100%);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.blog-article-cta h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.blog-article-cta p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.blog-article-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    flex-wrap: wrap;
    gap: 1rem;
}

.blog-nav-link {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease;
}

.blog-nav-link:hover {
    color: var(--primary-dark);
}

.nav-links a.active {
    color: var(--primary-color);
    font-weight: 700;
}

/* Blog Author Box */
.blog-author-box {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 16px;
    margin: 3rem 0;
    border: 1px solid var(--border-color);
}

.blog-author-avatar {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.blog-author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author-info h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.blog-author-title {
    font-size: 0.95rem;
    color: var(--light-text);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.blog-author-bio {
    font-size: 0.95rem;
    color: var(--dark-text);
    line-height: 1.6;
}

/* Blog Inline Images */
.blog-image-inline {
    margin: 2.5rem 0;
    text-align: center;
}

.blog-image-inline img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    margin-bottom: 1rem;
}

.blog-image-caption {
    font-size: 0.9rem;
    color: var(--light-text);
    font-style: italic;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .blog-header h1 {
        font-size: 2rem;
    }
    
    .blog-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-article-title {
        font-size: 2rem;
    }
    
    .blog-article-content {
        font-size: 1rem;
    }
    
    .blog-article-navigation {
        flex-direction: column;
    }
    
    .blog-author-box {
        flex-direction: column;
        text-align: center;
    }
    
    .blog-author-avatar {
        margin: 0 auto;
    }
}

/* Chatbot Widget Styles */
.chatbot-widget {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
    font-family: var(--font-family);
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001F54 0%, #003d7a 100%);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 31, 84, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(0, 31, 84, 0.4);
}

.chatbot-icon {
    font-size: 28px;
    line-height: 1;
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #10B981;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    left: 0;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.3s ease;
}

@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .chatbot-window {
        position: fixed;
        bottom: 90px;
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
        height: auto;
        max-height: calc(100vh - 110px);
        min-height: 400px;
        top: auto;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
    }
    
    .chatbot-icon {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 10px;
        left: 10px;
        right: 10px;
    }
    
    .chatbot-window {
        bottom: 80px;
        left: 10px;
        right: 10px;
        max-height: calc(100vh - 100px);
        border-radius: 16px;
    }
    
    .chatbot-header {
        border-radius: 16px 16px 0 0;
        padding: 0.875rem 1rem;
    }
    
    .chatbot-form-container {
        border-radius: 0 0 16px 16px;
    }
}

.chatbot-widget.active .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chatbot-header {
    background: linear-gradient(135deg, #001F54 0%, #003d7a 100%);
    color: white;
    padding: 1rem 1.25rem;
    border-radius: 20px 20px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.chatbot-header h4 {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
}

.chatbot-status {
    margin: 0;
    font-size: 0.75rem;
    opacity: 0.9;
}

.chatbot-minimize {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.chatbot-minimize:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.25rem;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chatbot-message {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

.chatbot-message-bot {
    justify-content: flex-start;
}

.chatbot-message-user {
    justify-content: flex-end;
}

.chatbot-message-content {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 18px;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.chatbot-message-bot .chatbot-message-content {
    background: white;
    color: var(--dark-text);
}

.chatbot-message-user .chatbot-message-content {
    background: linear-gradient(135deg, #001F54 0%, #003d7a 100%);
    color: white;
}

.chatbot-message-content p {
    margin: 0.25rem 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

.chatbot-message-content p:first-child {
    margin-top: 0;
}

.chatbot-message-content p:last-child {
    margin-bottom: 0;
}

.chatbot-input-container {
    padding: 1rem 1.25rem;
    background: white;
    border-top: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
}

.chatbot-input {
    flex: 1;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 25px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    transition: border-color 0.2s ease;
}

.chatbot-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 84, 0.1);
}

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #001F54 0%, #003d7a 100%);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.chatbot-send-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 31, 84, 0.3);
}

.chatbot-typing-indicator {
    position: absolute;
    bottom: 100%;
    left: 1.25rem;
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 18px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 4px;
    margin-bottom: 0.5rem;
}

.chatbot-typing-indicator span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #001F54;
    animation: typing 1.4s infinite;
}

.chatbot-typing-indicator span:nth-child(2) {
    animation-delay: 0.2s;
}

.chatbot-typing-indicator span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        transform: translateY(0);
        opacity: 0.7;
    }
    30% {
        transform: translateY(-10px);
        opacity: 1;
    }
}

.chatbot-form-container {
    padding: 1.25rem;
    background: white;
    border-top: 1px solid #e5e5e5;
    border-radius: 0 0 20px 20px;
    max-height: 400px;
    overflow-y: auto;
}

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

.chatbot-form-step {
    display: none;
}

.chatbot-form-step.active {
    display: block;
}

.chatbot-form-step-header {
    margin-bottom: 1.25rem;
    text-align: center;
}

.chatbot-form-step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-text);
    margin: 0 0 0.5rem 0;
}

.chatbot-form-step-subtitle {
    font-size: 0.9rem;
    color: var(--light-text);
    margin: 0;
}

.chatbot-form-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.chatbot-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.chatbot-form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.chatbot-form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    transition: border-color 0.2s ease;
}

.chatbot-form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 84, 0.1);
}

.chatbot-form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    background-color: white;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none;
    background-image: 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='%23001F54' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.chatbot-form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 84, 0.1);
}

.chatbot-form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    font-size: 0.9rem;
    font-family: var(--font-family);
    resize: vertical;
    min-height: 80px;
    transition: border-color 0.2s ease;
}

.chatbot-form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 31, 84, 0.1);
}

.chatbot-form-group-full {
    grid-column: 1 / -1;
}

.chatbot-submit-btn {
    background: linear-gradient(135deg, #001F54 0%, #003d7a 100%);
    color: white;
    border: none;
    padding: 0.875rem 1.5rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.chatbot-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 31, 84, 0.3);
}

.chatbot-submit-btn:active {
    transform: translateY(0);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 15px;
        left: 15px;
        right: 15px;
    }
    
    .chatbot-window {
        position: fixed;
        bottom: 85px;
        left: 15px;
        right: 15px;
        width: auto;
        max-width: none;
        height: auto;
        max-height: calc(100vh - 100px);
        min-height: 400px;
        top: auto;
    }
    
    .chatbot-toggle {
        width: 56px;
        height: 56px;
    }
}
