/* =============================================================
   BWD Services — home.css  (index page only)
   Font: Inter (matches service pages)
   ============================================================= */

/* ===== HERO ===== */

.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url("/images/IMG_1267.jpeg") center/cover no-repeat;
    animation: heroZoom 14s ease-out forwards;
}

@keyframes heroZoom {
    from { transform: scale(1.04); }
    to   { transform: scale(1.00); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10,10,10,0.84) 0%,
        rgba(10,10,10,0.56) 52%,
        rgba(10,10,10,0.18) 100%
    );
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 8%;
}

.hero-container .home-inner {
    /* inherits max-width: 1400px; margin: 0 auto from home-inner */
}

.hero-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 18px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.1s forwards;
}

.hero h1 {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 22px;
    max-width: 900px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.25s forwards;
}

.hero-sub {
    font-size: 19px;
    color: rgba(255,255,255,0.72);
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 36px;
    display: block;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.4s forwards;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.55s forwards;
}

.btn--primary {
    background: var(--orange);
    color: var(--white);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
}

.btn--primary:hover {
    background: #cf4908;
    transform: translateY(-2px);
}

.btn--ghost {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.38);
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s, background 0.2s;
}

.btn--ghost:hover {
    border-color: rgba(255,255,255,0.75);
    background: rgba(255,255,255,0.07);
}

.btn--white {
    background: var(--white);
    color: var(--orange);
    padding: 15px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s, transform 0.2s;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn--white:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 17px 38px;
    font-size: 17px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.6s ease 0.7s forwards;
}

.htrust-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    color: rgba(255,255,255,0.52);
    font-weight: 600;
}

.htrust-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--orange);
    display: inline-block;
    flex-shrink: 0;
}

.htrust-div {
    width: 1px;
    height: 13px;
    background: rgba(255,255,255,0.2);
    display: inline-block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ===== SHARED SECTION STRUCTURE ===== */

.home-section {
    padding: 100px 8%;
}

.home-section--white { background: var(--white); }
.home-section--gray  { background: var(--gray); }

.home-section--dark {
    background: var(--dark);
}

.home-inner {
    max-width: 1400px;
    margin: 0 auto;
}

.home-inner--narrow {
    max-width: 1100px;
}

.home-section-header {
    margin-bottom: 52px;
}

.home-eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
    display: block;
}

.home-eyebrow--light {
    opacity: 0.85;
}

.home-section-header h2,
.home-section h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 0;
}

.home-section--dark .home-section-header h2,
.home-section--dark h2 {
    color: var(--white);
}

.home-section-sub {
    font-size: 17px;
    color: #666;
    line-height: 1.65;
    max-width: 580px;
    margin-top: 14px;
    display: block;
}

.home-footnote {
    text-align: center;
    font-size: 13px;
    color: #aaa;
    margin-top: 8px;
}

.home-footnote strong { color: #888; }

/* ===== GET A PRICE ===== */

.gp-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.gp-card {
    background: var(--gray);
    border-radius: 16px;
    padding: 32px 28px;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s, background 0.22s;
}

.gp-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    background: var(--white);
    box-shadow: 0 10px 36px rgba(0,0,0,0.08);
}

.gp-card--featured {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.gp-card--featured:hover {
    border-color: var(--orange);
    background: #1a1a1a;
    box-shadow: 0 14px 44px rgba(0,0,0,0.3);
}

.gp-card-icon {
    font-size: 28px;
    line-height: 1;
    margin-bottom: 2px;
}

.gp-badge {
    background: var(--orange);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 2px;
    display: inline-block;
    width: fit-content;
}

.gp-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
    margin: 0;
    line-height: 1.2;
}

.gp-card--featured h3 { color: var(--white); }

.gp-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin: 0;
}

.gp-card--featured p { color: rgba(255,255,255,0.6); }

.gp-cta {
    font-size: 13px;
    font-weight: 700;
    color: var(--orange);
    display: block;
    margin-top: 4px;
}

/* ===== SERVICES GRID ===== */

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.svc-tile {
    background: var(--gray);
    border-radius: 16px;
    padding: 28px 24px;
    border: 2px solid transparent;
    text-decoration: none;
    color: var(--dark);
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: border-color 0.22s, transform 0.22s;
}

.svc-tile:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

.svc-tile--wide { grid-column: span 2; }

.svc-tile--all {
    border: 2px dashed var(--light-gray);
    background: transparent;
    align-items: center;
}

.svc-tile--all:hover {
    border-color: var(--orange);
    border-style: solid;
    background: var(--gray);
}

.svc-tile-icon {
    font-size: 26px;
    flex-shrink: 0;
    margin-top: 2px;
}

.svc-tile-body { flex: 1; }

.svc-tile-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
}

