/* CSS Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

:root {
    /* Color Palette */
    --primary-green: #2d5a4a;
    --secondary-green: #4a7c5f;
    --light-green: #e8f5e9;
    --beige: #f5f5f0;
    --neutral-light: #f9f9f9;
    --neutral-dark: #333333;
    --white: #ffffff;
    --text-color: #444444;
    --highlight: #f7c35f;
    
    /* Typography */
    --heading-font: 'Lora', serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Spacing */
    --section-padding: 5rem 0;
    --container-max-width: 1200px;
    
    /* Border Radius */
    --border-radius: 1rem; /* 2xl equivalent */
    
    /* Shadows */
    --shadow-soft: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --whatsapp-green: #25d366;
}

/* Base Typography */
body {
    font-family: var(--body-font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

body.mobile-menu-open {
    overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--primary-green);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

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

/* Container */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.glance-section .section-header h2 {
    color: var(--white);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--highlight);
}

.glance-section .section-header h2::after {
    background-color: var(--highlight);
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-family: var(--body-font);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: var(--highlight);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

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

.btn-secondary:hover {
    background-color: var(--highlight);
    color: var(--primary-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Navigation Bar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 1.5rem;
    overflow: visible;
}

.nav-wrapper {
    max-width: var(--container-max-width);
    margin: 0 auto;
    overflow: visible;
}

.nav-container {
    background-color: var(--white);
    border-radius: 50px;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-medium);
    gap: 2rem;
    max-width: 100%;
    overflow: visible;
    position: relative;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-img {
    height: 80px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.nav-logo h2 {
    font-family: var(--heading-font);
    color: var(--primary-green);
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
    color: var(--neutral-dark);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    display: inline-block;
    cursor: default;
}

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

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

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

/* Make nav-link clickable only when it's an anchor tag */
a.nav-link {
    cursor: pointer;
}

/* Keep span nav-link non-clickable but allow hover effects */
span.nav-link {
    cursor: default;
    pointer-events: auto;
}

span.nav-link:hover {
    pointer-events: auto;
}

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

.nav-link.active::after {
    width: 100%;
}

/* Phone Number */
.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-icon {
    color: var(--primary-green);
    flex-shrink: 0;
}

.phone-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    white-space: nowrap;
}

.phone-link:hover {
    color: var(--secondary-green);
}

/* Get In Touch Button */
.btn-get-in-touch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--highlight);
    color: var(--neutral-dark);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Mobile Get In Touch Button - Hidden by default on desktop */
.mobile-get-in-touch {
    display: none;
}

.btn-get-in-touch:hover {
    background-color: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-get-in-touch .arrow-icon {
    transition: transform 0.3s ease;
}

.btn-get-in-touch:hover .arrow-icon {
    transform: translate(3px, -3px);
}

/* Dropdown Menu */
.nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown > .nav-link {
    padding-right: 1rem;
}

.nav-item.dropdown > .nav-link::before {
    content: '▾';
    position: absolute;
    top: 50%;
    right: -0.35rem;
    transform: translateY(-52%);
    font-size: 0.8rem;
    color: var(--primary-green);
    transition: transform 0.25s ease;
}

.nav-item.dropdown:hover > .nav-link::before,
.nav-item.dropdown.active > .nav-link::before {
    transform: translateY(-52%) rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1002;
    margin-top: 0.5rem;
}

.nav-item.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background-color: var(--highlight);
    color: var(--primary-green);
}

/* Nested Dropdown Submenu */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > a::after {
    content: '▶';
    float: right;
    font-size: 0.75rem;
    margin-left: 0.5rem;
    color: var(--text-color);
    transition: transform 0.3s ease;
}

.dropdown-submenu:hover > a::after {
    transform: translateX(3px);
}

.submenu {
    position: absolute;
    top: 0;
    left: 100%;
    background-color: var(--white);
    min-width: 200px;
    box-shadow: var(--shadow-medium);
    border-radius: var(--border-radius);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    list-style: none;
    padding: 0.5rem 0;
    z-index: 1003;
    margin-left: 0.5rem;
}

.dropdown-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu:hover {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.submenu li {
    margin: 0;
}

.submenu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--text-color);
    transition: all 0.3s ease;
}

.submenu a:hover {
    background-color: var(--highlight);
    color: var(--primary-green);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1002;
}

.mobile-menu-backdrop {
    display: none;
}

/* Mobile drawer header is hidden on desktop */
.nav-menu-header,
.mobile-menu-logo-link,
.mobile-menu-close {
    display: none;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger Menu Animation */
.mobile-toggle.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
    pointer-events: none;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    color: #333333;
    max-width: 100%;
}

.hero-overlay {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 2rem 1.5rem;
    border-radius: var(--border-radius);
}

.hero-title-top {
    color: var(--white);
    position: relative;
    display: inline-block;
    padding-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-title-top::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -8px;
    width: 65%;
    max-width: 360px;
    height: 8px;
    background-color: var(--highlight);
    border-radius: 999px;
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-size: 1px;
    margin-bottom: 1rem;
    color: var(--white);
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Introduction Section */
.intro-section {
    padding: var(--section-padding);
    background-color: var(--neutral-light);
}

.intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* At a Glance Section */
.glance-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.glance-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.glance-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.glance-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 15% 15%, rgba(247, 195, 95, 0.18), transparent 40%),
        linear-gradient(130deg, rgba(15, 42, 34, 0.76), rgba(45, 90, 74, 0.64));
    z-index: 2;
}

