/* ===== SKIP TO CONTENT ===== */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--green-800);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    font-weight: 700;
    text-decoration: none;
    z-index: 9999;
    transition: top 0.2s;
}

.skip-to-content:focus {
    top: 0;
}

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

:root {
    --green-900: #1a3a1a;
    --green-800: #1e5631;
    --green-700: #2d7a4a;
    --green-600: #3a9d5e;
    --green-500: #48c774;
    --green-100: #e8f5e9;
    --green-50: #f1f8f2;

    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;

    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.1), 0 10px 10px rgba(0,0,0,0.04);

    --radius: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

svg {
    max-width: 100%;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    justify-content: center;
    white-space: nowrap;
}

.btn-primary {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
}

.btn-primary:hover {
    background: var(--green-700);
    border-color: var(--green-700);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--green-800);
}

.btn-secondary:hover {
    background: var(--green-50);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--green-800);
}

.btn-white {
    background: var(--white);
    color: var(--green-800);
    border-color: var(--white);
    font-size: 1.1rem;
}

.btn-white:hover {
    background: var(--green-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-full {
    width: 100%;
}

/* ===== TOP BAR ===== */
.top-bar {
    background: var(--gray-900);
    color: var(--gray-300);
    font-size: 0.85rem;
    padding: 8px 0;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-300);
    transition: color 0.2s;
}

.top-bar-link:hover {
    color: var(--white);
}

.top-bar-link strong {
    color: var(--green-500);
}

.top-bar-link--secondary {
    color: var(--gray-400);
}

.top-bar-social {
    display: flex;
    gap: 12px;
}

.top-bar-social a {
    color: var(--gray-400);
    transition: color 0.2s;
}

.top-bar-social a:hover {
    color: var(--green-500);
}

/* ===== HEADER ===== */
.header {
    background: var(--white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    line-height: 1;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
}

.nav {
    display: flex;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    border-radius: var(--radius);
    transition: all 0.2s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--green-800);
    background: var(--green-50);
}

.header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--gray-900) 100%);
    padding: 100px 0 120px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,96L48,112C96,128,192,160,288,170.7C384,181,480,171,576,144C672,117,768,75,864,74.7C960,75,1056,117,1152,128C1248,139,1344,117,1392,106.7L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"/></svg>') no-repeat bottom;
    background-size: cover;
    opacity: 0.5;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    max-width: 600px;
    flex-shrink: 0;
}

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

.hero-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.3));
}

.hero-badge {
    display: inline-block;
    background: rgba(72, 199, 116, 0.15);
    color: var(--green-500);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(72, 199, 116, 0.25);
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-subtitle strong {
    color: var(--green-500);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.hero-trust-item svg {
    color: var(--green-500);
    flex-shrink: 0;
}

/* ===== STATS ===== */
.stats {
    background: var(--white);
    margin-top: -40px;
    position: relative;
    z-index: 2;
}

.stats-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 24px;
    border-right: 1px solid var(--gray-200);
}

.stat:last-child {
    border-right: none;
}

.stat-icon {
    color: var(--green-700);
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 48px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--green-700);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

/* ===== SERVICES ===== */
.services {
    padding: 60px 0;
    background: var(--gray-50);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.service-card.featured {
    border-color: var(--green-700);
    box-shadow: var(--shadow-lg);
}

.service-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-800);
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon {
    color: var(--green-700);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.service-card > p {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.service-features {
    text-align: left;
    margin-bottom: 24px;
}

.service-features li {
    padding: 6px 0;
    font-size: 0.9rem;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--green-100);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7a4a' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* ===== WHY US ===== */
.why-us {
    padding: 60px 0;
    background: var(--white);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.why-us-content .section-tag {
    text-align: left;
}

.why-us-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.why-us-content > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.why-us-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-us-feature {
    display: flex;
    gap: 16px;
}

.why-us-feature svg {
    color: var(--green-700);
    flex-shrink: 0;
    margin-top: 2px;
}

.why-us-feature strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 4px;
}

.why-us-feature p {
    color: var(--gray-600);
    font-size: 0.9rem;
}

.why-us-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0,0,0,0.15));
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 60px 0;
    background: var(--green-50);
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.stars {
    display: flex;
    gap: 2px;
}

.google-rating span {
    font-weight: 600;
    color: var(--gray-700);
}

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

.testimonial-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow);
}

