/* === Base Reset & Typography === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    font-size: 16px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    margin-bottom: 0.5em;
    font-weight: 700;
    color: #222;
}

p {
    margin-bottom: 1em;
    color: #444;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease, transform 0.3s ease;
}

a:hover {
    color: #1a5c3a;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* === Buttons === */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: width 0.4s ease;
    z-index: -1;
}

.btn:hover::before {
    width: 100%;
}

.btn-primary {
    background-color: #1a5c3a;
    color: white;
    border: 2px solid #1a5c3a;
}

    .btn-primary:hover {
        background-color: #13482d;
        border-color: #13482d;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(19, 72, 45, 0.3);
    }

.btn-secondary {
    background-color: transparent;
    color: #1a5c3a;
    border: 2px solid #1a5c3a;
}

    .btn-secondary:hover {
        background-color: rgba(26, 92, 58, 0.1);
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(19, 72, 45, 0.15);
    }

/* === Header === */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

    .nav-links a {
        font-weight: 500;
        position: relative;
        padding: 5px 0;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #1a5c3a;
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

/* === Mobile Navigation === */
.mobile-menu-btn {
    display: none;
    font-size: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #1a5c3a;
}

/* === Section Spacing === */
section {
    padding: 80px 0;
    position: relative;
}

section + section {
    padding-top: 0;
}

/* === Decorative Elements === */
.decorative-divider {
    height: 80px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-color: #f9f9f9;
}

.decorative-divider-alt {
    background-color: #fff;
}

.wood-grain-divider {
    height: 100%;
    background-image: url('images/rustic-light-wooden-background-decoration-design-white-wood-plank-texture-natural-pattern-oak-wall-fence-grain-timber-space-178561594.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    position: relative;
}

.wood-grain-divider::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f9f9f9, transparent, #f9f9f9);
}

.wood-pattern-section {
    padding: 80px 0;
    background-image: url('images/rustic-light-wooden-background-decoration-design-white-wood-plank-texture-natural-pattern-oak-wall-fence-grain-timber-space-178561594.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.wood-pattern-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
}

.stats-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 30px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(5px);
    width: 180px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a5c3a;
    margin-bottom: 10px;
}

.stat-text {
    color: #444;
    font-weight: 500;
}

.img-frame {
    position: absolute;
    top: -15px;
    left: 15px;
    right: -15px;
    bottom: 15px;
    border: 3px solid #1a5c3a;
    z-index: -1;
    border-radius: 4px;
}

.icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 92, 58, 0.1);
    color: #1a5c3a;
    margin-right: 15px;
    flex-shrink: 0;
}

/* === Hero Slider === */
.hero-slider {
    padding: 0;
    margin-top: 70px; /* Adjust for fixed header */
}

.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    height: calc(100vh - 70px); /* Full viewport height minus header */
    min-height: 500px; /* Minimum height for smaller screens */
    margin: 0;
}

.slider {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.2) 100%);
}

.slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 20px;
    z-index: 2;
    color: white;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.slide-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
    max-width: 800px;
}

.slide-content p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 25px;
    font-size: 1.3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    line-height: 1.5;
}

.slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

.slider-dot:hover {
    background: rgba(255,255,255,0.8);
}

.slider-dot.active {
    background: white;
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* About and sustainability sections */
.about, .sustainability, .features {
    padding: 100px 0;
}

.about-container, .sustainability-container {
    position: relative;
}

.about-img, .sustainability-img {
    position: relative;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.5s ease;
}

.about-img:hover, .sustainability-img:hover {
    transform: translateY(-5px);
}

.about-img::after, .sustainability-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 92, 58, 0.05);
    pointer-events: none;
}