.glance-section .container {
    position: relative;
    z-index: 3;
}

.glance-section .section-header h2 {
    color: #ffffff;
}

.glance-section .section-header p {
    color: rgba(235, 247, 238, 0.9);
    max-width: 640px;
    font-size: 1.02rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1.15rem;
}

.stat-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.09));
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 1.1rem;
    padding: 1.35rem 1.2rem 1.25rem;
    text-align: left;
    box-shadow: 0 18px 30px rgba(9, 25, 20, 0.2);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: -25px;
    right: -25px;
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: rgba(247, 195, 95, 0.22);
    pointer-events: none;
}

.stat-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 195, 95, 0.62);
    box-shadow: 0 24px 36px rgba(9, 25, 20, 0.28);
}

.stat-kicker {
    display: inline-flex;
    align-items: center;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(247, 195, 95, 0.95);
    font-weight: 700;
    margin-bottom: 0.55rem;
}

.stat-number {
    font-size: clamp(1.75rem, 3vw, 2.35rem);
    color: #ffffff;
    margin-bottom: 0.25rem;
    line-height: 1.15;
    font-weight: 700;
}

.stat-label {
    margin: 0;
    font-size: 0.96rem;
    font-weight: 600;
    color: rgba(236, 248, 240, 0.92);
}

/* Products Section */
.products-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f8fbf8 0%, #eef5f1 100%);
}

.products-carousel {
    position: relative;
    padding: 1.2rem 0 0.5rem;
}

.carousel-filters {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.carousel-filter-btn {
    border: 1px solid rgba(45, 90, 74, 0.2);
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-green);
    padding: 0.42rem 0.9rem;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.25s ease;
}

.carousel-filter-btn:hover {
    border-color: var(--highlight);
    transform: translateY(-1px);
}

.carousel-filter-btn.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    box-shadow: 0 10px 20px rgba(45, 90, 74, 0.2);
}

.carousel-container {
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 0.65rem 0.45rem 1rem;
}

