@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Outfit:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-green: #2d5a3d;
    --secondary-green: #4a7c5b;
    --light-green: #8fb996;
    --cream: #f5f3ed;
    --dark-brown: #3d2914;
    --gold: #c9a959;
    --white: #ffffff;
    --text-dark: #2c3e2d;
    --text-light: #5a6b5c;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--gold);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-green);
    color: var(--white);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--primary-green);
    color: var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.btn-gold {
    background-color: var(--gold);
    color: var(--dark-brown);
}

.btn-gold:hover {
    background-color: #b8983f;
    color: var(--dark-brown);
}

header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s ease;
    background-color: rgba(45, 90, 61, 0.95);
}

header.scrolled {
    position: fixed;
    background-color: rgba(45, 90, 61, 0.95);
    padding: 12px 0;
}

header.scrolled .logo {
    color: var(--white);
}

header.scrolled .nav-link {
    color: var(--white);
}

header.scrolled .nav-link:hover {
    color: var(--gold);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 1px;
}

.logo span {
    color: var(--gold);
}

nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-link {
    font-size: 13px;
    font-weight: 500;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 12px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    position: relative;
    width: 30px;
    height: 25px;
    justify-content: center;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    transition: all 0.3s ease;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.mobile-toggle span:nth-child(1) {
    top: 4px;
}

.mobile-toggle span:nth-child(2) {
    top: 50%;
    transform: translate(-50%, -50%);
}

.mobile-toggle span:nth-child(3) {
    bottom: 4px;
}

.mobile-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.85), rgba(61, 41, 20, 0.8));
    text-align: center;
    color: var(--white);
    padding: 80px 15px;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: rgba(201, 169, 89, 0.2);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--light-green);
    color: var(--primary-green);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.section-header h2 {
    color: var(--primary-green);
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-size: 14px;
}

.about-section {
    background-color: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: 20px;
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 15px 20px;
    text-align: center;
}

.about-image-badge span {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge small {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-content h2 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 14px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin: 20px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--primary-green);
    font-size: 16px;
}

.about-feature span {
    font-size: 13px;
    font-weight: 500;
}

.services-section {
    background-color: var(--cream);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: var(--white);
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.1);
    border-bottom-color: var(--gold);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
}

.service-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.service-card h3 {
    color: var(--primary-green);
    margin-bottom: 12px;
    font-size: 1.25rem;
}

.service-card p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 15px;
}

.process-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-brown));
    color: var(--white);
}

.process-section .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.process-section .section-header h2 {
    color: var(--white);
}

.process-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 30px;
    right: -15px;
    width: 30px;
    height: 2px;
    background-color: var(--gold);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 60px;
    height: 60px;
    background-color: var(--gold);
    color: var(--dark-brown);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.process-step p {
    font-size: 12px;
    opacity: 0.85;
}

.gallery-section {
    background-color: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(transparent, rgba(45, 90, 61, 0.9));
    color: var(--white);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.gallery-overlay p {
    font-size: 12px;
    opacity: 0.9;
}

.cta-section {
    position: relative;
    text-align: center;
    color: var(--white);
    padding: 80px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.9), rgba(61, 41, 20, 0.85));
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    margin-bottom: 15px;
}

.cta-content p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 14px;
}

.products-section {
    background-color: var(--cream);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background-color: var(--white);
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.1);
}

.product-image {
    position: relative;
    height: 200px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 48px;
    color: var(--primary-green);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.product-content p {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 15px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

.product-price small {
    font-size: 12px;
    font-weight: 400;
    color: var(--text-light);
}

footer {
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 15px;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    margin-bottom: 8px;
}

.footer-contact-item i {
    color: var(--gold);
    width: 16px;
}

.footer-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--gold);
}

.footer-links a {
    display: block;
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--gold);
    padding-left: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    opacity: 0.7;
}

.footer-legal {
    display: flex;
    gap: 15px;
}