.stars-small {
    color: #FFC107;
    font-size: 1.2rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.testimonial-card > p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* Review cards (Google Reviews) */
.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--green-700);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-meta {
    flex: 1;
}

.review-meta strong {
    display: block;
    color: var(--gray-900);
    font-size: 0.95rem;
}

.review-time {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.google-icon {
    flex-shrink: 0;
}

.review-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.google-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

/* ===== COVERAGE ===== */
.coverage {
    padding: 60px 0;
    background: var(--white);
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.coverage-item {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.2s;
    font-size: 0.95rem;
}

.coverage-item:hover {
    background: var(--green-800);
    color: var(--white);
    border-color: var(--green-800);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    padding: 60px 0;
}

.cta-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.cta-banner-content h2 {
    font-size: 2rem;
    color: var(--white);
    font-weight: 800;
    margin-bottom: 8px;
}

.cta-banner-content p {
    color: rgba(255,255,255,0.8);
    font-size: 1.05rem;
}

/* ===== QUOTE FORM ===== */
.quote-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.quote-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.quote-info .section-tag {
    text-align: left;
}

.quote-info h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.quote-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
}

.quote-contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.quote-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.quote-contact-item svg {
    color: var(--green-700);
    flex-shrink: 0;
    margin-top: 4px;
}

.quote-contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.quote-contact-item a,
.quote-contact-item span {
    color: var(--gray-800);
    font-weight: 500;
}

.quote-contact-item a:hover {
    color: var(--green-700);
}

.payment-methods {
    padding-top: 24px;
    border-top: 1px solid var(--gray-200);
}

.payment-methods > span {
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
    display: block;
}

.payment-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.payment-logo {
    display: inline-flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.2s;
}

.payment-logo:hover {
    transform: translateY(-1px);
}

.payment-logo svg {
    display: block;
}

/* Form */
.quote-form {
    background: var(--white);
    padding: 36px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    color: var(--gray-800);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--green-700);
    box-shadow: 0 0 0 3px rgba(45, 122, 74, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group textarea {
    resize: vertical;
}

.form-consent {
    margin-top: 16px;
    margin-bottom: 20px;
}

/* ===== FILE UPLOAD ===== */
.label-optional {
    font-weight: 400;
    color: var(--gray-500);
    font-size: 0.85rem;
}

.file-upload {
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    background: var(--gray-50);
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
    overflow: hidden;
}

.file-upload:hover,
.file-upload.drag-over {
    border-color: var(--green-600);
    background: #f0fdf4;
}

.file-input {
    position: absolute;
    inset: 0;
    opacity: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.file-upload-ui {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    gap: 6px;
    text-align: center;
    color: var(--gray-500);
    pointer-events: none;
}

.file-upload-ui svg {
    color: var(--green-600);
    margin-bottom: 4px;
}

.file-upload-ui p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.file-upload-ui span {
    font-size: 0.8rem;
    color: var(--gray-400);
}

.file-preview {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
}

.file-preview img {
    width: 64px;
    height: 64px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid var(--gray-200);
}

.file-preview-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.file-preview-info span {
    font-size: 0.875rem;
    color: var(--gray-700);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.file-remove {
    background: none;
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 1.1rem;
    line-height: 1;
    color: var(--gray-500);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.file-remove:hover {
    background: var(--gray-100);
    color: var(--gray-800);
}

.checkbox-label {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 0.85rem;
    color: var(--gray-600);
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
    margin-top: 3px;
    accent-color: var(--green-700);
}

.checkbox-label a {
    color: var(--green-700);
    text-decoration: underline;
}

/* Form success/error messages */
.form-success {
    background: var(--green-100);
    border: 1px solid var(--green-700);
    color: var(--green-800);
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

.form-success a {
    color: var(--green-800);
    font-weight: 700;
    text-decoration: underline;
}

.form-error {
    background: #fef2f2;
    border: 1px solid #dc2626;
    color: #991b1b;
    padding: 16px 20px;
    border-radius: var(--radius);
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    animation: fadeIn 0.3s ease;
}

.form-error a {
    color: #991b1b;
    font-weight: 700;
    text-decoration: underline;
}

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

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: var(--gray-300);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-logo {
    margin-bottom: 16px;
}

.footer-logo img {
    height: 40px;
    width: auto;
    display: block;
}

.footer-about p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--green-700);
    color: var(--white);
}

.footer-nav h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-nav li {
    margin-bottom: 10px;
}

.footer-nav a {
    font-size: 0.9rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: var(--green-500);
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-contact svg {
    color: var(--green-500);
    flex-shrink: 0;
    margin-top: 3px;
}

.footer-contact a:hover {
    color: var(--green-500);
}

.footer-hours {
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(72, 199, 116, 0.1);
    border-radius: var(--radius);
    font-size: 0.9rem;
}

.footer-hours strong {
    color: var(--green-500);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-500);
}

/* ===== FLOATING CALL BUTTON ===== */
.floating-call {
    display: none;
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--green-800);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.95rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(30, 86, 49, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(30, 86, 49, 0.7); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat:nth-child(2) {
        border-right: none;
    }

    .stat:nth-child(1),
    .stat:nth-child(2) {
        border-bottom: 1px solid var(--gray-200);
    }

    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

    .hero-image {
        display: none;
    }

    .why-us-image {
        display: none;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .cta-banner-inner {
        flex-direction: column;
        text-align: center;
    }
}

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

    .header-inner {
        height: 64px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 16px 24px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--gray-200);
    }

    .nav.open {
        display: flex;
    }

    .nav-link {
        padding: 12px 16px;
        font-size: 1rem;
    }

    .header-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero {
        padding: 60px 0 80px;
    }

    .hero-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-content {
        flex-shrink: 1;
        min-width: 0;
        max-width: 100%;
        width: 100%;
    }

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

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

    .hero-ctas {
        flex-direction: column;
    }

    .hero-ctas .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }

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

    .stat {
        padding: 20px 16px;
    }

    .stat-number {
        font-size: 1.4rem;
    }

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

    .services {
        padding: 48px 0;
    }

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

    .quote-form {
        padding: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-call {
        display: flex;
    }

    .coverage-item {
        padding: 10px 18px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

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

    .stat {
        border-right: none;
        border-bottom: 1px solid var(--gray-200);
    }

    .stat:last-child {
        border-bottom: none;
    }
}

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--green-900) 0%, var(--gray-900) 100%);
    padding: 60px 0;
    color: var(--white);
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.6);
    transition: color 0.2s;
}

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

