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

html {
    font-size: 10px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Archivo', sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Container */
.container {
    width: 100%;
    max-width: 120rem;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e27;
    color: #fff;
    padding: 2rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -0.4rem 1.2rem rgba(0,0,0,0.2);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 120rem;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    flex: 1;
    min-width: 28rem;
    font-size: 1.4rem;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-btn {
    padding: 1rem 2.4rem;
    border: none;
    border-radius: 0.5rem;
    font-family: 'Archivo', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: #4a6741;
    color: #fff;
}

.cookie-accept:hover {
    background: #5a7751;
}

.cookie-decline {
    background: transparent;
    color: #fff;
    border: 0.2rem solid #fff;
}

.cookie-decline:hover {
    background: rgba(255,255,255,0.1);
}

/* Header */
.header {
    background: #fff;
    box-shadow: 0 0.2rem 1rem rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.6rem 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e27;
}

.nav-menu {
    display: none;
    gap: 3rem;
}

.nav-menu li a {
    font-size: 1.5rem;
    font-weight: 500;
    color: #333;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: #4a6741;
}

.nav-icons {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.icon-link {
    color: #333;
    transition: color 0.3s ease;
}

.icon-link:hover {
    color: #4a6741;
}

.burger-menu {
    background: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem;
}

.burger-menu span {
    width: 2.5rem;
    height: 0.3rem;
    background: #333;
    border-radius: 0.2rem;
    transition: all 0.3s ease;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(0.7rem, 0.7rem);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(0.7rem, -0.7rem);
}

/* Hero Section */
.hero {
    position: relative;
    height: 60rem;
    background: url('./img/p1.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 80rem;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.6rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.4rem 3.2rem;
    border-radius: 0.5rem;
    font-size: 1.6rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: 'Archivo', sans-serif;
}

.btn-primary {
    background: #4a6741;
    color: #fff;
}

.btn-primary:hover {
    background: #5a7751;
    transform: translateY(-0.2rem);
}

.btn-secondary {
    background: transparent;
    color: #4a6741;
    border: 0.2rem solid #4a6741;
}

.btn-secondary:hover {
    background: #4a6741;
    color: #fff;
}

/* Section Styles */
.why-choose,
.categories,
.gallery,
.contact {
    padding: 8rem 0;
}

.section-title {
    font-size: 3.2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1.6rem;
    color: #2c3e27;
}

.section-title.white {
    color: #fff;
}

.section-subtitle {
    font-size: 1.6rem;
    text-align: center;
    color: #666;
    max-width: 70rem;
    margin: 0 auto 5rem;
}

/* Why Choose Section */
.why-choose {
    background: #f9f9f9;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.feature-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    min-width: 26rem;
    max-width: 30rem;
    box-shadow: 0 0.4rem 1.2rem rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.8rem 2rem rgba(0,0,0,0.12);
}

.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 7rem;
    height: 7rem;
    background: #e8f4e5;
    border-radius: 50%;
    color: #4a6741;
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 1.2rem;
    color: #2c3e27;
}

.feature-description {
    font-size: 1.4rem;
    color: #666;
    line-height: 1.6;
}

/* Categories Section */
.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.category-card {
    position: relative;
    flex: 1;
    min-width: 26rem;
    max-width: 30rem;
    height: 35rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
}

.category-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 3rem 2rem 2rem;
    display: flex;
    align-items: flex-end;
}

.category-name {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
}

.category-card:hover .category-image {
    transform: scale(1.1);
}

/* Testimonials Section */
.testimonials {
   background: url('./img/p2.png') center/cover no-repeat;
    padding: 8rem 0;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(1rem);
    padding: 3rem 2.5rem;
    border-radius: 1rem;
    text-align: center;
    flex: 1;
    min-width: 28rem;
    max-width: 36rem;
    color: #fff;
    border: 0.1rem solid rgba(255,255,255,0.2);
}

.testimonial-avatar {
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    border-radius: 50%;
    overflow: hidden;
    border: 0.3rem solid #fff;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-stars {
    font-size: 2rem;
    color: #ffd700;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1.3rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Gallery Section */
.gallery-filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.filter-btn {
    padding: 1rem 2.4rem;
    background: transparent;
    border: 0.2rem solid #4a6741;
    color: #4a6741;
    border-radius: 5rem;
    font-size: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Archivo', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4a6741;
    color: #fff;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.gallery-item {
    flex: 1;
    min-width: 26rem;
    max-width: 30rem;
    height: 30rem;
    border-radius: 1rem;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-0.5rem);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item.hidden {
    display: none;
}

/* Contact Section */
.contact {
    background: #f9f9f9;
}

.contact-form {
    max-width: 80rem;
    margin: 0 auto;
    background: #fff;
    padding: 4rem 3rem;
    border-radius: 1rem;
    box-shadow: 0 0.4rem 2rem rgba(0,0,0,0.1);
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    min-width: 25rem;
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    min-width: 100%;
}

.form-group label {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.6rem;
    border: 0.2rem solid #ddd;
    border-radius: 0.5rem;
    font-size: 1.5rem;
    font-family: 'Archivo', sans-serif;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6741;
}

.form-group textarea {
    resize: vertical;
    min-height: 12rem;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    margin-top: 0.3rem;
    width: 1.8rem;
    height: 1.8rem;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    margin-top: 2rem;
}

/* Success Section */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 0;
    background: #f9f9f9;
}

.success-content {
    text-align: center;
    max-width: 60rem;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12rem;
    height: 12rem;
    background: #e8f4e5;
    border-radius: 50%;
    color: #4a6741;
    margin-bottom: 3rem;
}

.success-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #2c3e27;
    margin-bottom: 1.6rem;
}

.success-text {
    font-size: 1.6rem;
    color: #666;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.success-subtext {
    font-size: 1.5rem;
    color: #888;
    margin-bottom: 3rem;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
}

/* Footer */
.footer {
    background: #2c3e27;
    color: #fff;
    padding: 6rem 0 2rem;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-column {
    flex: 1;
    min-width: 22rem;
}

.footer-title {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.footer-text {
    font-size: 1.4rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.8);
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-0.3rem);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 0.1rem solid rgba(255,255,255,0.1);
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
}

.footer-bottom a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Tablet Styles */
@media (min-width: 768px) {
    html {
        font-size: 10px;
    }

    .burger-menu {
        display: none;
    }

    .nav-menu {
        display: flex;
    }

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

    .hero-subtitle {
        font-size: 2rem;
    }

    .gallery-item {
        min-width: 22rem;
        max-width: 28rem;
    }

    .category-card {
        min-width: 22rem;
    }
}

/* Desktop Styles */
@media (min-width: 1024px) {
    .container {
        padding: 0 4rem;
    }

    .hero {
        height: 70rem;
    }

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

    .hero-subtitle {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 4rem;
    }

    .features-grid {
        gap: 4rem;
    }

    .feature-card {
        padding: 4rem 3rem;
    }

    .gallery-item {
        min-width: 27rem;
        max-width: 35rem;
        height: 35rem;
    }

    .contact-form {
        padding: 5rem 4rem;
    }
}