@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Nunito:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a3d;
    --primary-light: #4a8c5f;
    --secondary: #c77b4a;
    --accent: #e8b86d;
    --cream: #faf8f5;
    --sage: #a8c5a8;
    --terracotta: #c9735b;
    --dark: #2c3e2f;
    --text: #3d4a3f;
    --text-light: #6b7d6d;
    --white: #ffffff;
    --shadow: 0 2px 15px rgba(45,90,61,0.1);
    --shadow-hover: 0 8px 30px rgba(45,90,61,0.15);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Nunito', sans-serif;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--terracotta);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-visible {
    transform: translateY(0);
}

.header-hidden {
    transform: translateY(-100%);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    margin: 10px;
    border-radius: 50px;
    box-shadow: var(--shadow);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 5px;
    background: none;
    border: none;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--dark);
    transition: var(--transition);
    display: block;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(168,197,168,0.2) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 70%;
    height: 140%;
    background: radial-gradient(circle, rgba(168,197,168,0.3) 0%, transparent 70%);
    z-index: 0;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.hero-text h1 span {
    color: var(--primary);
}

.hero-text p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 450px;
}

.hero-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-hover);
}

.hero-badge {
    position: absolute;
    bottom: 20px;
    left: -20px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero-badge i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.hero-badge span {
    font-weight: 600;
    font-size: 0.85rem;
}

section {
    padding: 60px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header span {
    display: inline-block;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.section-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.section-header p {
    color: var(--text-light);
    max-width: 550px;
    margin: 0 auto;
    font-size: 0.95rem;
}

.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary), var(--sage));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    color: var(--white);
    font-size: 1.3rem;
}

.service-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.service-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.about-section {
    background: linear-gradient(135deg, rgba(168,197,168,0.15) 0%, var(--cream) 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--sage);
    border-radius: var(--radius);
    z-index: -1;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-feature i {
    color: var(--primary);
    font-size: 1rem;
}

.about-feature span {
    font-weight: 500;
    font-size: 0.9rem;
}

.products-section {
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--cream);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-icon-wrapper {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary), var(--sage));
    font-size: 3rem;
    color: var(--white);
}

.product-image {
    height: 180px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 18px;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-info p {
    color: var(--text-light);
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price span {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary);
}

.product-price a {
    font-weight: 600;
    color: var(--secondary);
    font-size: 0.85rem;
}

.product-price a:hover {
    color: var(--terracotta);
}

.testimonials {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.testimonials .section-header span {
    color: var(--sage);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.9);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
    font-size: 0.9rem;
}

.testimonial-author h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 2px;
}

.testimonial-author span {
    color: var(--sage);
    font-size: 0.8rem;
}

.cta-section {
    background: var(--cream);
    text-align: center;
}

.cta-box {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--terracotta) 100%);
    padding: 45px 30px;
    border-radius: 15px;
    color: var(--white);
}

.cta-box h2 {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.cta-box p {
    margin-bottom: 20px;
    font-size: 1rem;
    opacity: 0.95;
}

.cta-box .btn {
    background: var(--white);
    color: var(--secondary);
}

.cta-box .btn:hover {
    background: var(--cream);
    transform: translateY(-2px);
}

footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand p {
    font-size: 0.85rem;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 12px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 0.85rem;
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--sage);
}

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--sage);
    width: 16px;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.8rem;
}