.carousel-track {
    display: flex;
    align-items: stretch;
    transition: transform 0.65s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.product-card {
    flex: 0 0 calc((100% - 3.6rem) / 3);
    background: rgba(255, 255, 255, 0.96);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    margin: 0 0.6rem;
    border: 1px solid rgba(45, 90, 74, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 18px 30px rgba(45, 90, 74, 0.18);
}

.product-image {
    height: 220px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

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

.product-content {
    padding: 1.15rem 1.15rem 1.25rem;
    display: flex;
    flex-direction: column;
    min-height: 208px;
}

.product-content h3 {
    margin-bottom: 0.45rem;
    font-size: 1.35rem;
}

.product-content p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.product-category {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.74rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.7rem;
    font-weight: 700;
    background: rgba(247, 195, 95, 0.22);
    color: #325a4a;
}

.product-content .btn {
    margin-top: auto;
}

.carousel-nav {
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 58%;
    transform: translateY(-50%);
    padding: 0 0.1rem;
    pointer-events: none;
    z-index: 4;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.45rem;
    margin-top: 0.35rem;
}

.carousel-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    border: none;
    background: rgba(45, 90, 74, 0.25);
    cursor: pointer;
    transition: all 0.25s ease;
    padding: 0;
}

.carousel-dot:hover {
    background: rgba(45, 90, 74, 0.45);
}

.carousel-dot.active {
    width: 24px;
    background: var(--primary-green);
}

.carousel-btn {
    background-color: var(--white);
    color: var(--white);
    border: 1px solid rgba(45, 90, 74, 0.2);
    width: 46px;
    height: 46px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.28s ease;
    color: var(--primary-green);
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    pointer-events: auto;
}

.carousel-btn:hover {
    background-color: var(--highlight);
    color: #1f3e32;
    transform: translateY(-2px) scale(1.04);
    border-color: var(--highlight);
}

/* Reviews Section */
.reviews-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #ffffff 0%, #f6faf7 100%);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.review-card {
    background: linear-gradient(165deg, #ffffff, #f3f8f5);
    padding: 2rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(45, 90, 74, 0.09);
    box-shadow: 0 14px 28px rgba(20, 42, 34, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.review-card::before {
    content: '“';
    position: absolute;
    top: 0.7rem;
    right: 1rem;
    font-size: 2.4rem;
    line-height: 1;
    color: rgba(45, 90, 74, 0.12);
    font-family: var(--heading-font);
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(247, 195, 95, 0.55);
    box-shadow: 0 20px 34px rgba(20, 42, 34, 0.14);
}

.review-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.review-stars .star {
    color: var(--highlight);
    font-size: 1.25rem;
    line-height: 1;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    flex-grow: 1;
    font-style: italic;
}

.review-author {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(45, 90, 74, 0.1);
}

.review-author h4 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: var(--primary-green);
}

.review-author p {
    font-size: 0.9rem;
    color: var(--text-color);
    margin: 0;
    opacity: 0.8;
}

.reviews-carousel-controls {
    display: none;
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(180deg, #f7fbf8 0%, #edf5f1 100%);
}

.faq-list {
    max-width: 920px;
    margin: 0 auto;
    display: grid;
    gap: 0.8rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(45, 90, 74, 0.12);
    border-radius: 0.95rem;
    box-shadow: 0 10px 20px rgba(18, 36, 29, 0.06);
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
    border-color: rgba(247, 195, 95, 0.5);
    box-shadow: 0 14px 24px rgba(18, 36, 29, 0.1);
}

.faq-question {
    width: 100%;
    border: none;
    background: transparent;
    text-align: left;
    padding: 1rem 1.15rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: var(--primary-green);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(45, 90, 74, 0.1);
    color: var(--primary-green);
    font-weight: 700;
    transition: transform 0.25s ease, background-color 0.25s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: rgba(247, 195, 95, 0.45);
}

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

.faq-answer p {
    margin: 0;
    padding: 0 1.15rem 1.05rem;
    color: var(--text-color);
    line-height: 1.7;
}

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

/* Footer */
.footer {
    background-color: #0f2a22;
    color: var(--white);
    padding: 4rem 0 1.25rem;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.footer-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.2;
    transform: scale(1.04);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top left, rgba(74, 124, 95, 0.45), rgba(15, 42, 34, 0.92));
    z-index: 2;
}

.footer .container {
    position: relative;
    z-index: 3;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
    letter-spacing: 0.02em;
}

.footer-section {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(5px);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-contact-list li {
    color: rgba(232, 245, 233, 0.92);
    line-height: 1.65;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.55rem;
}

.footer-contact-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(247, 195, 95, 0.22);
    color: #ffe3a1;
    flex-shrink: 0;
    margin-top: 0.08rem;
}

.footer-contact-icon svg {
    width: 14px;
    height: 14px;
    display: block;
}

.footer-contact-list strong {
    color: #ffe3a1;
    font-weight: 700;
}

.phone-nowrap {
    white-space: nowrap;
}

.contact-nowrap {
    white-space: nowrap;
}

.footer-section a {
    color: rgba(232, 245, 233, 0.92);
}

.footer-section a:hover {
    color: var(--highlight);
}

.footer-logo {
    max-width: 230px;
    height: auto;
    display: block;
    margin-top: 0;
}

.footer-brand-description {
    margin: 0.75rem 0 0;
    color: rgba(232, 245, 233, 0.9);
    font-size: 0.86rem;
    line-height: 1.6;
    max-width: 260px;
}

.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: nowrap;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 12px;
    color: var(--light-green);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon svg {
    width: 24px;
    height: 24px;
    display: block;
}

.social-icon:hover {
    background-color: #ffffff;
    border-color: #ffffff;
    color: #1b3f33;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.newsletter-helper-text {
    margin: -0.2rem 0 0.75rem;
    color: rgba(232, 245, 233, 0.9);
    font-size: 0.86rem;
    line-height: 1.6;
}

.newsletter-form input {
    padding: 0.85rem 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    margin-bottom: 0.35rem;
    background-color: rgba(255, 255, 255, 0.95);
    color: #17362d;
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--highlight);
    box-shadow: 0 0 0 3px rgba(247, 195, 95, 0.22);
}

.newsletter-form button {
    background: linear-gradient(135deg, var(--highlight), #ffd784);
    color: #17362d;
    border: none;
    padding: 0.82rem;
    border-radius: 10px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 18px rgba(247, 195, 95, 0.28);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-copy {
    color: rgba(255, 255, 255, 0.92);
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    word-wrap: break-word;
}

.designer-link {
    color: #ffe3a1;
    text-decoration: underline;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-legal-links {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
}

.footer-legal-link {
    color: #ffe3a1;
    text-decoration: underline;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

.designer-link:hover {
    color: var(--highlight);
}

/* Legal Page */
.page-hero.legal-hero {
    min-height: 58vh;
    margin-top: 0;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero-background {
    position: absolute;
    inset: 0;
}

.page-hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10, 25, 20, 0.68), rgba(18, 42, 34, 0.68));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 760px;
    padding: 8rem 0 3rem;
}

.page-hero-kicker {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffe3a1;
    font-weight: 700;
    margin-bottom: 0.7rem;
}

.page-hero-content h1 {
    color: var(--white);
    margin-bottom: 0.55rem;
}

.page-hero-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.legal-content-section {
    padding: 3rem 0 4.5rem;
    background: linear-gradient(180deg, #f7fbf8 0%, #eef5f1 100%);
}

.legal-content-card {
    max-width: 960px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid rgba(45, 90, 74, 0.12);
    border-radius: 1rem;
    box-shadow: 0 16px 30px rgba(20, 42, 34, 0.08);
    padding: 1.55rem 1.45rem;
}

.legal-content-card h2 {
    font-size: 1.23rem;
    margin-top: 1.4rem;
    margin-bottom: 0.55rem;
}

.legal-content-card p,
.legal-content-card li {
    font-size: 0.97rem;
    line-height: 1.75;
}

.legal-content-card ul {
    margin: 0 0 0.85rem 1.2rem;
}

.legal-note {
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(45, 90, 74, 0.22);
    font-style: italic;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.hidden {
    display: none;
}

/* Floating WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1faf56);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    box-shadow: 0 14px 28px rgba(10, 42, 30, 0.28);
    transition: all 0.3s ease;
    z-index: 1105;
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

.whatsapp-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 18px 34px rgba(10, 42, 30, 0.35);
}

.whatsapp-btn:active {
    transform: scale(0.95);
}

.cookie-banner {
    position: fixed;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1200;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}

.cookie-banner.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-banner-content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.95rem 1rem;
    border-radius: 14px;
    background: rgba(15, 42, 34, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.16);
    box-shadow: 0 20px 36px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cookie-banner-text h4 {
    margin: 0 0 0.2rem;
    font-size: 1rem;
    color: #fff;
}

.cookie-banner-text p {
    margin: 0;
    color: rgba(237, 246, 241, 0.92);
    font-size: 0.9rem;
    line-height: 1.5;
}

.cookie-banner-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    flex-shrink: 0;
}

.cookie-btn {
    border: none;
    border-radius: 999px;
    padding: 0.5rem 0.95rem;
    font-size: 0.84rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s ease;
}

.cookie-btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #f3faf6;
    border: 1px solid rgba(255, 255, 255, 0.24);
}

.cookie-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cookie-btn-primary {
    background: var(--highlight);
    color: #18352c;
}

.cookie-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(247, 195, 95, 0.34);
}