.footer-legal a {
    font-size: 11px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    opacity: 1;
    color: var(--gold);
}

.page-hero {
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.9), rgba(61, 41, 20, 0.85)),
                url('../pictures/bg.webp') center/cover no-repeat;
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    margin-bottom: 12px;
}

.page-hero p {
    opacity: 0.9;
    max-width: 500px;
    margin: 0 auto;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
}

.breadcrumb a {
    opacity: 0.8;
}

.breadcrumb span {
    opacity: 0.5;
}

.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    padding: 35px;
    color: var(--white);
}

.contact-info h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 13px;
}

.contact-details {
    margin-bottom: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.contact-item i {
    color: var(--gold);
    font-size: 18px;
    margin-top: 2px;
}

.contact-item-content h4 {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 3px;
}

.contact-item-content p {
    font-size: 12px;
    opacity: 0.9;
}

.contact-hours h4 {
    font-size: 14px;
    margin-bottom: 10px;
    color: var(--gold);
}

.contact-hours p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 5px;
}

.contact-form-wrapper {
    padding: 35px;
    background-color: var(--cream);
}

.contact-form-wrapper h3 {
    color: var(--primary-green);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #ddd;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(45, 90, 61, 0.1);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    margin-bottom: 0;
    color: var(--text-light);
}

.form-checkbox a {
    color: var(--primary-green);
    text-decoration: underline;
}

.map-section {
    background-color: var(--cream);
}

.map-container {
    height: 350px;
    background-color: #ddd;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.info-cards-section {
    background-color: var(--white);
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-card {
    text-align: center;
    padding: 25px 15px;
    background-color: var(--cream);
    transition: all 0.3s ease;
}

.info-card:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

.info-card:hover i {
    color: var(--gold);
}

.info-card:hover h4 {
    color: var(--white);
}

.info-card i {
    font-size: 28px;
    color: var(--primary-green);
    margin-bottom: 12px;
}

.info-card h4 {
    font-size: 1rem;
    color: var(--primary-green);
    margin-bottom: 6px;
}

.info-card p {
    font-size: 11px;
    opacity: 0.8;
}

.thank-you-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.05), rgba(201, 169, 89, 0.05));
    text-align: center;
    padding: 60px 15px;
}

.thank-you-content {
    max-width: 500px;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border-radius: 50%;
}

.thank-you-icon i {
    font-size: 36px;
    color: var(--primary-green);
}

.thank-you-content h1 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.thank-you-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.error-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 90, 61, 0.05), rgba(201, 169, 89, 0.05));
    text-align: center;
    padding: 60px 15px;
}

.error-content {
    max-width: 500px;
}