.footer-policies {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.footer-policies a {
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-policies a:hover {
    opacity: 1;
    color: var(--sage);
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(168,197,168,0.2) 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.page-hero p {
    color: var(--text-light);
    font-size: 1rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 0.85rem;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.content-section {
    padding: 50px 0;
}

.content-section h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
}

.content-section h3 {
    font-size: 1.2rem;
    margin: 20px 0 10px;
}

.content-section p {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.content-section ul {
    padding-left: 20px;
    margin-bottom: 15px;
}

.content-section ul li {
    list-style: disc;
    margin-bottom: 8px;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-section {
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    padding: 35px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h2 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.contact-info > p {
    opacity: 0.9;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-item i {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--white);
    font-size: 0.95rem;
    margin-bottom: 3px;
}

.contact-item p {
    opacity: 0.85;
    font-size: 0.9rem;
}

.contact-form-wrapper {
    background: var(--cream);
    padding: 35px;
    border-radius: var(--radius);
}

.contact-form-wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(45,90,61,0.2);
    border-radius: var(--radius);
    font-family: 'Nunito', sans-serif;
    font-size: 0.95rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(45,90,61,0.1);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 0;
}

.map-section {
    padding: 50px 0;
}

.map-container {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 350px;
    border: none;
}

.error-page,
.thankyou-page {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 50px;
    background: linear-gradient(135deg, var(--cream) 0%, rgba(168,197,168,0.2) 100%);
}

.error-content,
.thankyou-content {
    max-width: 500px;
}

.error-content i,
.thankyou-content i {
    font-size: 4rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.thankyou-content h1 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.error-content p,
.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 1rem;
}

.policy-content {
    background: var(--white);
    padding: 50px 0;
}

.policy-content h2 {
    color: var(--primary);
    margin-top: 30px;
}

.policy-content h3 {
    color: var(--dark);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 450px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    z-index: 9999;
    display: none;
}

.privacy-popup.show {
    display: block;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.privacy-popup h4 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.privacy-popup p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 15px;
}

.privacy-popup-btns {
    display: flex;
    gap: 10px;
}

.privacy-popup .btn {
    padding: 8px 18px;
    font-size: 0.85rem;
}

.features-section {
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.feature-item {
    text-align: center;
    padding: 25px 15px;
    background: var(--cream);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.feature-item h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.feature-item p {
    font-size: 0.8rem;
    color: var(--text-light);
}

.gallery-section {
    padding: 60px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.process-section {
    background: var(--cream);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-item {
    text-align: center;
    position: relative;
}

.process-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.process-item h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.process-item p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.team-section {
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--cream);
    border-radius: var(--radius);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--sage), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--white);
}

.team-card h4 {
    font-size: 1.05rem;
    margin-bottom: 5px;
}

.team-card span {
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
}

.team-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 10px;
}

.values-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--dark) 100%);
    color: var(--white);
}

.values-section .section-header span {
    color: var(--sage);
}

.values-section .section-header h2 {
    color: var(--white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.15);
}

.value-card i {
    font-size: 2.2rem;
    color: var(--sage);
    margin-bottom: 15px;
}

.value-card h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 0.9rem;
    opacity: 0.85;
}

.planning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.planning-list {
    padding-left: 0;
}

.planning-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    list-style: none;
}

.planning-list li i {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 2px;
}

.planning-list li span {
    font-size: 0.95rem;
}

.tips-section {
    background: var(--cream);
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.tip-card {
    background: var(--white);
    padding: 25px;
    border-radius: var(--radius);
    display: flex;
    gap: 15px;
    transition: var(--transition);
}

.tip-card:hover {
    box-shadow: var(--shadow);
}

.tip-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    flex-shrink: 0;
}

.tip-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.tip-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.faq-section {
    background: var(--white);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-question {
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 0.95rem;
}

.faq-question i {
    transition: var(--transition);
    color: var(--primary);
}

.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 18px;
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.9rem;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper,
    .planning-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        padding: 30px;
        transition: var(--transition);
        box-shadow: -5px 0 30px rgba(0,0,0,0.1);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu a {
        font-size: 1.1rem;
        padding: 10px 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 50px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-badge {
        position: relative;
        left: 0;
        margin-top: 15px;
        display: inline-flex;
    }

    section {
        padding: 45px 0;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .services-grid,
    .products-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid,
    .tips-grid {
        grid-template-columns: 1fr;
    }

    .features-grid,
    .process-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .privacy-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
}

@media (max-width: 480px) {
    .header-inner {
        padding: 10px 15px;
        margin: 8px;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .hero-text h1 {
        font-size: 1.7rem;
    }

    .features-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 30px 20px;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 320px) {
    html {
        font-size: 13px;
    }

    .container {
        padding: 0 10px;
    }

    .header-inner {
        padding: 8px 12px;
        margin: 5px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .btn {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .hero-btns {
        flex-direction: column;
    }

    .privacy-popup-btns {
        flex-direction: column;
    }
}