/* CTA section styling */
.cta {
    background-color: #1a5c3a;
    color: white;
    padding: 80px 0;
    margin-top: 40px;
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/rustic-light-wooden-background-decoration-design-white-wood-plank-texture-natural-pattern-oak-wall-fence-grain-timber-space-178561594.webp');
    background-size: cover;
    opacity: 0.05;
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    color: white;
    font-size: 2.2rem;
    margin-bottom: 20px;
    text-align: center;
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.cta .btn-secondary {
    border-color: white;
    color: white;
}

.cta .btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

/* === Section Styles === */
.section {
    padding: 60px 0; 
    background-color: #f9f9f9; 
}

.section-title {
    text-align: center; 
    margin-bottom: 60px; 
}

.section-title .tagline {
    color: #1a5c3a; 
    font-weight: 600; 
    margin-bottom: 10px; 
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    background: rgba(26, 92, 58, 0.08);
    padding: 5px 15px;
    border-radius: 20px;
}

.section-title h2 {
    font-size: 2.2rem; 
    color: #222; 
    margin-bottom: 15px;
    position: relative;
}

.section-title h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: #1a5c3a;
    margin: 15px auto 20px;
}

.section-title p {
    color: #666; 
    max-width: 700px; 
    margin: 0 auto; 
    font-size: 1.1rem;
    line-height: 1.7;
}

/* === Features Section Enhancements === */
.features {
    padding: 100px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.feature-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.feature-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #1a5c3a;
    color: white;
    padding: 6px 12px;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.feature-badge-special {
    background: #8b5a2b; /* Wood color for premium badge */
}

.feature-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.feature-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.feature-card:hover .feature-img img {
    transform: scale(1.1);
}

.feature-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 92, 58, 0.05);
    pointer-events: none;
}

.feature-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.feature-content h3 {
    color: #1a5c3a;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.feature-rating {
    color: #f7c427;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.feature-content p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.7;
}

.feature-benefits {
    margin-bottom: 20px;
    flex-grow: 1;
}

.feature-benefits li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #555;
    line-height: 1.5;
}

.feature-benefits li i {
    color: #1a5c3a;
    margin-right: 10px;
    font-size: 0.9rem;
    margin-top: 4px;
}

.feature-btn {
    color: #1a5c3a;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s;
    margin-top: auto;
    align-self: flex-start;
}

.feature-btn i {
    margin-left: 5px;
    transition: transform 0.3s;
}

.feature-btn:hover i {
    transform: translateX(5px);
}

.features-cta {
    text-align: center;
}

.btn-large {
    padding: 14px 32px;
    font-size: 1.1rem;
}

.btn-large i {
    margin-left: 8px;
}

/* Card footer styling */
.card-footer {
    margin-top: auto;
}

/* Testimonial blockquote styling */
blockquote.bio {
    font-style: italic;
    color: #555;
    margin-bottom: 0;
    line-height: 1.6;
    position: relative;
    padding-left: 5px;
}

blockquote.bio::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background-color: rgba(26, 92, 58, 0.2);
}

/* Product specifications styling */
.product-specifications {
    margin-bottom: 20px;
    background: rgba(26, 92, 58, 0.03);
    padding: 15px;
    border-radius: 6px;
}

.product-specifications h4 {
    color: #1a5c3a;
    margin-bottom: 12px;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(26, 92, 58, 0.1);
    padding-bottom: 8px;
}

/* === About Section Enhancements === */
.about {
    padding: 100px 0;
    background-color: white;
}

.about-container {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-video-wrapper {
    flex: 1;
    min-width: 300px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    color: #1a5c3a;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.about-text p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.video-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(26, 92, 58, 0.8);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.video-play-btn i {
    color: white;
    font-size: 1.5rem;
    margin-left: 5px;
}

.video-play-btn:hover {
    background: #1a5c3a;
    transform: translate(-50%, -50%) scale(1.1);
}

.about-features {
    margin-top: 30px;
    margin-bottom: 30px;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.about-feature .icon-circle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(26, 92, 58, 0.1);
    color: #1a5c3a;
    margin-right: 15px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.about-feature:hover .icon-circle {
    background: #1a5c3a;
    color: white;
    transform: translateY(-3px);
}

.about-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.about-feature:hover h4 {
    color: #1a5c3a;
}

.about-feature p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.mobile-only {
    display: none;
}

/* === Sustainability Section Enhancements === */
.sustainability {
    padding: 100px 0;
    background-color: #f5f7fa;
}

.sustainability-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
}

.sustainability-content-wrapper {
    display: flex;
    flex-direction: column;
}

.sustainability-content h3 {
    color: #1a5c3a;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.sustainability-content p {
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
}

.sustainability-points {
    margin-top: 30px;
    margin-bottom: 30px;
}

.sustainability-point {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
}

.sustainability-point .icon-circle {
    transition: all 0.3s ease;
}

.sustainability-point:hover .icon-circle {
    background: #1a5c3a;
    color: white;
    transform: translateY(-3px);
}

.sustainability-point h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #333;
    transition: color 0.3s ease;
}

