/* Color Palette & Variables */
:root {
    --bg-color: #E6E4D9;
    --text-color: #1A2016;
    --accent-color: #9B8263;
    --accent-hover: #816A4F;
    --card-bg: rgba(200, 185, 160, 0.6);
    --footer-bg: #6B5B49;
    --footer-text: #E5E0D5;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography Utilities */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 400;
}

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

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 5%;
    background: transparent;
}
.logo {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-color);
    display: flex;
    align-items: baseline;
    letter-spacing: -0.5px;
}
.logo-accent {
    font-style: italic;
    color: var(--accent-color);
    margin-left: 6px;
    font-weight: 400;
    font-size: 1.8rem;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-size: 1rem;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: var(--accent-color);
}

/* Base Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--accent-color);
    color: #fff;
    padding: 1rem 2rem;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s ease;
    border: none;
    cursor: pointer;
}
.btn-primary:hover {
    background-color: var(--accent-hover);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 5% 4rem;
    min-height: 80vh;
    position: relative;
}
.hero-content {
    flex: 1;
    max-width: 45%;
    padding-right: 2rem;
}
.hero-content h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}
.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-image {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    padding-right: 0;
}
.image-wrapper {
    display: grid;
    grid-template-columns: 280px 250px;
    grid-template-rows: 250px auto;
    column-gap: 25px;
    row-gap: 25px;
    width: auto;
    height: auto;
    align-items: center;
}
.img-main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: 1;
    grid-row: 1 / 3;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.img-secondary {
    width: 100%;
    height: 100%;
    object-fit: cover;
    grid-column: 2;
    grid-row: 1;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.glass-card {
    grid-column: 2;
    grid-row: 2;
    background: rgba(235, 228, 218, 0.8);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    border-radius: 4px;
    width: 100%;
    color: var(--text-color);
    box-shadow: 0 8px 30px rgba(0,0,0,0.05);
}
.glass-card h3 {
    margin-bottom: 0.5rem;
}
.glass-card p {
    font-size: 0.85rem;
    margin-bottom: 1rem;
}
.link-arrow {
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Wavy background lines for Hero (Simulated radial lines) */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: 0;
    width: 50vw;
    height: 120vh;
    background: repeating-radial-gradient(ellipse at top right, transparent, transparent 40px, rgba(155, 130, 99, 0.05) 41px, rgba(155, 130, 99, 0.05) 42px);
    border-radius: 50%;
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -10vw;
    width: 60vw;
    height: 60vw;
    background: repeating-radial-gradient(circle at bottom left, transparent, transparent 50px, rgba(155, 130, 99, 0.05) 51px, rgba(155, 130, 99, 0.05) 52px);
    z-index: -1;
    border-radius: 50%;
}


/* Benefits Section */
.benefits {
    padding: 6rem 5%;
    text-align: center;
}
.section-title {
    font-size: 3rem;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: left;
}
.benefit-item {
    border-left: 5px solid var(--accent-color);
    padding-left: 1rem;
}
.benefit-item h3 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}
.benefit-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}
.b-icon {
    display: none; /* Hidden to match the design */
}

/* Solution Section */
.solution-section {
    display: flex;
    align-items: center;
    padding: 6rem 5%;
    gap: 5rem;
}
.solution-text {
    flex: 1;
}
.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}
.pain-points {
    list-style: none;
    margin-bottom: 1.5rem;
}
.pain-points li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #555;
}
.pain-points i {
    color: #D9534F;
}
.solution-image {
    flex: 1;
}
.solution-image img {
    width: 100%;
    max-width: 500px;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Services */
.services {
    padding: 6rem 5%;
}
.services-content {
    display: flex;
    width: 100%;
    gap: 5rem;
    align-items: center;
}
.services-cta-image {
    flex: 1;
}
.services-cta-image img {
    width: 100%;
    max-width: 500px;
    height: 600px;
    object-fit: cover;
}
.services-text {
    flex: 1;
}
.services-text h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}
.service-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.service-list-item {
    display: flex;
    gap: 1rem;
}
.service-list-item i {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
}
.service-list-item h4 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
}
.service-list-item p {
    font-size: 0.95rem;
    opacity: 0.8;
}


/* FAQ */
.faq-reviews {
    display: flex;
    padding: 6rem 5%;
    gap: 5rem;
    align-items: center;
}
.faq-accordion {
    flex: 1;
}
details {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
    cursor: pointer;
}
summary {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}
summary::-webkit-details-marker {
    display: none;
}
details p {
    margin-top: 1rem;
    color: #555;
    padding-right: 2rem;
}
.reviews-box {
    flex: 1;
}
.reviews-box img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Final CTA */
.final-cta {
    padding: 4rem 5%;
    text-align: center;
}
.cta-banner {
    background: var(--card-bg);
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 4px;
}
.cta-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}
.cta-banner p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.small-text {
    margin-top: 1rem;
    font-size: 0.9rem !important;
    opacity: 0.8;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    padding: 4rem 5% 2rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
    gap: 3rem;
}
.footer-about h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #fff;
}
.footer-about p {
    opacity: 0.8;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}
.socials i {
    font-size: 1.5rem;
    margin-right: 1rem;
    cursor: pointer;
}
.footer-links h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #fff;
}
.footer-links a {
    display: block;
    margin-bottom: 0.8rem;
    opacity: 0.8;
    font-size: 0.9rem;
}
.footer-links a:hover {
    opacity: 1;
    color: var(--accent-color);
}
.footer-links p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero, .solution-section, .services-content, .faq-reviews {
        flex-direction: column;
    }
    .hero-content {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 4rem;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .hero-image {
        width: 100%;
    }
    .image-wrapper {
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    .img-main, .img-secondary {
        position: relative;
        left: 0;
        top: 0;
        margin: 0;
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    .glass-card {
        position: relative;
        bottom: auto;
        right: auto;
        width: 100%;
        max-width: 350px;
    }
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .nav-links {
        display: none; /* Simple mobile hide, real site needs hamburger */
    }
}
@media (max-width: 600px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    .hero-content h1 {
        font-size: 2.5rem;
    }
}