.error-code {
    font-family: 'Cormorant Garamond', serif;
    font-size: 8rem;
    font-weight: 700;
    color: var(--light-green);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h1 {
    color: var(--primary-green);
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.policy-section {
    background-color: var(--white);
    padding: 60px 0;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-content h2 {
    color: var(--primary-green);
    margin: 30px 0 15px;
    font-size: 1.5rem;
}

.policy-content h3 {
    color: var(--primary-green);
    margin: 25px 0 12px;
    font-size: 1.2rem;
}

.policy-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.policy-content ul {
    margin: 15px 0;
    padding-left: 20px;
}

.policy-content li {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.policy-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 5px;
    height: 5px;
    background-color: var(--primary-green);
    border-radius: 50%;
}

.policy-date {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.features-section {
    background-color: var(--cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--white);
    padding: 30px 25px;
    text-align: center;
    border-top: 3px solid var(--gold);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.1);
}

.feature-card i {
    font-size: 36px;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.feature-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 12px;
}

.pricing-section {
    background-color: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.pricing-card {
    background-color: var(--cream);
    padding: 30px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background-color: var(--primary-green);
    color: var(--white);
    transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .pricing-price {
    color: var(--white);
}

.pricing-card.featured .pricing-price small {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured li i {
    color: var(--gold);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--gold);
    color: var(--dark-brown);
    padding: 5px 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.pricing-card h3 {
    color: var(--primary-green);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.pricing-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 20px;
}

.pricing-price small {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-card ul {
    text-align: left;
    margin-bottom: 25px;
}

.pricing-card li {
    font-size: 12px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-card li i {
    color: var(--primary-green);
    font-size: 14px;
}

.benefits-section {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-brown));
    color: var(--white);
}

.benefits-section .section-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--gold);
}

.benefits-section .section-header h2 {
    color: var(--white);
}

.benefits-section .section-header p {
    color: rgba(255, 255, 255, 0.8);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.benefit-item i {
    font-size: 28px;
    color: var(--gold);
}

.benefit-item h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.benefit-item p {
    font-size: 12px;
    opacity: 0.85;
}

.maintenance-plans {
    background-color: var(--cream);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.plan-card {
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    border-bottom: 3px solid var(--light-green);
    transition: all 0.3s ease;
}

.plan-card:hover {
    border-bottom-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(45, 90, 61, 0.1);
}

.plan-icon {
    width: 60px;
    height: 60px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border-radius: 50%;
}

.plan-icon i {
    font-size: 24px;
    color: var(--primary-green);
}

.plan-card h3 {
    color: var(--primary-green);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.plan-card p {
    color: var(--text-light);
    font-size: 12px;
    margin-bottom: 15px;
}

.plan-card ul {
    text-align: left;
    margin-bottom: 20px;
}

.plan-card li {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.plan-card li i {
    color: var(--primary-green);
    font-size: 12px;
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background-color: var(--dark-brown);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-close:hover {
    opacity: 1;
}

.cookie-popup h4 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.cookie-popup p {
    font-size: 12px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.cookie-popup a {
    color: var(--gold);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: 'Outfit', sans-serif;
}

.cookie-btn.accept {
    background-color: var(--gold);
    color: var(--dark-brown);
}

.cookie-btn.decline {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
}

.cookie-btn:hover {
    opacity: 0.9;
}

.testimonials-section {
    background-color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background-color: var(--cream);
    padding: 25px;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 24px;
    color: var(--light-green);
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-card p {
    font-size: 13px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 15px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 45px;
    height: 45px;
    background-color: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.testimonial-avatar i {
    font-size: 20px;
    color: var(--primary-green);
}

.testimonial-info h4 {
    font-size: 14px;
    color: var(--primary-green);
}

.testimonial-info span {
    font-size: 11px;
    color: var(--text-light);
}

.stats-section {
    background-color: var(--primary-green);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
    color: var(--white);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.faq-section {
    background-color: var(--cream);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--white);
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background-color: var(--cream);
}

.faq-question h4 {
    font-size: 14px;
    color: var(--primary-green);
}

.faq-question i {
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    max-height: 200px;
}

.faq-answer p {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }
    
    .services-grid,
    .products-grid,
    .features-grid,
    .pricing-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-step:nth-child(2)::after {
        display: none;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .info-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    
    .mobile-toggle {
        display: flex;
    }
    
    nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--primary-green);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }
    
    nav.active {
        transform: translateX(0);
    }
    
    .nav-link {
        font-size: 18px;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 15px 80px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .services-grid,
    .products-grid,
    .features-grid,
    .pricing-grid,
    .plans-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    section {
        padding: 40px 0;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        max-width: none;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.35rem; }
    
    .container {
        padding: 0 12px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .stats-grid,
    .info-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 8px;
    }
    
    .error-code {
        font-size: 5rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }
    
    h1 { font-size: 1.5rem; }
    h2 { font-size: 1.2rem; }
    
    .logo {
        font-size: 1.2rem;
    }
    
    .hero {
        padding: 100px 10px 60px;
    }
    
    section {
        padding: 30px 0;
    }
    
    .service-card,
    .product-card,
    .feature-card,
    .pricing-card,
    .plan-card {
        padding: 20px 15px;
    }
}