.breadcrumb span {
    color: var(--green-500);
}

.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
}

/* ===== PAGE CONTENT ===== */
.page-content {
    padding: 60px 0;
}

.page-content h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
}

.page-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.page-content p {
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 20px;
    padding-left: 0;
}

.page-content ul li {
    padding: 6px 0 6px 28px;
    position: relative;
    color: var(--gray-700);
}

.page-content ul li::before {
    content: '';
    width: 20px;
    height: 20px;
    background: var(--green-100);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 8px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232d7a4a' stroke-width='3'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
    background-size: 12px;
    background-position: center;
    background-repeat: no-repeat;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.step {
    text-align: center;
    padding: 32px 24px;
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    position: relative;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--green-800);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    padding: 60px 0;
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    color: var(--gray-900);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

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

.faq-item.open .faq-question::after {
    content: '\2212';
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--gray-600);
    display: none;
    line-height: 1.7;
}

.faq-item.open .faq-answer {
    display: block;
}

/* Page CTA */
.page-cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-900) 100%);
    text-align: center;
    color: var(--white);
}

.page-cta h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 12px;
}

.page-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.page-cta .btn {
    margin: 0 8px;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

/* Branches Grid */
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.branch-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-align: center;
    transition: all 0.2s;
}

.branch-card:hover {
    border-color: var(--green-700);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.branch-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.map-placeholder {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--gray-300);
    color: var(--gray-400);
    margin-top: 24px;
}

.map-embed {
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 24px;
}

/* ===== URGENCY BANNER ===== */
.urgency-banner {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 32px 0;
    color: var(--gray-900);
}

.urgency-banner svg {
    flex-shrink: 0;
}

