/* ==========================================================
   HOME.CSS
   Premium Homepage - Lime Brand Theme
========================================================== */

/* Shared Headings */

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 54px;
}

.section-heading p {
    color: var(--lime, #c8f000);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-heading h2 {
    color: #111827;
    font-size: 42px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.section-heading span {
    color: #4b5563;
    font-size: 18px;
    line-height: 1.6;
}

.section-heading.light h2 {
    color: #ffffff;
}

.section-heading.light span {
    color: #cbd5e1;
}

/* Services */

.services-section {
    background: #f8fafc;
    padding: 95px 0;
}

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

.service-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 34px 24px;
    text-align: center;
    box-shadow: 0 14px 34px rgba(15,23,42,.08);
    transition: .25s ease;
}

.service-card:hover {
    transform: translateY(-7px);
    border-color: var(--lime, #c8f000);
}

.service-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050713;
    color: var(--lime, #c8f000);
    font-size: 30px;
}

.service-card h3 {
    color: #111827;
    font-size: 21px;
    margin-bottom: 10px;
}

.service-card p {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.65;
}

/* Why Choose Us */

.why-section {
    background: #101827;
    color: #ffffff;
    padding: 95px 0;
}

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

.why-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 36px 30px;
    text-align: center;
    transition: .25s ease;
}

.why-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200,240,0,.55);
}

.why-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 22px;
    border-radius: 22px;
    background: rgba(200,240,0,.12);
    color: var(--lime, #c8f000);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 34px;
}

.why-card h3 {
    color: #ffffff;
    font-size: 23px;
    margin-bottom: 12px;
}

.why-card p {
    color: #cbd5e1;
    line-height: 1.7;
}

/* Brands */

.brands-section {
    background: #f8fafc;
    color: #111827;
    padding: 90px 0;
}

.brand-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-grid span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 78px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 18px 14px;
    text-align: center;
    font-weight: 900;
    color: #111827;
    box-shadow: 0 12px 26px rgba(15,23,42,.06);
    transition: .25s ease;
}

.brand-grid span:hover {
    transform: translateY(-5px);
    border-color: var(--lime, #c8f000);
}

/* Reviews */

.reviews-section {
    background: #101827;
    color: #ffffff;
    padding: 95px 0;
}

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

.review-card {
    background: rgba(255,255,255,.055);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 22px;
    padding: 34px;
    transition: .25s ease;
}

.review-card:hover {
    transform: translateY(-7px);
    border-color: rgba(200,240,0,.55);
}

.stars {
    color: var(--lime, #c8f000);
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.review-card p {
    color: #e5e7eb;
    line-height: 1.75;
    margin-bottom: 22px;
}

.review-card strong {
    display: block;
    color: #ffffff;
    margin-bottom: 4px;
}

.review-card span {
    color: #94a3b8;
}

/* Service Areas */

.areas-section {
    background: #f8fafc;
    color: #111827;
    padding: 85px 0;
}

.area-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
    max-width: 980px;
    margin: 0 auto;
}

.area-chips span {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 13px 20px;
    font-weight: 800;
    color: #111827;
    box-shadow: 0 10px 24px rgba(15,23,42,.06);
}

/* Final CTA */

.final-cta {
    background:
        linear-gradient(rgba(5,7,19,.70), rgba(5,7,19,.86)),
        url("../images/la-hero-bg.7aaaab540cca.png") center center / cover no-repeat;
    color: #ffffff;
    text-align: center;
    padding: 55px 0;
    margin: 0;
    border-top: 1px solid rgba(200,240,0,.18);
    border-bottom: none;
}

.final-cta .container {
    margin-bottom: 0;
    padding-bottom: 0;
}

.final-cta h2 {
    color: #ffffff;
    font-size: 36px;
    margin: 0 0 12px;
}

.final-cta p {
    color: #cbd5e1;
    font-size: 18px;
    margin: 0 0 28px;
}

.final-cta .hero-buttons {
    margin: 0;
    padding: 0;
}

/* Responsive */

@media (max-width: 1100px) {
    .services-grid,
    .why-grid,
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .brand-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .section-heading h2,
    .final-cta h2 {
        font-size: 34px;
    }

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

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

    .services-section,
    .why-section,
    .brands-section,
    .reviews-section,
    .areas-section {
        padding: 70px 0;
    }

    .final-cta {
        padding: 55px 0;
    }
}

@media (max-width: 480px) {
    .brand-grid {
        grid-template-columns: 1fr;
    }
}
/* 
.hero-specialty{
    display:inline-flex;
    flex-wrap:wrap;
    justify-content:center;
    align-items:center;
    gap:16px;

    margin:35px auto 40px;
    padding:18px 30px;

    background:rgba(0,0,0,.55);
    border:1px solid rgba(200,240,0,.35);
    border-radius:999px;

    backdrop-filter:blur(8px);
}

.hero-specialty-title{
    color:var(--lime);
    font-weight:800;
    font-size:20px;
}

.hero-specialty-divider{
    width:1px;
    height:24px;
    background:rgba(255,255,255,.25);
}

.hero-specialty-text{
    color:#ffffff;
    font-size:16px;
}

@media (max-width:768px){

.hero-specialty{
    display:flex;
    flex-direction:column;
    border-radius:20px;
    padding:22px;
}

.hero-specialty-divider{
    display:none;
}

.hero-specialty-title{
    text-align:center;
}

.hero-specialty-text{
    text-align:center;
}

} */