.svc-tile-body p {
    font-size: 14px;
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.svc-tile--all .svc-tile-body h3 { color: #999; }
.svc-tile--all:hover .svc-tile-body h3 { color: var(--orange); }
.svc-tile--all .svc-tile-body p { color: #bbb; }

.svc-tile-arrow {
    font-size: 18px;
    color: var(--light-gray);
    flex-shrink: 0;
    align-self: center;
    transition: color 0.2s, transform 0.2s;
}

.svc-tile:hover .svc-tile-arrow {
    color: var(--orange);
    transform: translateX(4px);
}

/* ===== WHY BWD ===== */

.why-layout {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 100px;
    align-items: start;
}

.why-left { position: sticky; top: 100px; }

.why-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 16px;
}

.why-desc {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.why-right { display: flex; flex-direction: column; }

.why-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 20px;
    align-items: start;
    padding: 32px 0;
    border-bottom: 1px solid var(--light-gray);
    transition: padding-left 0.2s;
}

.why-item:first-child { padding-top: 0; }
.why-item:hover { padding-left: 10px; }

.why-num {
    font-size: 44px;
    font-weight: 800;
    color: var(--light-gray);
    line-height: 1;
    transition: color 0.2s;
}

.why-item:hover .why-num { color: var(--orange); }

.why-body h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 7px;
}

.why-body p {
    font-size: 15px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

/* ===== GUARANTEE ===== */

.guarantee-bar {
    background: var(--orange);
    padding: 64px 8%;
}

.guarantee-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.guarantee-check {
    font-size: 46px;
    color: var(--white);
    opacity: 0.85;
    flex-shrink: 0;
}

.guarantee-text { flex: 1; min-width: 240px; }

.guarantee-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.guarantee-text p {
    font-size: 16px;
    color: rgba(255,255,255,0.82);
    line-height: 1.5;
    margin: 0;
}

/* ===== REVIEWS ===== */

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.review-card {
    background: var(--gray);
    padding: 34px;
    border-radius: 16px;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.22s, transform 0.22s;
    opacity: 0;
    transform: translateY(18px);
    animation: fadeUpRev 0.7s ease forwards;
}

.review-card:nth-child(1) { animation-delay: 0.1s; }
.review-card:nth-child(2) { animation-delay: 0.25s; }
.review-card:nth-child(3) { animation-delay: 0.4s; }

.review-card:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
}

@keyframes fadeUpRev {
    to { opacity: 1; transform: translateY(0); }
}

.review-stars {
    color: var(--orange);
    font-size: 20px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    flex: 1;
    margin: 0;
}

.review-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.review-author span {
    font-size: 12px;
    color: #aaa;
}

/* ===== SERVICE AREA ===== */

.area-layout {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: center;
}

.area-left h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.area-desc {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    line-height: 1.75;
    margin-bottom: 26px;
}

.area-badge {
    display: inline-block;
    padding: 9px 18px;
    border: 1.5px solid var(--orange);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: var(--orange);
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.area-towns { display: flex; flex-direction: column; }

.area-town {
    font-size: 36px;
    font-weight: 800;
    color: rgba(255,255,255,0.1);
    letter-spacing: 0.5px;
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: color 0.18s, padding-left 0.18s;
    cursor: default;
}

.area-town:hover { color: var(--white); padding-left: 14px; }

.area-town--more {
    font-size: 18px;
    letter-spacing: 2px;
    border-bottom: none;
    color: rgba(255,255,255,0.06);
}

.area-town--more:hover { color: var(--orange); }

/* ===== FINAL CTA ===== */

.final-cta {
    padding: 110px 8%;
    background: var(--gray);
    text-align: center;
    border-top: 1px solid var(--light-gray);
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 800;
    color: var(--orange);
    margin-bottom: 14px;
    line-height: 1.15;
}

.final-cta p {
    font-size: 18px;
    color: #888;
    margin-bottom: 36px;
    line-height: 1.5;
}

/* =============================================================
   RESPONSIVE (≤ 900px)
   ============================================================= */

@media (max-width: 900px) {

    .hero { min-height: 100svh; }
    .hero h1 { font-size: clamp(40px, 10vw, 60px); }
    .hero-trust { display: none; }

    .gp-grid { grid-template-columns: 1fr; }

    .svc-grid { grid-template-columns: 1fr 1fr; }
    .svc-tile--wide { grid-column: span 2; }
    .svc-tile--all  { grid-column: span 2; }

    .why-layout { grid-template-columns: 1fr; gap: 56px; }
    .why-left { position: static; }

    .guarantee-inner { flex-direction: column; text-align: center; }

    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .review-card:nth-child(3) { grid-column: span 2; }

    .area-layout { grid-template-columns: 1fr; gap: 56px; }
    .area-town { font-size: 28px; }

    .final-cta h2 { font-size: 36px; }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 38px; }
    .hero-btns { flex-direction: column; }
    .hero-btns .btn { text-align: center; }

    .stat-item { flex: 1 1 100%; }

    .svc-grid { grid-template-columns: 1fr; }
    .svc-tile--wide, .svc-tile--all { grid-column: span 1; }

    .reviews-grid { grid-template-columns: 1fr; }
    .review-card:nth-child(3) { grid-column: span 1; }

    .final-cta h2 { font-size: 30px; }
}