/* ============================================
   Marsh's Collision — Styles
   Palette: Forest Green (#1B4332) + Off-White (#F5F3EE) + Gold Accent (#D4A843)
   ============================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2C2C2C;
    background-color: #F5F3EE;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ---------- Focus ---------- */
:focus-visible {
    outline: 2px solid #D4A843;
    outline-offset: 2px;
}

/* ---------- Skip Link ---------- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #1B4332;
    color: #F5F3EE;
    padding: 0.5rem 1rem;
    border-radius: 0 0 6px 6px;
    z-index: 9999;
    font-weight: 600;
    transition: top 0.2s;
}

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

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1B4332;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.8125rem 1.75rem;
    border-radius: 6px;
    transition: all 0.25s ease;
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #1B4332;
    color: #F5F3EE;
    border-color: #1B4332;
}

.btn-primary:hover {
    background-color: #143527;
    border-color: #143527;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 67, 50, 0.35);
}

.btn-accent {
    background-color: #D4A843;
    color: #1B4332;
    border-color: #D4A843;
}

.btn-accent:hover {
    background-color: #c49a35;
    border-color: #c49a35;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 168, 67, 0.4);
}

.btn-outline {
    background-color: transparent;
    color: #1B4332;
    border-color: #1B4332;
}

.btn-outline:hover {
    background-color: #1B4332;
    color: #F5F3EE;
    transform: translateY(-2px);
}

.btn-outline-light {
    background-color: transparent;
    color: #F5F3EE;
    border-color: rgba(245, 243, 238, 0.6);
}

btn-outline-light:hover {
    background-color: rgba(245, 243, 238, 0.15);
    border-color: #F5F3EE;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ---------- Section Labels ---------- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #D4A843;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.875rem, 4vw, 2.75rem);
    margin-bottom: 1rem;
}

.section-accent {
    color: #D4A843;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: #555;
    max-width: 560px;
    line-height: 1.7;
}

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(245, 243, 238, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.08);
    transition: box-shadow 0.3s ease;
}

.site-header.scrolled {
    box-shadow: 0 2px 20px rgba(27, 67, 50, 0.1);
}

.nav {
    display: flex;
    align-items: center;
    padding: 1rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: #1B4332;
}

.logo-accent {
    color: #D4A843;
}

.logo-text-dark {
    color: #F5F3EE;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-left: auto;
}

.nav-links a {
    padding: 0.5rem 0.875rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2C2C2C;
    border-radius: 6px;
    transition: color 0.2s, background-color 0.2s;
}

.nav-links a:hover {
    color: #1B4332;
    background-color: rgba(27, 67, 50, 0.06);
}

.nav-cta {
    margin-left: 0.75rem;
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    white-space: nowrap;
}

/* ---------- Mobile Nav Toggle ---------- */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    margin-left: auto;
    border-radius: 6px;
    transition: background-color 0.2s;
}

.nav-toggle:hover {
    background-color: rgba(27, 67, 50, 0.06);
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background-color: #1B4332;
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
    width: 22px;
    height: 2px;
    background-color: #1B4332;
    border-radius: 2px;
    transition: transform 0.3s;
}

.hamburger::before {
    top: -7px;
}

.hamburger::after {
    top: 7px;
}

.nav-toggle[aria-expanded="true"] .hamburger {
    background-color: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    transform: rotate(45deg);
    top: 0;
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    transform: rotate(-45deg);
    top: 0;
}

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 6rem;
    background-color: #1B4332;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 168, 67, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(245, 243, 238, 0.05) 0%, transparent 40%);
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.97) 0%, rgba(20, 53, 39, 0.95) 100%);
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: rgba(212, 168, 67, 0.15);
    color: #D4A843;
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: 1px solid rgba(212, 168, 67, 0.3);
    margin-bottom: 1.5rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: #F5F3EE;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-accent {
    color: #D4A843;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(245, 243, 238, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-trust {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(245, 243, 238, 0.8);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-item svg {
    color: #D4A843;
    flex-shrink: 0;
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.hero-img-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-img-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background-color: #D4A843;
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

.hero-stat-card {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background-color: #F5F3EE;
    padding: 1.25rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1B4332;
}

.stat-label {
    font-size: 0.8125rem;
    color: #666;
    font-weight: 500;
}

.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- Services ---------- */
.services {
    padding: 6rem 0;
    background-color: #F5F3EE;
}

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

.section-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(27, 67, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.1);
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 12px;
    color: #1B4332;
    margin-bottom: 1.25rem;
}

.service-card:hover .service-icon {
    background-color: #1B4332;
    color: #F5F3EE;
}

.service-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 0.625rem;
}

.service-desc {
    font-size: 0.9375rem;
    color: #555;
    line-height: 1.65;
}

/* ---------- About ---------- */
.about {
    padding: 6rem 0;
    background-color: #F5F3EE;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(27, 67, 50, 0.12);
}

.about-img-main img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(27, 67, 50, 0.15);
    border: 4px solid #F5F3EE;
}

.about-img-secondary img {
    width: 260px;
    height: 200px;
    object-fit: cover;
}

.about-experience-badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background-color: #1B4332;
    color: #F5F3EE;
    padding: 1rem 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(27, 67, 50, 0.3);
}

.exp-number {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #D4A843;
    line-height: 1;
}

.exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.about-content {
    padding: 1rem 0;
}

.about-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.75rem 0 2rem;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #2C2C2C;
}

.about-feature svg {
    color: #D4A843;
    flex-shrink: 0;
}

.about-content .btn {
    margin-top: 0.5rem;
}

