:root {
    /* Colors */
    --color-primary-dark: #747373;
    --color-primary: #7A7A7A;
    --color-accent: #730001;
    --color-accent-hover: #500001;
    --color-bg-light: rgba(248, 248, 248, 0.85); /* Semi-transparent to reveal 3D background */
    --color-text-dark: #222222;
    --color-text-light: #FFFFFF;
    --color-border: #DDDDDD;
    
    /* Typography */
    --font-heading: 'Inria Serif', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --font-accent: 'Manrope', sans-serif;

    /* Spacing */
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;
}

/* Three.js Background Canvas */
#webgl {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
}

a {
    text-decoration: none;
    color: inherit;
}

.fixed-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: transform 0.3s ease;
}

.fixed-whatsapp:hover {
    transform: scale(1.1);
    color: #fff;
}

ul {
    list-style: none;
}

.container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
    gap: 10px;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-text-light);
    border: 1px solid var(--color-accent);
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-light);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    border-color: var(--color-text-light);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-text-light);
    border-radius: 30px;
    font-size: 14px;
    font-family: var(--font-accent);
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Top Bar */
.top-bar {
     background: #747473;;
    color: #fff;
    padding: 10px 0;
    font-size: 13px;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left, .top-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-bar-left span i {
    margin-right: 5px;
    color: #fff;
}

.top-bar-right a {
    color: #fff;
    transition: 0.3s;
}

.top-bar-right a:hover {
    color: var(--color-accent);
}

/* Header */
.header {
    position: absolute;
    top: 40px; /* Offset for top bar */
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 20px 0;
    background: transparent;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav {
    background: #fff;
    border-radius: 50px;
    padding: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.nav ul.nav-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    margin: 0;
}

.nav a {
    color: var(--color-text-dark);
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 30px;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
}

.nav a:hover {
    color: var(--color-accent);
}

.nav a.active {
    background-color: var(--color-accent);
    color: #fff;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 180px 0 100px;
    color: var(--color-text-light);
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(43,58,44,0.9) 0%, rgba(43,58,44,0.7) 50%, rgba(43,58,44,0.4) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: end;
}

.hero-left h1 {
    font-size: 64px;
    margin-bottom: 40px;
    font-weight: 700;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
}

.hero-stats {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 500px;
}

.stat-text {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-item h2 {
    font-family: var(--font-body);
    font-size: 28px;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 13px;
    opacity: 0.8;
}

.circular-badge {
    position: absolute;
    right: 0;
    top: 0;
    animation: rotate 20s linear infinite;
}

.circular-badge img {
    width: 120px;
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero-right {
        align-items: flex-start;
    }
    
    .nav {
        display: none;
    }
    
    .hero-left h1 {
        font-size: 48px;
    }
}

/* Base Section Styles */
.section {
    padding: 100px 0;
}

.section-subtitle {
    display: inline-block;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-family: var(--font-accent);
}

.section-title {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--color-text-dark);
}

.section-title.text-light {
    color: var(--color-text-light);
}

.section-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
}

/* Features Section */
.features-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.image-wrapper {
    position: relative;
    padding-right: 40px;
    padding-bottom: 40px;
}

.image-wrapper .main-img {
    width: 100%;
    border-radius: 12px;
    display: block;
}

.review-card {
    position: absolute;
    bottom: 0;
    right: 0;
    background: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.review-card .rating {
    display: flex;
    align-items: center;
    gap: 15px;
}

.review-card h2 {
    font-size: 32px;
    margin: 0;
    color: var(--color-text-dark);
    font-family: var(--font-body);
}

.review-card .stars {
    color: #FFB800;
    font-size: 14px;
}

.review-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.feature-list {
    margin-bottom: 40px;
}

.feature-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-list .icon {
    width: 45px;
    height: 45px;
    background-color: rgba(124, 145, 86, 0.1);
    color: var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.feature-list h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: var(--font-body);
}

.feature-list p {
    font-size: 15px;
    color: #666;
}

/* Services Section */
.services {
    background-color: var(--color-primary-dark);
    color: var(--color-text-light);
}

.services .section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.services .header-left {
    max-width: 600px;
}

.services .header-right {
    max-width: 400px;
    text-align: right;
}

.services .header-right p {
    margin-bottom: 20px;
    opacity: 0.8;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card .card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.service-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.05);
}

.service-card .card-content {
    padding: 30px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--color-text-light);
}

.service-card p {
    font-size: 15px;
    opacity: 0.7;
    margin-bottom: 20px;
    color: var(--color-text-light);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-accent);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: var(--font-accent);
}