.sustainability-point:hover h4 {
    color: #1a5c3a;
}

.sustainability-point p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.sustainability-certification {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    border: 1px solid rgba(0,0,0,0.05);
}

.certification-logo {
    width: 60px;
    margin-right: 15px;
}

.sustainability-certification p {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #555;
}

/* Desktop/Mobile Visibility */
@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }
    
    .mobile-only {
        display: block;
    }
    
    .sustainability-container {
        grid-template-columns: 1fr;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .about-content > div {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .sustainability-point, 
    .about-feature {
        flex-direction: column;
    }
    
    .sustainability-point .icon-circle,
    .about-feature .icon-circle {
        margin-bottom: 15px;
    }
    
    .sustainability-certification {
        flex-direction: column;
        text-align: center;
    }
    
    .certification-logo {
        margin-right: 0;
        margin-bottom: 10px;
    }
}

/* === Footer === */
.footer {
    background-color: #222;
    color: #fff;
}

.footer-top {
    padding: 80px 0 40px;
    position: relative;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/rustic-light-wooden-background-decoration-design-white-wood-plank-texture-natural-pattern-oak-wall-fence-grain-timber-space-178561594.webp');
    opacity: 0.05;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    max-width: 300px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: #1a5c3a;
    transform: translateY(-3px);
}

.footer-links h3 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
}

.footer-links h3:after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: #1a5c3a;
    margin: 10px 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

    .footer-links a:hover {
        color: #fff;
        transform: translateX(5px);
    }

.footer-links i {
    margin-right: 10px;
    color: #1a5c3a;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
}

#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    z-index: 99;
    opacity: 0.9;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    background: #1a5c3a;
    color: white;
    border: none;
}

#backToTop:hover {
    opacity: 1;
    transform: translateY(-5px);
}

/* === Accessibility === */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: #1a5c3a;
    color: white;
    padding: 8px 15px;
    z-index: 1001;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 0;
}