.urgency-banner strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.urgency-banner p {
    margin: 0;
    color: var(--gray-800);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* ===== INSURANCE GUIDE ===== */
.insurance-guide {
    background: var(--green-50);
    border: 2px solid var(--green-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin: 40px 0;
}

.insurance-guide h3 {
    color: var(--green-800);
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.insurance-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.insurance-step {
    text-align: center;
    position: relative;
}

.insurance-step-num {
    width: 40px;
    height: 40px;
    background: var(--green-800);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 12px;
}

.insurance-step strong {
    display: block;
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.insurance-step p {
    font-size: 0.85rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

.insurance-highlight {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    color: var(--green-800);
}

.insurance-highlight svg {
    flex-shrink: 0;
}

/* ===== WINDSCREEN ZONES ===== */
.zones-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.zones-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
    margin: 40px 0;
}

.zones-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.zones-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.zone-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    border-left: 4px solid transparent;
}

.zone-a { border-left-color: #c0392b; }
.zone-b { border-left-color: #e67e22; }
.zone-c { border-left-color: #f1c40f; }
.zone-d { border-left-color: #27ae60; }

.zone-label {
    font-size: 1.3rem;
    font-weight: 900;
    min-width: 56px;
    color: var(--green-800);
}

.zone-detail > strong {
    display: block;
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--gray-900);
}

.zone-detail p {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.zones-legal {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px 40px;
    border-left: 4px solid var(--green-700);
}

.zones-legal h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--green-800);
    margin-bottom: 16px;
}

.zones-legal p {
    color: var(--gray-700);
    line-height: 1.75;
    margin-bottom: 12px;
}

.zones-legal p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .zones-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .zones-legal {
        padding: 24px 20px;
    }
}

/* ===== STOCK SECTION ===== */
.stock-section {
    background: var(--gray-50);
    padding: 60px 0;
}

.stock-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
}

.stock-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    object-fit: cover;
    max-height: 540px;
}

.stock-content .section-tag {
    display: inline-block;
    margin-bottom: 12px;
}

.stock-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 16px;
    line-height: 1.2;
}

.stock-content > p {
    color: var(--gray-600);
    line-height: 1.75;
    margin-bottom: 24px;
    font-size: 1.05rem;
}

.stock-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.stock-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-800);
    padding-left: 0;
}

.stock-list li::before {
    display: none;
}

.stock-list li svg {
    color: var(--green-600);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .stock-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .stock-content h2 {
        font-size: 1.6rem;
    }
}

/* ===== MID-PAGE CTA ===== */
.mid-cta {
    background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    color: var(--white);
    margin: 40px 0;
}

.mid-cta h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.mid-cta p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 20px;
}

.mid-cta .btn {
    margin: 0 8px;
}

/* ===== GUARANTEE SECTION ===== */
.guarantee-section {
    background: var(--green-50);
    border: 2px solid var(--green-100);
    border-radius: var(--radius-xl);
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}

.guarantee-section h3 {
    color: var(--green-800);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.guarantee-section p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--gray-600);
    line-height: 1.7;
}

/* ===== TRUST BAR ===== */
.trust-bar {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 0;
}

.trust-bar-inner {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray-700);
}

.trust-badge svg {
    color: var(--green-700);
}

/* ===== DECISION HELPER ===== */
.decision-helper {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    margin: 40px 0;
}

.decision-helper h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.decision-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.decision-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: center;
    border: 2px solid var(--gray-200);
    transition: border-color 0.2s;
    min-width: 0;
    box-sizing: border-box;
}

.decision-card:hover {
    border-color: var(--green-700);
}

.decision-card h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.decision-card p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.decision-card .btn {
    width: 100%;
}

@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }

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

    .two-col {
        grid-template-columns: 1fr;
    }

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

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .insurance-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .decision-cards {
        grid-template-columns: 1fr;
    }

    .decision-helper {
        padding: 24px 16px;
    }

    .decision-card {
        padding: 24px 16px;
    }

    .urgency-banner {
        flex-direction: column;
        text-align: center;
    }

    .trust-bar-inner {
        gap: 16px;
    }

    .trust-badge {
        font-size: 0.8rem;
    }

    .insurance-guide {
        padding: 24px;
    }

    .mid-cta {
        padding: 28px 20px;
    }
}

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

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

    .floating-call {
        animation: none;
    }
}