.read-more:hover {
    color: var(--color-text-light);
}

.footer-grid {
    display: grid; 
    grid-template-columns: 1.5fr 1fr 1fr 1fr; 
    gap: 40px; 
    margin-bottom: 60px; 
    padding-bottom: 60px; 
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    background: none;
    border: none;
    color: var(--color-text-dark);
}

.mobile-menu-close {
    display: none;
}

@media (max-width: 992px) {
    .features-container, .services .section-header {
        grid-template-columns: 1fr;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .services .header-right {
        text-align: left;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .hero-left h1 {
        font-size: 48px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .top-bar-container {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 10px;
    }
    
    .top-bar-left span:not(:first-child) {
        display: none;
    }

    .top-bar-left span:first-child {
        margin-left: 0 !important;
        font-size: 13px;
    }

    .top-bar-right span:first-child {
        display: none;
    }
    
    .top-bar-right a:last-child {
        display: none;
    }

    .header-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #fff;
        border-radius: 0;
        padding: 60px 20px 20px;
        box-shadow: 0 10px 15px rgba(0,0,0,0.1);
        z-index: 1000;
        overflow-y: auto;
    }
    
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 28px;
        background: none;
        border: none;
        color: var(--color-text-dark);
        cursor: pointer;
    }

    .nav.active {
        display: block;
    }

    .nav ul.nav-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav a {
        padding: 15px;
        display: block;
        width: 100%;
        border-bottom: 1px solid #eee;
        border-radius: 8px;
    }

    .nav a.active {
        border-radius: 5px;
    }

    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-left h1 {
        font-size: 36px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* Footer Bottom Contact Details */
.footer-bottom-contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    font-size: 20px;
}

.footer-social a {
    color: #fff;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--color-accent);
}

.footer-contact-details {
    display: flex;
    gap: 40px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-contact-item p {
    margin: 0;
    font-size: 14px;
    color: rgba(255,255,255,0.8);
}

.footer-contact-item h4 {
    margin: 0;
    font-size: 18px;
    word-break: break-all;
}

.icon-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #730001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.footer-divider {
    width: 1px;
    background: rgba(255,255,255,0.2);
}

@media (max-width: 992px) {
    .footer-bottom-contact {
        flex-direction: column;
        gap: 30px;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .footer-contact-details {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .footer-divider {
        display: none;
    }
    .footer-contact-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Accessories / Materials */
.accessories {
    padding: 0;
    display: flex;
}
.acc-image {
    width: 45%;
}
.acc-content {
    width: 55%;
    padding: 80px 100px;
    background-color: #3d3c3c;
    background-image: url('https://Tree Life.wpthemeverse.com/wp-content/uploads/2024/03/pattern-1.png');
    background-blend-mode: overlay;
    color: #fff;
    position: relative;
}
.acc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
@media (max-width: 992px) {
    .accessories {
        flex-direction: column;
    }
    .acc-image, .acc-content {
        width: 100%;
    }
    .acc-content {
        padding: 40px 20px;
    }
    .acc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .acc-grid {
        grid-template-columns: 1fr;
    }
}

/* Approaches */
.approaches-left {
    display: flex;
    gap: 20px;
    padding-right: 40px;
}
.approaches-img-col {
    width: 50%;
}
@media (max-width: 992px) {
    .approaches-left {
        padding-right: 0;
        margin-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .approaches-left {
        flex-direction: column;
    }
    .approaches-img-col {
        width: 100%;
    }
}

/* How We Work */
.how-we-work-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 60px;
}
.how-we-work-line {
    position: absolute;
    top: 60px;
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed #ddd;
    z-index: 1;
}
.how-we-work-step {
    width: 22%;
    position: relative;
    z-index: 2;
}
@media (max-width: 992px) {
    .how-we-work-grid {
        flex-wrap: wrap;
        gap: 40px;
    }
    .how-we-work-step {
        width: 45%;
    }
    .how-we-work-line {
        display: none;
    }
}
@media (max-width: 768px) {
    .how-we-work-step {
        width: 100%;
    }
}

/* Testimonials */
.testimonial-wrapper {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
}
.testimonial-content-col {
    width: 50%;
    background: var(--color-primary-dark);
    padding: 100px;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.testimonial-img-col {
    width: 50%;
    position: relative;
}
@media (max-width: 992px) {
    .testimonial-content-col {
        padding: 60px 40px;
    }
}
@media (max-width: 768px) {
    .testimonial-content-col, .testimonial-img-col {
        width: 100%;
    }
    .testimonial-content-col {
        padding: 40px 20px;
    }
}
