/* --- VARIABLES & RESET --- */
:root {
    --pri: #F5FAF8;
    --sec: #7ECAB4;
    --acc: #4AA88C;
    --dark: #1a2e26; /* Darkened for better contrast */
    --dark-alt: #2D5A4A;
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--dark);
    color: var(--pri);
    font-family: var(--font-body);
    line-height: 1.7;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--pri);
    line-height: 1.2;
    font-weight: 700;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

a {
    color: var(--sec);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--acc);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

.py-5 {
    padding: 80px 0;
}

.bg-alt {
    background-color: var(--dark-alt);
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    background-color: var(--sec);
    color: var(--dark);
    padding: 14px 24px;
    border-radius: 8px 0 8px 0;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid var(--sec);
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--acc);
    border-color: var(--acc);
    color: var(--pri);
    transform: translateY(-2px);
}

/* --- CARDS --- */
.card {
    background-color: var(--dark-alt);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.card-content {
    padding: 24px;
}

/* --- HEADER --- */
.header-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    padding: 20px 0;
    transition: background-color 0.4s ease, padding 0.4s ease;
}

.header-sticky.scrolled {
    background-color: rgba(45, 90, 74, 0.9);
    backdrop-filter: blur(10px);
    padding: 15px 0;
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--pri);
}

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

.nav-links a {
    color: var(--pri);
    font-weight: 500;
    position: relative;
    padding-bottom: 5px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sec);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--pri);
    font-size: 2rem;
    cursor: pointer;
}

/* --- HERO --- */
.hero {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(26,46,38,0.9) 0%, rgba(26,46,38,0.3) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

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

.section-title h2 {
    margin-bottom: 15px;
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--sec);
}

/* Masonry Grid */
.masonry-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.item-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

/* Features Icons */
.features-icons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-icon-item img {
    height: 60px;
    margin: 0 auto 15px;
}

.feature-icon-item span {
    font-weight: 500;
}

/* Gallery Masonry */
.gallery-masonry {
    column-count: 4;
    column-gap: 15px;
}
.gallery-item {
    width: 100%;
    margin-bottom: 15px;
    break-inside: avoid;
    border-radius: 10px;
}

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    text-align: center;
}

.stat-item .stat-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    color: var(--sec);
    display: block;
}

.stat-item .stat-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Simple */
.cta-simple {
    text-align: center;
}
.cta-simple h2 {
    margin-bottom: 15px;
}
.cta-simple p {
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.footer-wave {
    position: relative;
    padding-top: 150px; /* Space for the wave */
    background: linear-gradient(to bottom, var(--dark), var(--dark-alt));
}

.footer-wave-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateY(-99%);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 50px;
}

.footer-col h3, .footer-col h4 {
    margin-bottom: 20px;
    color: var(--pri);
}

.footer-col p, .footer-col li {
    margin-bottom: 10px;
    color: #b0c9c1;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background-color: var(--dark);
    color: var(--sec);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--sec);
    color: var(--dark);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--dark-alt);
    color: #b0c9c1;
}

/* --- ABOUT PAGE --- */
.page-header {
    text-align: center;
    background-color: var(--dark-alt);
}

.text-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.column p {
    margin-bottom: 20px;
}

.quote-side-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    align-items: center;
}

.quote-image img {
    border-radius: 20px;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

blockquote {
    font-size: 1.5rem;
    font-style: italic;
    border-left: 4px solid var(--sec);
    padding-left: 25px;
    margin-bottom: 20px;
}

cite {
    font-weight: 600;
    color: var(--sec);
}

/* --- FAQ PAGE --- */
.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background-color: var(--dark-alt);
    border-radius: 10px;
    border: 1px solid #2d5a4a55;
}

.faq-item summary {
    padding: 20px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    padding: 0 20px 20px;
    color: #b0c9c1;
}

/* --- CONTACT PAGE --- */
.contact-centered {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-details, .contact-form {
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark);
    border: 1px solid var(--dark-alt);
    border-radius: 5px;
    color: var(--pri);
    font-family: var(--font-body);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
}
.map-container iframe { filter: invert(90%) hue-rotate(180deg) contrast(0.9); }

.business-hours, .contact-social { margin-top: 30px; }

/* --- LEGAL PAGES --- */
.legal-page .container {
    max-width: 800px;
}

.legal-page h1, .legal-page h2 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-page p, .legal-page li {
    margin-bottom: 15px;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--dark-alt);
    padding: 20px;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 20px;
    z-index: 2000;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.3);
    flex-wrap: wrap;
}

.cookie-banner p { margin: 0; }

.btn-cookie {
    background: var(--sec);
    color: var(--dark);
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
}
.btn-cookie:last-child {
    background: transparent;
    border: 1px solid var(--sec);
    color: var(--sec);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }

    .features-icons-grid, .gallery-masonry { grid-template-columns: repeat(2, 1fr); column-count: 2; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .quote-side-layout { grid-template-columns: 1fr; }
    .quote-image { display: none; }
    .masonry-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        background-color: var(--dark-alt);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.4s ease-in-out;
    }
    .nav-links.active { right: 0; }
    .mobile-nav-toggle { display: block; z-index: 1001; }
    .hero-content { max-width: 80%; }
    .stats-row, .text-columns { flex-direction: column; grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr; }
    .cookie-banner { flex-direction: column; text-align: center; }
}
