@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #2d5a4a;
    --primary-light: #3d7a64;
    --secondary: #e8dfd4;
    --accent: #c4a77d;
    --dark: #1a1a1a;
    --light: #faf8f5;
    --text: #3a3a3a;
    --text-light: #6b6b6b;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--dark);
}

h1 { font-size: 1.6rem; }
h2 { font-size: 1.4rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.1rem; }

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button, input, textarea {
    font-family: inherit;
    font-size: inherit;
    border: none;
    outline: none;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 16px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--accent);
    color: var(--dark);
}

.btn-secondary:hover {
    background: #b8996d;
}

.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section {
    padding: 50px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin: 12px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.header.scrolled .header-inner {
    margin: 8px 12px;
    padding: 10px 16px;
}

.header.hidden {
    transform: translateY(-100%);
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    font-size: 1.3rem;
}

.nav-desktop {
    display: none;
}

.nav-desktop ul {
    display: flex;
    gap: 24px;
}

.nav-desktop a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
    width: 100%;
}

.nav-desktop a:hover,
.nav-desktop a.active {
    color: var(--primary);
}

.header-cta {
    display: none;
}

.mobile-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: var(--secondary);
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--primary);
    margin: 2px 0;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

.nav-mobile {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    padding: 70px 24px 24px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.nav-mobile.active {
    right: 0;
}

.nav-mobile ul {
    margin-bottom: 24px;
}

.nav-mobile li {
    border-bottom: 1px solid var(--secondary);
}

.nav-mobile a {
    display: block;
    padding: 12px;
    font-weight: 500;
}

.nav-mobile a:hover,
.nav-mobile a.active {
    color: var(--primary);
}

.nav-mobile .btn {
    width: 100%;
}

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.hero {
    padding: 100px 0 50px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
}

.hero-content {
    display: grid;
    gap: 30px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 14px;
    font-size: 2rem;
}

.hero-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.hero-badge {
    position: absolute;
    bottom: -10px;
    left: -10px;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.hero-badge span {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-badge small {
    font-size: 11px;
    color: var(--text-light);
}

.features {
    background: var(--white);
}

.features-grid {
    display: grid;
    gap: 20px;
}

.feature-card {
    padding: 24px;
    background: var(--light);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.2rem;
}

.feature-card h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
}

.about-section {
    background: var(--secondary);
}

.about-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text h2 {
    margin-bottom: 14px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 12px;
    font-size: 13px;
}

.about-list {
    margin: 16px 0;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 0;
    font-size: 13px;
}

.about-list i {
    color: var(--primary);
    font-size: 14px;
}

.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    gap: 20px;
}

.service-card {
    background: var(--light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    margin-bottom: 8px;
}

.service-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.testimonials {
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2 {
    color: var(--white);
}

.testimonials .section-header p {
    color: rgba(255,255,255,0.7);
}

.testimonials-grid {
    display: grid;
    gap: 20px;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 24px;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.testimonial-rating {
    color: var(--accent);
    margin-bottom: 10px;
}

.testimonial-rating i {
    font-size: 12px;
}

.testimonial-card p {
    font-size: 13px;
    margin-bottom: 14px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--dark);
}

.testimonial-name strong {
    display: block;
    font-size: 13px;
}

.testimonial-name span {
    font-size: 11px;
    opacity: 0.7;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 12px;
}

.cta-section p {
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
    font-size: 13px;
}

.products-section {
    background: var(--light);
}

.products-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 180px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.product-content {
    padding: 20px;
}

.product-content h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-content p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.page-header {
    padding: 100px 0 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
    text-align: center;
}

.page-header h1 {
    margin-bottom: 10px;
}

.page-header p {
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
    font-size: 13px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 12px;
}

.breadcrumb a {
    color: var(--primary);
}

.breadcrumb span {
    color: var(--text-light);
}

.about-page-content {
    background: var(--white);
}

.about-intro {
    display: grid;
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    gap: 16px;
    margin-top: 30px;
}

.value-card {
    display: flex;
    gap: 14px;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius);
}

.value-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.value-card h4 {
    margin-bottom: 6px;
}

.value-card p {
    font-size: 12px;
    color: var(--text-light);
}

.team-section {
    background: var(--light);
}

.team-grid {
    display: grid;
    gap: 20px;
}

.team-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
}

.team-avatar {
    width: 70px;
    height: 70px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.5rem;
    color: var(--primary);
}

.team-card h4 {
    margin-bottom: 4px;
}

.team-card span {
    font-size: 12px;
    color: var(--text-light);
}

.contact-section {
    background: var(--white);
}

.contact-grid {
    display: grid;
    gap: 30px;
}

.contact-info-card {
    background: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-info-item {
    display: flex;
    gap: 14px;
    margin-bottom: 20px;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text strong {
    display: block;
    margin-bottom: 2px;
    font-size: 13px;
}

.contact-info-text span {
    font-size: 12px;
    opacity: 0.8;
}

.contact-info-text a {
    color: var(--white);
}

.contact-info-text a:hover {
    text-decoration: underline;
}

.contact-form-card {
    background: var(--light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.contact-form-card h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 1.5px solid var(--secondary);
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12px;
    color: var(--text-light);
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox a {
    color: var(--primary);
    text-decoration: underline;
}

.map-section {
    background: var(--light);
}

.map-container {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.policy-content {
    background: var(--white);
}

.policy-text {
    max-width: 800px;
    margin: 0 auto;
}

.policy-text h2 {
    margin: 30px 0 14px;
    font-size: 1.25rem;
}

.policy-text h3 {
    margin: 24px 0 12px;
    font-size: 1.1rem;
}

.policy-text p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 13px;
}

.policy-text ul {
    margin: 12px 0 12px 20px;
}

.policy-text li {
    list-style: disc;
    margin-bottom: 6px;
    color: var(--text-light);
    font-size: 13px;
}

.error-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    background: var(--light);
}

.error-content h1 {
    font-size: 5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.error-content h2 {
    margin-bottom: 12px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 13px;
}

.thankyou-page {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px 40px;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--light) 100%);
}

.thankyou-content {
    max-width: 500px;
}

.thankyou-icon {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2.5rem;
}

.thankyou-content h1 {
    margin-bottom: 12px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 14px;
}

.footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 20px;
}

.footer-main {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.footer-brand .logo {
    color: var(--white);
    margin-bottom: 10px;
}

.footer-brand p {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    max-width: 260px;
}

.footer-links h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-policy-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.footer-policy-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
}

.footer-policy-links a:hover {
    color: var(--accent);
}

.privacy-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    z-index: 9999;
    display: none;
}

.privacy-popup.active {
    display: block;
}

.privacy-popup h4 {
    margin-bottom: 8px;
}

.privacy-popup p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.privacy-popup-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.privacy-popup-buttons .btn {
    flex: 1;
    min-width: 100px;
}

@media (min-width: 480px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 792px) {
    body {
        font-size: 15px;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.35rem; }
    
    .section {
        padding: 70px 0;
    }
    
    .header-inner {
        padding: 14px 28px;
        margin: 16px 24px;
    }
    
    .nav-desktop {
        display: block;
    }
    
    .header-cta {
        display: block;
    }
    
    .mobile-toggle {
        display: none;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .about-intro {
        grid-template-columns: 1fr 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
    
    .footer-main {
        grid-template-columns: 1.5fr 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    .privacy-popup {
        left: 20px;
        right: auto;
        max-width: 400px;
    }
}

@media (min-width: 1024px) {
    h1 { font-size: 2.75rem; }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
