/* Base Styles */
:root {
    --primary-color: #8B5A2B; /* Wooden brown */
    --secondary-color: #D2B48C; /* Tan */
    --accent-color: #A0522D; /* Sienna */
    --text-color: #333333;
    --light-text: #777777;
    --light-bg: #f9f5f0;
    --white: #ffffff;
    --black: #000000;
    --transition: all 0.3s ease;
    --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-bg);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-align: center;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--light-text);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--box-shadow);
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.text-center {
    text-align: center;
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
}

.logo-animation {
    position: relative;
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 5px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1s linear infinite;
}

.logo-circle::before,
.logo-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 5px solid transparent;
}

.logo-circle::before {
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-top-color: var(--secondary-color);
    animation: spin 1.5s linear infinite reverse;
}

.logo-circle::after {
    top: 25px;
    left: 25px;
    right: 25px;
    bottom: 25px;
    border-top-color: var(--accent-color);
    animation: spin 2s linear infinite;
}

.logo-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled {
    background-color: rgb(255, 255, 255);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    background-color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    transition: var(--transition);
}

.header.scrolled .logo-text {
    color: var(--primary-color);
}

.navbar {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-item {
    position: relative;
}

.nav-link {
    font-weight: 700;
    color: rgb(132, 84, 84);
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: rgb(132, 84, 84);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header.scrolled .nav-link {
    color: rgb(132, 84, 84);
}

.header.scrolled .nav-link::after {
    background-color: var(--primary-color);
}

.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1000;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: var(--white);
    transition: var(--transition);
}

.header.scrolled .bar {
    background-color: var(--primary-color);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    width: 100%;
    padding: 0 20px;
    color: var(--white);
}

.hero-title {
    color: #ffffff;
    text-shadow: 2px 2px #000000;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeInDown 1s ease;
}

.hero-subtitle {
    color: #ffffff;
    text-shadow: 1px 1px #000000;
    font-size: 1.5rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease 0.3s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slider::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.swiper-slide {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: var(--white);
    opacity: 0.7;
}

.swiper-pagination-bullet-active {
    background-color: var(--primary-color);
    opacity: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.about-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.experience-badge {
    position: absolute;
    top: -20px;
    right: -20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: var(--box-shadow);
    animation: pulse 2s infinite;
}

.experience-badge span {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.experience-badge p {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 5px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.category-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.category-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    transition: var(--transition);
}

.category-card:hover .category-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.category-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.category-card p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* Features Section */
.features-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
    font-size: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--light-text);
}

/* Portfolio Section */
.portfolio-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.portfolio-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 90, 43, 0.9);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.portfolio-overlay p {
    text-align: center;
    margin-bottom: 20px;
}

/* Partners Section */
.partners-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.partners-slider {
    margin-top: 50px;
    padding: 20px 0;
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

.swiper-slide img {
    max-width: 80%;
    max-height: 80%;
    opacity: 100;
    transition: var(--transition);
}

.swiper-slide img:hover {

    opacity: 1;
}

/* Testimonials Section */
.testimonials-section {
    padding: var(--section-padding);
    background-color: var(--light-bg);
}

.testimonials-slider {
    margin-top: 50px;
    padding: 20px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    margin: 0 20px;
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: rgba(139, 90, 43, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 20px;
    padding-left: 40px;
}

.testimonial-author {
    padding-left: 40px;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: var(--light-text);
    font-size: 0.9rem;
}

/* Blog Section */
.blog-section {
    padding: var(--section-padding);
    background-color: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.blog-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.blog-date span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.blog-date span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-content h3 a {
    transition: var(--transition);
}

.blog-content h3 a:hover {
    color: var(--accent-color);
}

.blog-content p {
    color: var(--light-text);
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Footer */
.footer {
    background-color: #222222;
    color: #aaaaaa;
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-about .footer-logo {
    margin-bottom: 20px;
}

.footer-about .footer-logo .logo-icon {
    background-color: var(--primary-color);
    color: var(--white);
}

.footer-about .footer-logo .logo-text {
    color: var(--white);
}

.footer-about p {
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333333;
    color: var(--white);
    transition: var(--transition);
}

.footer-social a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    transition: var(--transition);
    display: block;
}

.footer-links ul li a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-contact ul li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.footer-contact ul li i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright p {
    font-size: 0.9rem;
}

.footer-credits p {
    font-size: 0.9rem;
}

.footer-credits a {
    color: var(--primary-color);
    font-weight: 600;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--accent-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .about-section .container {
        flex-direction: column;
    }
    
    .about-content {
        margin-bottom: 50px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-padding {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        transition: var(--transition);
        z-index: 999;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-item {
        margin: 15px 0;
        text-align: center;
    }
    
    .nav-link {
        color: var(--text-color);
    }
    
    .header.scrolled .nav-menu {
        top: 70px;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-bottom .container {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .experience-badge {
        width: 100px;
        height: 100px;
    }
    
    .experience-badge span {
        font-size: 2rem;
    }
}
/* Page Banner */
.page-banner {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/banner-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 150px 0;
    text-align: center;
    color: var(--white);
    margin-top: 80px;
}

.page-banner h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    animation: fadeInDown 1s ease;
}

.page-banner p {
    font-size: 1.2rem;
    animation: fadeInUp 1s ease 0.3s both;
}

/* About Page Styles */
.about-page-section .container {
    display: flex;
    gap: 50px;
    padding: 80px 0;
}

.about-page-content {
    flex: 1;
}

.about-page-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-page-content p {
    margin-bottom: 20px;
}

.about-mission, .about-strength, .about-satisfaction {
    margin: 40px 0;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.about-mission h3, .about-strength h3, .about-satisfaction h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-page-image {
    flex: 1;
    position: relative;
}

.about-page-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.about-stats {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-around;
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
}

.stat-text {
    font-size: 0.9rem;
    color: var(--light-text);
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
}

.process-step:hover::before {
    opacity: 0.1;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--light-bg);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    transition: var(--transition);
}

.process-step:hover .step-number {
    background-color: var(--primary-color);
    color: var(--white);
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-step p {
    color: var(--light-text);
}

/* Eco Section */
.eco-section {
    padding: 80px 0;
}

.eco-section .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.eco-content {
    flex: 1;
}

.eco-content h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.eco-content p {
    margin-bottom: 20px;
}

.eco-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.eco-feature {
    text-align: center;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: 10px;
}

.eco-feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.eco-feature h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.eco-feature p {
    font-size: 0.9rem;
}

.eco-image {
    flex: 1;
}

.eco-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.team-members {
    margin-top: 50px;
}

.team-member {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    align-items: center;
}

.member-image {
    flex: 1;
}

.member-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.member-info {
    flex: 1;
}

.member-info h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.member-info p:first-of-type {
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.team-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.team-member-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin: 15px 0 10px;
    padding: 0 20px;
}

.team-member-card p {
    color: var(--light-text);
    padding: 0 20px 20px;
}

/* Gallery Page Styles */
.gallery-filter-section {
    padding: 40px 0;
    background-color: var(--white);
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.filter-btn.active, .filter-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    height: 300px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(139, 90, 43, 0.9);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    text-align: center;
}

.gallery-overlay p {
    text-align: center;
    margin-bottom: 20px;
}

/* Product Categories Section */
.product-categories-section {
    padding: 80px 0;
    background-color: var(--white);
}

.wood-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.wood-card {
    background-color: var(--light-bg);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.wood-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.wood-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.wood-card h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin: 15px 0 10px;
    padding: 0 20px;
}

.wood-card p {
    color: var(--light-text);
    padding: 0 20px 20px;
}

/* Portfolio Page Styles */
.portfolio-page-section {
    padding: 80px 0;
}

.portfolio-projects {
    display: grid;
    gap: 50px;
}

.project-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.project-image img {
    border-radius: 10px;
    box-shadow: var(--box-shadow);
    width: 100%;
}

.project-meta {
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.project-features {
    margin: 25px 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.feature i {
    color: var(--primary-color);
}

/* Client Testimonials Section */
.client-testimonials-section {
    padding: 80px 0;
    background-color: var(--light-bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.testimonial-text {
    font-style: italic;
    color: var(--light-text);
    margin-bottom: 20px;
    position: relative;
    padding-left: 20px;
}

.testimonial-text::before {
    content: '\201C';
    position: absolute;
    top: -15px;
    left: 0;
    font-size: 4rem;
    color: rgba(139, 90, 43, 0.1);
    font-family: serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--light-text);
    margin-bottom: 5px;
}

.rating {
    color: var(--secondary-color);
}

/* Contact Page Styles */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 30px;
}

.info-card {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-content h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.social-links {
    margin-top: 40px;
}

.social-links h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.contact-form h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    padding: 20px;
    background-color: #f0fff0;
    border-radius: 4px;
    margin-top: 20px;
}

.form-success i {
    font-size: 3rem;
    color: #4CAF50;
    margin-bottom: 15px;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background-color: var(--white);
}

.faq-accordion {
    margin-top: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.accordion-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    background-color: var(--light-bg);
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}

.accordion-btn:hover {
    background-color: #e8e0d7;
}

.accordion-btn i {
    transition: var(--transition);
}

.accordion-btn.active i {
    transform: rotate(180deg);
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background-color: var(--white);
}

.accordion-content p {
    padding: 20px 0;
}

/* Blog Page Styles */
.blog-page-section {
    padding: 80px 0;
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.category-btn {
    padding: 8px 20px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn.active, .category-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.blog-posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.blog-post {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    transition: var(--transition);
}

.blog-post:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow);
}

.post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.blog-post:hover .post-image img {
    transform: scale(1.1);
}

.post-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--primary-color);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.post-date span:first-child {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.post-date span:last-child {
    font-size: 0.8rem;
    text-transform: uppercase;
}

.post-content {
    padding: 25px;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.post-category {
    color: var(--primary-color);
    font-weight: 500;
}

.post-comments {
    color: var(--light-text);
}

.blog-post h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-post h2 a {
    transition: var(--transition);
}

.blog-post h2 a:hover {
    color: var(--accent-color);
}

.blog-post p {
    color: var(--light-text);
    margin-bottom: 20px;
}

.read-more {
    font-weight: 500;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.read-more i {
    font-size: 0.8rem;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--accent-color);
}

.read-more:hover i {
    transform: translateX(3px);
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 50px;
}

.page-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--light-bg);
    color: var(--text-color);
    transition: var(--transition);
}

.page-btn.active, .page-btn:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* Newsletter Section */
.newsletter-section {
    padding: 80px 0;
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/newsletter-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.newsletter-content p {
    max-width: 600px;
    margin: 0 auto 30px;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: inherit;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Responsive Styles for Additional Pages */
@media (max-width: 992px) {
    .about-page-section .container,
    .eco-section .container {
        flex-direction: column;
    }
    
    .about-stats {
        position: static;
        margin-top: 30px;
    }
    
    .project-card {
        grid-template-columns: 1fr;
    }
    
    .project-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .team-member {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .page-banner h1 {
        font-size: 2.2rem;
    }
    
    .page-banner p {
        font-size: 1rem;
    }
    
    .blog-posts {
        grid-template-columns: 1fr;
    }
}
/* Phone Input with Country Code */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.country-code-select {
    position: relative;
    flex-shrink: 0;
    width: 120px;
}

.country-code-select select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 30px;
}

.phone-input-group input[type="tel"] {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Validation styles */
.country-code-select select:invalid,
.phone-input-group input[type="tel"]:invalid {
    border-color: #ff4444;
}

.country-code-select select:valid,
.phone-input-group input[type="tel"]:valid {
    border-color: #ddd;
}

.country-code-select select:focus,
.phone-input-group input[type="tel"]:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .phone-input-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .country-code-select {
        width: 100%;
    }
}
/* About Page Banner */
.about-banner {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 180px 0;
    text-align: center;
    color: var(--white);
    margin-top: 80px; /* Adjust if header is fixed */
    position: relative;
}

.about-banner .container {
    position: relative;
    z-index: 2;
}

.about-banner h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-banner p {
    font-size: 1.5rem;
    animation: fadeInUp 1s ease 0.3s both;
    max-width: 800px;
    margin: 0 auto;
}

/* Animation Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-banner {
        padding: 150px 0;
    }
    
    .about-banner h1 {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        padding: 120px 0;
    }
    
    .about-banner h1 {
        font-size: 2.2rem;
    }
    
    .about-banner p {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .about-banner {
        padding: 100px 0;
    }
    
    .about-banner h1 {
        font-size: 1.8rem;
    }
    
    .about-banner p {
        font-size: 1rem;
    }
}
/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 30px; /* Adjust based on your logo height */
}

.logo-img {
    height: 50%;
    width: auto;
    max-width: 50px; /* Adjust based on your logo width */
    transition: all 0.3s ease;
}

/* For transparent header on homepage */
.index-page .header:not(.scrolled) .logo-img {
    filter: brightness(0) invert(1); /* Makes logo white */
}

/* Scrolled state */
.header.scrolled .logo-img {
    filter: none !important; /* Reverts to original colors */
}

/* Screen reader only text */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Mobile responsive adjustments */
@media (max-width: 992px) {
    .logo-img {
        max-height: 50px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        max-height: 40px;
    }
}
