/* refactored with chatGPT - 2025-11-18 14:20 UK */

/* Global reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* ===================== HEADER ===================== */


/* ===================== HERO ===================== */

.hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 4rem 2rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '🌲';
    position: absolute;
    font-size: 10rem;
    opacity: 0.1;
    right: -2rem;
    top: -2rem;
    animation: sway 4s ease-in-out infinite;
}

@keyframes sway {
    0%, 100% { transform: rotate(-2deg); }
    50%      { transform: rotate(2deg); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.hero-text h1 {
    font-size: 3rem;
    color: #2d5016;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-text .highlight {
    color: #ff8c42;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: #ff8c42;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.btn-primary:hover {
    background: #ff7a29;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

.btn-secondary {
    background: white;
    color: #2d5016;
    border: 2px solid #2d5016;
}

.btn-secondary:hover {
    background: #2d5016;
    color: white;
}

.hero-image {
    position: relative;
}

.map-carousel {
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

.map-slide {
    width: 100%;
    height: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, #a8d5ba 0%, #7fb69e 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

/* ===================== FEATURES ===================== */

.features {
    padding: 1rem 2rem;
    background: white;
    margin-bottom: 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2d5016;
    margin-bottom: 1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: linear-gradient(135deg, #f8fdf9 0%, #e8f5e9 100%);
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    border-left: 4px solid #4a7c2c;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: #2d5016;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #555;
    line-height: 1.7;
}

/* ===================== BEFORE / AFTER ===================== */

.before-after {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #fff8e1 0%, #ffecb3 100%);
}

.before-after-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.comparison-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.comparison-item h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.before h3 {
    color: #d32f2f;
}

.after h3 {
    color: #388e3c;
}

.comparison-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 10px;
    
}
.comparison img{
    width: 100%;
    height: auto;
}

.before .comparison-image {
    background: linear-gradient(135deg, #ffcdd2 0%, #ef9a9a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #c62828;
}

.after .comparison-image {
    background: linear-gradient(135deg, #c8e6c9 0%, #a5d6a7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #2e7d32;
}


/* Before/After */
/*
.comparison {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comparison-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}
*/

/* ===================== FINAL CTA ===================== */

.final-cta {
    padding: 2rem 2rem;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* ===================== FOOTER ===================== */

footer {
    background: #1a2f0d;
    color: #c8e6c9;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: #ffd966;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #c8e6c9;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffd966;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2d5016;
    opacity: 0.7;
}

/* ===================== TRUST BADGE ===================== */

.trust-badge {
    width: 116px;
    height: 116px;
    background: linear-gradient(135deg, #ffd45e 0%, #f9c74f 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.9), 0 4px 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    padding: 20px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    right: -12px;
    top: -12px;
    z-index: 100;
}

.number {
    font-size: 35px;
    line-height: 0.8;
    color: #b83b3b;
    margin-bottom: 5px;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
}

.parks-text {
    font-size: 17px;
    line-height: 1;
    color: #b83b3b;
    margin-bottom: -2px;
    position: relative;
    z-index: 1;
}

.trust-text {
    font-size: 17px;
    line-height: 1;
    color: #b83b3b;
    position: relative;
    z-index: 1;
}

/* ===================== ICON STRIPS ===================== */

.icon-strip {
    width: 100%;
    height: 55px;
    overflow: hidden;
    position: relative;
}

.icon-strip .icon-track {
    display: inline-flex;
    align-items: center;
    height: 55px;
    animation: icon-scroll 30s linear infinite;
}

.icon-strip .feature-icon {
    height: 55px;
    width: auto;
    margin: 0 6px;
    flex-shrink: 0;
}

@keyframes icon-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===================== RESPONSIVE ===================== */

/* Hero stack on smaller screens */
@media (max-width: 968px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-text h1 {
        text-align: center;
    }
    
    .cta-buttons{
        justify-content: center;
    }
   
}

/* Stack comparison cards vertically on narrower screens */
@media (max-width: 768px) {
    .comparison {
        display: flex;
        flex-direction: column;
    }

    .trust-badge {
        width: 150px;
        height: 150px;
    }

    .number {
        font-size: 48px;
    }

    .parks-text,
    .trust-text {
        font-size: 24px;
    }
}

/* Extra-small devices tweaks */
@media (max-width: 480px) {
    .logo {
        width: 120px;
        height: 120px;
    }

    .quote-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .nav-menu li a {
        font-size: 15px;
    }

    .trust-badge {
        width: 120px;
        height: 120px;
    }

    .number {
        font-size: 38px;
    }

    .parks-text,
    .trust-text {
        font-size: 19px;
    }
}
.icon-strip {
    width: 100%;
    height: 55px;
    overflow: hidden;
    position: relative;
}

.icon-strip .icon-track {
    display: inline-flex;
    align-items: center;
    height: 55px;
    animation: icon-scroll 30s linear infinite;
}

.icon-strip .feature-icon {
    height: 55px;
    width: auto;
    margin: 0 6px;
    flex-shrink: 0;
}

@keyframes icon-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
