/**
 * HomePage Specific Styles
 */

/* ===== HERO VIDEO SECTION ===== */
#bbb-hero {
    position: relative;
    height: 600px;
    max-height: 80vh;
    color: var(--white);
    background: #000;
    overflow: hidden;
}

.bg {
    position: absolute;
    inset: 0;
}

#bbb-hero video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    filter: brightness(0.80) saturate(1.05) blur(3px);
    display: block;
    pointer-events: none;
}

.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.30), rgba(0,0,0,.18) 40%, rgba(0,0,0,.40));
}

.inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0 16px;
}

#bbb-hero h1 {
    margin: 0 0 0.5rem;
    font-weight: 800;
    letter-spacing: 0.2px;
    font-size: clamp(26px, 5vw, 56px);
    line-height: 1.08;
}

#bbb-hero .sep {
    padding: 0 0.35rem;
}

.only-mobile-break {
    display: none;
}

.hero-tagline {
    margin: 0 0 1rem;
    font-size: clamp(14px, 2.2vw, 18px);
    color: #ededed;
}

.ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.badges {
    margin-top: 0.9rem;
    font-size: 13.5px;
    color: #d5d5d5;
}

/* ===== REVIEWS SECTION ===== */
.bbb-reviews {
    margin: 0;
    padding: 40px 0;
    background: var(--white);
}

.bbb-title {
    font-weight: 600;
    margin: 20px 0;
    font-size: 24px;
    text-align: center;
}

.bbb-marquee {
    overflow: hidden;
    position: relative;
}

.bbb-track {
    display: flex;
    gap: 12px;
    width: max-content;
    will-change: transform;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 80px 20px;
    background: var(--cream);
}

.services-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-cta {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 15px;
}

.service-cta a {
    color: var(--brand);
    text-decoration: none;
}

.service-cta a:hover {
    color: var(--brand-dark);
    text-decoration: underline;
}

/* ===== LOCATION SECTION ===== */
.location-section {
    padding: 80px 20px;
    background: var(--dark);
}

.location-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.location-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.location-text {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--white);
}

.location-link {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

.location-link:hover {
    text-decoration: underline;
}

.location-map {
    background: var(--light-gray);
    border-radius: 12px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--white);
    color: var(--dark);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-content {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.footer-contact {
    color: var(--brand);
    text-decoration: none;
    font-weight: 600;
}

.footer-contact:hover {
    color: var(--brand-dark);
}

.footer-bottom {
    border-top: 1px solid #ccc;
    padding-top: 20px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
}

.copyright-footer {
    background: var(--black);
    color: var(--white);
    padding: 20px;
    text-align: center;
    width: 100%;
    font-size: 14px;
}

.copyright-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
    #bbb-hero {
        height: 500px;
    }

    #bbb-hero video {
        object-position: 50% 46%;
        filter: brightness(0.82) saturate(1.05) blur(3px);
    }

    #bbb-hero h1 {
        font-size: clamp(24px, 5.2vw, 48px);
    }
}

@media (max-width: 768px) {
    .location-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 600px;
    }

    .services-section {
        padding: 60px 20px;
    }

    .location-section {
        padding: 60px 20px;
    }
}

@media (max-width: 600px) {
    #bbb-hero {
        height: 450px;
    }

    #bbb-hero video {
        object-position: 50% 44%;
        filter: brightness(0.84) saturate(1.05) blur(3px);
    }

    #bbb-hero h1 {
        margin-bottom: 0.35rem;
        font-size: clamp(22px, 6.2vw, 28px);
        line-height: 1.06;
    }

    #bbb-hero .sep {
        display: none;
    }

    .only-mobile-break {
        display: block;
    }

    .hero-tagline,
    .badges {
        display: none;
    }

    .ctas {
        gap: 0.35rem;
        max-width: 340px;
        margin-inline: auto;
    }

    .ctas a:first-child {
        display: block;
        width: 100%;
        max-width: 340px;
        padding: 0.64rem 0.9rem;
        font-size: 1rem;
    }

    .ctas a:not(:first-child) {
        padding: 0.44rem 0.66rem;
        font-size: 0.85rem;
        border-radius: 999px;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}
