/* Global reset – these affect the whole site but are safe */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #fefcf5; color: #1e2a2e; line-height: 1.5; }

/* Scoped wrapper – no width restriction, just for scoping */
.btf {
    /* No max-width, no margin – hero and footer can be full width */
}

/* Hero – full width */

.btf .hero {
    background: linear-gradient(135deg, rgba(0,0,0,0.75), rgba(0,0,0,0.6)), url('https://blessings-tree-felling.co.za/wp-content/uploads/2026/04/blessings-tree-felling-image.webp');
    background-size: cover;
    background-position: center 30%;
    padding: 5rem 1rem;
    text-align: center;
    color: white;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.btf .hero h1 {
color:#fff
}

.btf .hero p {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 1rem auto;
}

.btf-hero-buttons {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.btf-hero-buttons .btf-btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: auto !important;
    min-width: 160px;
    margin: 0 !important;
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}

/* On mobile, allow buttons to wrap vertically if needed */
@media (max-width: 640px) {
    .btf-hero-buttons {
        flex-direction: column !important;
        width: 100%;
        gap: 0;
      
    }
    .btf-hero-buttons .btf-btn {
        width: 80% !important;
        text-align: center;
    }
}


/* Container for centered content – used inside hero, stats, sections, footer */
.btf .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Sections inside .container (they are already centered) */
.btf section {
    margin: 4rem 0;
    text-align: center;
}

/* Rest of your styles – all prefixed with .btf */
.btf h1 {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.btf h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2c4b2f;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
}
.btf h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 25%;
    width: 50%;
    height: 3px;
    background: #FCC236;
    border-radius: 2px;
}
.btf h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #3A5522;
    margin: 1rem 0 0.5rem;
}
.btf .btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    margin: 0.5rem;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.btf .btn-primary {
    background: #FCC236;
    color: #1e2a1e;
}
.btf .btn-primary:hover {
    background: #f5b81b;
    transform: translateY(-3px);
}
.btf .btn-outline {
    background: transparent;
    border: 2px solid white;
    color: white;
    backdrop-filter: blur(2px);
}
.btf .btn-outline:hover {
    background: rgba(255,255,255,0.15);
}
.btf .btn-wa {
    background: #25D366;
    color: white;
}
.btf .btn-wa:hover {
    background: #128C7E;
}
.btf .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    place-content: center;
}
.btf .service-card {
    border-radius: 28px;
    padding: 2rem 1.5rem;
    text-align: left;
    transition: all 0.3s;
    box-shadow: 0 10px 25px -5px rgba(0,0,0,0.05);
    border: 1px solid rgba(0,0,0,0.03);
}
.btf .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 30px -12px rgba(58,85,34,0.15);
}
.btf .service-card i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.btf .service-card:nth-child(1) { background: #fce4d6; }
.btf .service-card:nth-child(2) { background: #fce4d6; }
.btf .service-card:nth-child(3) { background: #fce4d6; }
.btf .service-card:nth-child(4) { background: #fce4d6; }
.btf .service-card:nth-child(5) { background: #fce4d6; }
.btf .service-card:nth-child(6) { background: #fce4d6; }
.btf .why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}
.btf .why-card {
    padding: 1.8rem;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    transition: all 0.2s;
    border-bottom: 3px solid transparent;
}
.btf .why-card:hover {
    transform: translateY(-3px);
    border-bottom-color: #FCC236;
}
.btf .why-card:nth-child(1) { background: #fef9e8; }
.btf .why-card:nth-child(2) { background: #eaf7ea; }
.btf .why-card:nth-child(3) { background: #fce4d6; }
.btf .why-card:nth-child(4) { background: #e3f0f5; }
.btf .why-card:nth-child(5) { background: #f9e0e0; }
.btf .why-card:nth-child(6) { background: #e0e7f5; }
.btf .why-card i {
    font-size: 2.2rem;
    color: #3A5522;
    margin-bottom: 1rem;
}
.btf .service-area-split {
    display: flex;
    gap: 2rem;
    align-items: stretch;
    margin-top: 1.5rem;
}
.btf .area-list {
    flex: 1;
    background: #f9faf5;
    border-radius: 28px;
    padding: 1.8rem;
    text-align: left;
}
.btf .area-list ul {
    columns: 2;
    list-style: none;
    margin-top: 1rem;
}
.btf .area-list li {
    margin-bottom: 0.6rem;
    padding-left: 1.5rem;
    position: relative;
}
.btf .area-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}
.btf .area-map {
    flex: 1;
}
.btf .area-map iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: 28px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.btf .stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background: linear-gradient(135deg, #3A5522, #2c421a);
    color: white;
    padding: 3rem 1rem;
    border-radius: 48px;
    margin: 3rem 0;
    text-align: center;
}
.btf .stat-item {
    flex: 1;
    min-width: 120px;
}
.btf .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
}
.btf .gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
.btf .gallery-item {
    position: relative;
    cursor: pointer;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.1);
}
.btf .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}
.btf .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}
.btf .gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.btf .gallery-overlay i {
    font-size: 3rem;
    color: white;
}
.btf .faq-item {
    background: white;
    border-radius: 24px;
    margin-bottom: 1rem;
    text-align: left;
    border: 1px solid #e8ece0;
}
.btf .faq-question {
    padding: 1.2rem 1.5rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: #3A5522;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btf .faq-answer {
    padding: 0 1.5rem 1.2rem 1.5rem;
    display: none;
    border-top: 1px solid #e8ece0;
}
.btf .cta-section {
    background: linear-gradient(120deg, #fef7e0, #ffffff);
    border-radius: 48px;
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid #f0e9d0;
}
.btf .cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.5rem;
}
.btf .btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
}
.btf .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.btf .review-card {
    background: white;
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
    text-align: left;
    transition: 0.2s;
    border: 1px solid #f0f0e8;
}
.btf .review-card:hover {
    transform: translateY(-3px);
    border-color: #FCC236;
}
.btf .review-stars {
    color: #FCC236;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}
.btf .emergency-callout {
    background: #FCC23620;
    border-left: 5px solid #FCC236;
    padding: 1.5rem;
    border-radius: 24px;
    margin: 2rem 0;
    text-align: left;
}

/* Global lightbox, sticky buttons (not scoped) */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90%; max-height: 80%; border-radius: 16px; }
.lightbox .close, .lightbox .prev, .lightbox .next {
    position: absolute;
    color: white;
    font-size: 40px;
    cursor: pointer;
    background: rgba(0,0,0,0.6);
    padding: 12px;
    border-radius: 50%;
    transition: 0.2s;
    width: 60px;
    text-align: center;
}
.lightbox .close { top: 20px; right: 30px; }
.lightbox .prev { left: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 20px; top: 50%; transform: translateY(-50%); }
.lightbox .close:hover, .lightbox .prev:hover, .lightbox .next:hover {
    background: #FCC236;
    color: #1e2a1e;
}
.sticky-phone {
    position: fixed;
    bottom: 110px;
    right: 20px;
    background: #FCC236;
    color: #1e2a1e !important;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 999;
    transition: 0.2s;
}


.sticky-phone:hover {
    transform: scale(1.05);
    background: #f5b81b;
}
.back-to-top {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: #3A5522;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    opacity: 0;
    transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    z-index: 999;
}
.back-to-top.visible { opacity: 1; }
.back-to-top:hover {
    background: #FCC236;
    color: #1e2a1e;
    transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .btf .service-area-split { flex-direction: column; }
    .btf .why-grid { grid-template-columns: repeat(2, 1fr); }
    .btf .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
    .btf .container { padding: 0 1rem; }
    .btf h1 { font-size: 2rem; }
    .btf h2 { font-size: 1.6rem; }
    .btf .hero { padding: 3rem 1rem; }
    .btf .stats .stat-item { margin: 0.5rem 0; }
    .btf .why-grid { grid-template-columns: 1fr; }
    .btf .gallery-grid { grid-template-columns: 1fr; }
    .btf .cta-buttons { flex-direction: column; align-items: center; }
    .btf .btn-large { width: 80%; }
}