@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --brick-red: #BC4A3C;
    --brick-red-dark: #8E362D;
    --earthy-brown: #5D4037;
    --sand-beige: #F5F5DC;
    --natural-green: #2E7D32;
    --white: #ffffff;
    --black: #121212;
    --gray-light: #f4f4f4;
    --gray-dark: #333333;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--gray-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

h1, h2, h3, h4, .brand-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

section {
    padding: 100px 5%;
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: var(--transition);
}

nav.scrolled {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 10px 5%;
    box-shadow: var(--shadow);
}

.logo {
    font-size: 1.3rem;
    color: var(--brick-red);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a:hover {
    color: var(--brick-red);
}

.nav-cta {
    padding: 10px 20px !important;
    font-size: 0.8rem !important;
}

.hamburger {
    display: none;
    font-size: 1.5rem;
    color: var(--brick-red);
    cursor: pointer;
}

.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)), url('images/header-bg.jpg.jpeg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: left;
}

.hero-content {
    max-width: 700px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 10px;
    line-height: 1.1;
}

.hero h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--sand-beige);
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--brick-red);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--brick-red-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(188, 74, 60, 0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--brick-red);
    transform: translateY(-5px);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: var(--earthy-brown);
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--brick-red);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-img img {
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Products Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.product-img {
    height: 250px;
    overflow: hidden;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-img img {
    transform: scale(1.1);
}

.product-info {
    padding: 30px;
}

.product-info h3 {
    margin-bottom: 15px;
    color: var(--brick-red);
}

.product-info ul li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-info ul li::before {
    content: '✓';
    color: var(--natural-green);
    font-weight: bold;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item {
    padding: 40px 20px;
    background: var(--gray-light);
    border-radius: 20px;
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--brick-red);
    color: var(--white);
}

.feature-item p {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.feature-item:hover p {
    opacity: 1;
    color: rgba(255, 255, 255, 0.85);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--brick-red);
}

.feature-item:hover .feature-icon {
    color: var(--white);
}

/* Process Section */
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    position: relative;
}

.process-step {
    text-align: center;
    z-index: 1;
}

.process-step p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--brick-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 10px var(--white);
}

/* Stats Counter */
.stats {
    background: var(--earthy-brown);
    color: var(--white);
    display: flex;
    justify-content: space-around;
    padding: 60px 5%;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

/* FAQ Section */
.faq {
    background: var(--gray-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 30px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--earthy-brown);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--brick-red);
}

.faq-icon {
    font-size: 0.9rem;
    color: var(--brick-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 15px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer p {
    padding: 0 30px 24px;
    line-height: 1.7;
    color: var(--gray-dark);
    opacity: 0.85;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--gray-light);
    border-radius: 16px;
    transition: var(--transition);
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--brick-red);
    margin-top: 4px;
    flex-shrink: 0;
}

.contact-item h3 {
    font-size: 1rem;
    margin-bottom: 4px;
    color: var(--earthy-brown);
}

.contact-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}

.contact-item a {
    color: var(--brick-red);
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-cta {
    margin-top: 10px;
    text-align: center;
}

.contact-map iframe {
    border-radius: 20px;
    box-shadow: var(--shadow);
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    padding: 40px;
    background: var(--sand-beige);
    border-radius: 20px;
    font-style: italic;
}

.stars {
    color: gold;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--brick-red);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

@media (max-width: 992px) {
    .hero h1 { font-size: 3rem; }
    .about-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: repeat(2, 1fr); gap: 40px; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    section {
        padding: 60px 5%;
    }

    .hero {
        text-align: left;
        background-attachment: scroll;
        background-position: center;
        background-size: cover;
        height: 100dvh;
        padding-top: 80px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.15;
    }

    .hero h2 {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .hero p {
        font-size: 0.85rem;
        line-height: 1.6;
    }

    .hero-btns {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        padding: 18px;
    }

    .hamburger {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: 0.5s ease-in-out;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-cta {
        display: none;
    }

    .stats {
        flex-direction: column;
        gap: 40px;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 1.7rem;
    }

    .faq-question {
        font-size: 0.95rem;
        padding: 20px 22px;
    }

    .faq-answer p {
        padding: 0 22px 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero h2 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

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