/* Ensure main content starts below fixed header */
main {
    padding-top: 80px; /* Adjust based on header height */
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-container,
    .sustainability-container {
        gap: 30px;
    }
    
    .slider-container {
        height: 80vh;
        min-height: 480px;
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 30px;
        transition: left 0.3s ease;
        z-index: 1001;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

        .nav-links.active {
            left: 0;
        }

    .features-grid,
    .about-container,
    .sustainability-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-logo p {
        max-width: 100%;
    }

    .cta-btns {
        flex-direction: column;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .slide-content p {
        font-size: 1.1rem;
        margin-bottom: 20px;
        max-width: 100%;
    }
    
    .slider-container {
        height: 70vh;
        min-height: 400px;
    }
    
    .decorative-divider {
        height: 50px;
    }
    
    .stats-container {
        gap: 15px;
    }
    
    .stat-item {
        padding: 20px;
        width: 150px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .section-title h2,
    .about-content h2,
    .sustainability-content h2,
    .cta h2 {
        font-size: 1.6rem;
    }

    .cta p {
        font-size: 1rem;
    }

    .slide-content {
        padding: 40px 15px;
    }
    
    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .slide-content p {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .slider-nav {
        bottom: 25px;
    }
    
    .slider-dot {
        width: 12px;
        height: 12px;
    }
    
    .slider-container {
        height: 60vh;
        min-height: 350px;
    }
    
    .footer-top {
        padding: 50px 0 30px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .wood-pattern-section {
        padding: 50px 0;
    }
    
    .stat-item {
        width: 130px;
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
}

/* === About Page Styles === */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-bottom: 0;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: white;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 20px;
    color: rgba(255,255,255,0.9);
}

.page-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.page-hero-image .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 50%, rgba(0,0,0,0.4) 100%);
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: flex;
    align-items: center;
}

.breadcrumb li:after {
    content: '/';
    margin-left: 10px;
    color: rgba(255,255,255,0.7);
}

.breadcrumb li:last-child:after {
    display: none;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

/* About Section Styles */
.about-section {
    padding: 100px 0;
    background-color: white;
}

.alternate-bg {
    background-color: #f5f7fa;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
}

.about-container.reverse {
    flex-direction: row-reverse;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.lead-text {
    font-size: 1.2rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.text-highlight {
    background-color: rgba(26, 92, 58, 0.05);
    padding: 20px;
    border-left: 4px solid #1a5c3a;
    margin: 20px 0;
    position: relative;
}

.text-highlight i {
    color: #1a5c3a;
    font-size: 1.5rem;
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 10px;
}

.text-highlight blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-left: 20px;
    color: #444;
}

.about-image-container {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.rounded-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

/* Timeline Styles */
.timeline-section {
    padding: 100px 0;
    background-color: #fff;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
    padding: 20px 0;
}

.timeline:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    margin-left: -1px;
    background-color: rgba(26, 92, 58, 0.2);
}

.timeline-item {
    position: relative;
    margin-bottom: 60px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 10px;
    width: 16px;
    height: 16px;
    margin-left: -8px;
    background-color: #1a5c3a;
    border-radius: 50%;
    z-index: 1;
}

.timeline-content {
    position: relative;
    width: 45%;
    margin-left: 55%;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
}

.timeline-date {
    display: inline-block;
    padding: 5px 15px;
    background-color: rgba(26, 92, 58, 0.1);
    color: #1a5c3a;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: #333;
}

.timeline-content p {
    color: #666;
    margin-bottom: 0;
}

/* Business Hours Styles */
.business-hours {
    background-color: white;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.business-hours h3 {
    color: #1a5c3a;
    margin-bottom: 20px;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
}

.business-hours h3 i {
    margin-right: 10px;
}

.hours-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.day {
    font-weight: 500;
    color: #333;
}

.time {
    color: #666;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Team Section Styles */
.team-section {
    padding: 100px 0;
    background-color: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-member {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.member-image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .member-image img {
    transform: scale(1.05);
}

.placeholder-image {
    background-color: #f5f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.member-info {
    padding: 25px;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: #333;
}

.member-info .position {
    color: #1a5c3a;
    font-weight: 500;
    margin-bottom: 15px;
}

.member-info .bio {
    color: #666;
    margin-bottom: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(26, 92, 58, 0.1);
    color: #1a5c3a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #1a5c3a;
    color: white;
    transform: translateY(-3px);
}

/* Locations Section Styles */
.locations-section {
    padding: 100px 0;
}

.location-card {
    display: flex;
    flex-wrap: wrap;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    margin-top: 50px;
    margin-bottom: 50px;
}

.location-image {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.location-details {
    flex: 1;
    min-width: 300px;
    padding: 30px;
}

.location-details h3 {
    color: #1a5c3a;
    margin-bottom: 15px;
    font-size: 1.6rem;
}

.location-details address {
    font-style: normal;
    margin-bottom: 20px;
}

.location-details address p,
.location-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    color: #666;
}

.location-details i {
    color: #1a5c3a;
    width: 25px;
    margin-right: 10px;
}

.location-contact {
    margin-bottom: 25px;
}

.location-contact a {
    color: #666;
    transition: color 0.3s ease;
}

.location-contact a:hover {
    color: #1a5c3a;
}

.map-container {
    margin-top: 30px;
}

.map-placeholder {
    position: relative;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.8);
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
}

.map-overlay p {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .page-hero h1 {
        font-size: 2.5rem;
    }
    
    .timeline:before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px;
    }
    
    .timeline-item:nth-child(even) .timeline-content {
        margin-left: 60px;
    }
    
    .about-container {
        flex-direction: column;
    }
    
    .about-container.reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .timeline-section {
        padding: 60px 0;
    }
    
    .team-section {
        padding: 60px 0;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .location-card {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .map-placeholder {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .hours-grid {
        grid-template-columns: 1fr;
    }
    
    .day {
        margin-top: 10px;
        font-weight: 600;
    }
    
    .day:first-child {
        margin-top: 0;
    }
    
    .time {
        margin-bottom: 10px;
    }
}

.slider-container {
  position: relative;
}

.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  background: rgba(0, 0, 0, 0.5);
  color: white;
  font-size: 2rem;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease;
}

.slider-arrow:hover {
  background: rgba(0, 0, 0, 0.8);
}