/* ---------- Why Us ---------- */
.why-us {
    padding: 6rem 0;
    background-color: #1B4332;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(212, 168, 67, 0.06) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(245, 243, 238, 0.04) 0%, transparent 40%);
}

.why-us-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 1;
}

.why-us .section-title {
    color: #F5F3EE;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.why-card {
    background-color: rgba(245, 243, 238, 0.06);
    border: 1px solid rgba(245, 243, 238, 0.1);
    border-radius: 12px;
    padding: 2rem;
    transition: background-color 0.3s, transform 0.3s;
}

.why-card:hover {
    background-color: rgba(245, 243, 238, 0.1);
    transform: translateY(-4px);
}

.why-card-number {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(212, 168, 67, 0.3);
    line-height: 1;
    margin-bottom: 0.75rem;
}

.why-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #F5F3EE;
    margin-bottom: 0.625rem;
}

.why-card-desc {
    font-size: 0.9375rem;
    color: rgba(245, 243, 238, 0.65);
    line-height: 1.65;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 5rem 0;
    background-color: #D4A843;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 67, 50, 0.85) 0%, rgba(20, 53, 39, 0.9) 100%);
}

.cta-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-content {
    flex: 1;
    min-width: 280px;
}

.cta-title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: #F5F3EE;
    margin-bottom: 0.75rem;
}

.cta-text {
    font-size: 1.0625rem;
    color: rgba(245, 243, 238, 0.8);
    line-height: 1.7;
    max-width: 520px;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
    padding: 6rem 0;
    background-color: #F5F3EE;
}

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

.testimonial-card {
    background-color: #fff;
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(27, 67, 50, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27, 67, 50, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.25rem;
}

.testimonial-text {
    font-size: 0.9375rem;
    color: #444;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    border-top: 1px solid rgba(27, 67, 50, 0.08);
    padding-top: 1.25rem;
}

.author-avatar {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    color: #1B4332;
    flex-shrink: 0;
}

.author-name {
    display: flex;
    flex-direction: column;
    font-style: normal;
}

.author-name-text {
    font-weight: 600;
    font-size: 0.9375rem;
    color: #1B4332;
}

.author-location {
    font-size: 0.8125rem;
    color: #888;
}

/* ---------- Contact ---------- */
.contact {
    padding: 6rem 0;
    background-color: #fff;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-desc {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 10px;
    color: #1B4332;
    flex-shrink: 0;
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #888;
}

.contact-text a,
.contact-text span {
    font-size: 0.9375rem;
    color: #2C2C2C;
    line-height: 1.6;
}

.contact-text a:hover {
    color: #1B4332;
}

/* ---------- Contact Form ---------- */
.contact-form-wrapper {
    background-color: #F5F3EE;
    border-radius: 16px;
    padding: 2.5rem;
    border: 1px solid rgba(27, 67, 50, 0.08);
}

.form-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 1.5rem;
}

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

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    color: #2C2C2C;
    margin-bottom: 0.375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid rgba(27, 67, 50, 0.15);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    color: #2C2C2C;
    background-color: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1B4332;
    box-shadow: 0 0 0 3px rgba(27, 67, 50, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #aaa;
}

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

.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

.success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27, 67, 50, 0.08);
    border-radius: 50%;
    color: #1B4332;
}

.form-success h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1B4332;
    margin-bottom: 0.5rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: #555;
    margin-bottom: 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
    background-color: #143527;
    color: rgba(245, 243, 238, 0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-top: 1rem;
    max-width: 280px;
}

.footer-heading {
    font-family: 'Inter', sans-serif;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #D4A843;
    margin-bottom: 1.25rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-links a {
    font-size: 0.9375rem;
    color: rgba(245, 243, 238, 0.65);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #F5F3EE;
}

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

.footer-contact-list a {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(245, 243, 238, 0.65);
    transition: color 0.2s;
    line-height: 1.5;
}

.footer-contact-list a:hover {
    color: #F5F3EE;
}

.footer-contact-list svg {
    flex-shrink: 0;
    margin-top: 3px;
    color: #D4A843;
}

.footer-bottom {
    border-top: 1px solid rgba(245, 243, 238, 0.1);
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.copyright {
    font-size: 0.8125rem;
    color: rgba(245, 243, 238, 0.45);
}

.footer-location {
    font-size: 0.8125rem;
    color: rgba(245, 243, 238, 0.45);
}

/* ---------- Animations ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .about-images {
        max-width: 500px;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav-links,
    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-menu.open .nav-links,
    .nav-menu.open .nav-cta {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0.25rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(27, 67, 50, 0.08);
        margin-top: 0.5rem;
    }

    .nav-menu.open .nav-links a {
        padding: 0.75rem 1rem;
    }

    .nav-menu.open .nav-cta {
        justify-content: center;
        margin-left: 0;
    }

    .hero {
        padding: 7rem 0 5rem;
        min-height: auto;
    }

    .hero-title {
        font-size: clamp(1.875rem, 6vw, 2.75rem);
    }

    .hero-img-wrapper img {
        height: 280px;
    }

    .hero-stat-card {
        bottom: -20px;
        left: 10px;
    }

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

    .about-img-secondary {
        right: 0;
        bottom: -30px;
    }

    .about-img-secondary img {
        width: 200px;
        height: 160px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

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

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

    .contact-form-wrapper {
        padding: 1.5rem;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .hero {
        padding: 6rem 0 4rem;
    }

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

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

    .hero-trust {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .about-img-secondary {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
    }

    .cta-actions {
        flex-direction: column;
        width: 100%;
    }

    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
