/* ============================================
   NON-CRITICAL CSS — loaded asynchronously
   Services, Fleet, Areas, Reviews, Corporate,
   Trust, CTA, Footer, Mobile Menu, Responsive
   ============================================ */

/* Services Section */
.services {
    padding: 6rem 2rem;
    background: var(--black-light);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--gray);
    font-size: 1rem;
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black) 100%);
    border: 1px solid rgba(201, 162, 39, 0.1);
    padding: 2.5rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.2);
    border-radius: 50%;
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--gold);
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.7;
}

.service-card-link {
    text-decoration: none;
    display: block;
}

.service-card-link .service-card {
    cursor: pointer;
}

/* Fleet Section */
.fleet {
    padding: 6rem 2rem;
    background: var(--black);
}

.fleet-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.fleet-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border: 1px solid rgba(201, 162, 39, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201, 162, 39, 0.3);
}

.fleet-image {
    height: 220px;
    background: var(--black-lighter);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
    position: relative;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(10, 10, 10, 0.3) 100%);
    pointer-events: none;
}

.fleet-content {
    padding: 2rem;
}

.fleet-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.fleet-card h3 {
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 0.75rem;
}

.fleet-card p {
    color: var(--gray);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.fleet-specs {
    display: flex;
    gap: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.fleet-spec {
    font-size: 0.75rem;
    color: var(--white-dim);
}

.fleet-spec strong {
    color: var(--gold);
}

/* Areas Section */
.areas {
    padding: 6rem 2rem;
    background: var(--black-light);
    position: relative;
}

.areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.areas-content {
    max-width: 1200px;
    margin: 0 auto;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

a.area-item {
    display: block;
    padding: 1.25rem;
    background: rgba(201, 162, 39, 0.03);
    border: 1px solid rgba(201, 162, 39, 0.1);
    text-align: center;
    text-decoration: none;
    transition: var(--transition);
}

a.area-item:hover {
    background: rgba(201, 162, 39, 0.08);
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-3px);
}

.area-item h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--white);
    transition: var(--transition);
}

a.area-item:hover h4 {
    color: var(--gold);
}

.area-item p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.25rem;
}

.area-price {
    display: block;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    font-family: Georgia, 'Times New Roman', 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gold);
}

/* Trust Section */
.trust {
    padding: 6rem 2rem;
    background: var(--black);
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
}

.trust-item {
    text-align: center;
    padding: 1.5rem;
}

.trust-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-icon svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
}

.trust-item h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.trust-item p {
    font-size: 0.75rem;
    color: var(--gray);
    margin-top: 0.5rem;
}

/* CTA Section */
.cta {
    padding: 6rem 2rem;
    background: linear-gradient(145deg, var(--black-light) 0%, var(--black) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201, 162, 39, 0.1) 0%, transparent 60%);
}

.cta-inner {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.cta-contact a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.cta-contact a:hover {
    color: var(--gold-light);
}

/* Footer */
.footer {
    background: var(--black);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-brand h3 span {
    color: var(--gold);
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white-dim);
    font-size: 0.875rem;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--gold);
    flex-shrink: 0;
}

.footer-contact-item a {
    color: var(--white-dim);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact-item a:hover {
    color: var(--gold);
}

.footer-column h4 {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.8rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.8rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--gold);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.98);
    z-index: 999;
    padding: 6rem 2rem 2rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--white);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: var(--transition);
}

.mobile-menu a:hover {
    color: var(--gold);
}

.mobile-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: var(--gold);
    font-size: 2rem;
    cursor: pointer;
}

/* Responsive — below-fold sections */
@media (max-width: 1024px) {
    .services-grid,
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .areas-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-inner {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-inner {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .areas-grid {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

/* Reviews Section */
.reviews {
    padding: 6rem 2rem;
    background: var(--black);
    position: relative;
}

.reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.review-card {
    background: linear-gradient(145deg, var(--black-lighter) 0%, var(--black-light) 100%);
    border: 1px solid rgba(201, 162, 39, 0.1);
    padding: 2rem;
    transition: var(--transition);
}

.review-card:hover {
    border-color: rgba(201, 162, 39, 0.3);
    transform: translateY(-3px);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--gold);
    color: var(--gold);
}

.review-text {
    color: var(--white-dim);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
}

.review-author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.875rem;
}

.review-source {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--gray);
}

.review-source svg {
    width: 16px;
    height: 16px;
}

.review-source.google svg {
    color: #4285F4;
}

.review-source.yelp svg {
    color: #FF1A1A;
}

/* Corporate Logos Section */
.corporate {
    padding: 5rem 2rem;
    background: var(--black-light);
    position: relative;
}

.corporate::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.corporate-inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.corporate-header {
    margin-bottom: 3rem;
}

.corporate-header h2 {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.corporate-header p {
    color: var(--gray);
    font-size: 0.9rem;
}

.corporate-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2rem;
    align-items: center;
}

.corporate-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0.6;
    transition: var(--transition);
}

.corporate-logo:hover {
    opacity: 1;
}

.corporate-logo img {
    max-width: 100%;
    height: auto;
    filter: grayscale(100%) brightness(2);
    transition: var(--transition);
}

.corporate-logo:hover img {
    filter: grayscale(0%) brightness(1);
}

.corporate-logo-text {
    font-family: 'Inter', 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
    line-height: 1.3;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .corporate-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .corporate-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}