:root {
    --color-primary: #5D4037;
    /* Brown */
    --color-primary-light: #8D6E63;
    --color-primary-dark: #3E2723;
    --color-white: #FFFFFF;
    --color-black: #000000;
    --color-gray-light: #F5F5F5;
    --color-text: #333333;
    --font-main: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --transition-speed: 0.3s;
}

/* Global Reset Class instead of * */
.global-reset,
.global-reset::before,
.global-reset::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: var(--font-main);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.hidden {
    display: none !important;
}

.section-padding {
    padding: 60px 0;
}

/* Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--color-white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-size: 2rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-top: 20px;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--color-gray-light);
    border-top: 5px solid var(--color-primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

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

/* Header & Navigation */
.ad-banner-top {
    background-color: var(--color-gray-light);
    color: var(--color-text);
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    border-bottom: 1px solid #ddd;
}

.main-header {
    background-color: var(--color-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.brand-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--color-primary);
    text-decoration: none;
}

.desktop-nav {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link {
    text-decoration: none;
    color: var(--color-black);
    font-weight: 500;
    transition: color var(--transition-speed);
}

.nav-link:hover {
    color: var(--color-primary);
}

.cta-button {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--color-primary-dark);
}

/* Mobile Menu */
.hamburger-menu {
    display: none;
    cursor: pointer;
    z-index: 1002;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--color-black);
}

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    /* 75% width as requested */
    height: 100%;
    background-color: var(--color-white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    padding-top: 60px;
}

.mobile-nav-overlay.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
}

.mobile-nav-item {
    margin: 15px 0;
}

.mobile-nav-link {
    font-size: 1.2rem;
    color: var(--color-black);
    text-decoration: none;
}

.close-menu-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-black);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 80vh;
    background-color: #f8f5f2;
    /* Light creamy background */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 5% 60px;
    /* Top padding for header */
    overflow: hidden;
}

.hero-overlay {
    display: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: left;
    color: var(--color-text);
    max-width: 600px;
    padding: 20px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--color-primary);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: #555;
    font-weight: 300;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 120%;
    /* Slightly larger to pop */
    width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.05) rotate(-2deg);
}

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

.about-image-wrapper {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image-wrapper:hover .about-img {
    transform: scale(1.1);
}

.about-content h2 {
    color: var(--color-primary);
    margin-bottom: 25px;
    font-size: 2.5rem;
}

/* Why Us Section */
.why-us-section {
    background-color: var(--color-gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--color-white);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

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

.testimonial-card {
    background: var(--color-white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--color-primary);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    font-weight: bold;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    margin-top: 10px;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    /* Adjust as needed */
}

.faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
}

/* Footer */
.main-footer {
    background-color: #222;
    color: #fff;
    padding: 60px 0 20px;
}

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

.footer-column h3 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-link:hover {
    color: var(--color-white);
}

.footer-ad-notice {
    background-color: #333;
    padding: 15px;
    text-align: center;
    margin-bottom: 20px;
    border: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

.copyright {
    text-align: center;
    color: #888;
    border-top: 1px solid #444;
    padding-top: 20px;
}

/* Cookies Modal */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background-color: var(--color-white);
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.2);
    padding: 20px;
    z-index: 10000;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-content {
    margin-right: 20px;
}

.cookie-btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    margin-left: 10px;
}

.cookie-btn.reject {
    background-color: #ccc;
    color: #333;
}

/* Responsiveness */
@media (max-width: 991px) {
    .hero-section {
        flex-direction: column-reverse;
        justify-content: center;
        text-align: center;
        padding-top: 100px;
        min-height: auto;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        padding-top: 20px;
    }

    .hero-image-container {
        width: 100%;
        max-width: 80%;
        margin-bottom: 20px;
    }

    .hero-img {
        width: 100%;
    }

    .desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

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

    .hero-title {
        font-size: 2.5rem;
    }

    .cookie-popup {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        margin-right: 0;
        margin-bottom: 15px;
    }
}