:root {
    --primary-color: #2c2c2c;
    --secondary-color: #c9a961;
    --accent-color: #8b7355;
    --text-color: #333;
    --light-bg: #f8f7f4;
    --white: #ffffff;
    --border-color: #e0d9cf;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Crimson Pro', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

p {
    margin-bottom: 1rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary {
    display: inline-block;
    padding: 12px 28px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 10px 24px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px var(--shadow);
}

.privacy-popup.show {
    display: block;
}

.privacy-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.privacy-content p {
    margin: 0;
    flex: 1;
    font-size: 14px;
}

.privacy-actions {
    display: flex;
    gap: 12px;
}

.btn-accept {
    padding: 8px 20px;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-accept:hover {
    background: var(--accent-color);
}

.btn-learn {
    padding: 8px 20px;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-learn:hover {
    background: var(--white);
    color: var(--primary-color);
}

.header {
    background: var(--white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Crimson Pro', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: var(--text-color);
    font-size: 14px;
    font-weight: 400;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.hero {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    box-shadow: 20px 20px 60px var(--shadow);
}

.features {
    padding: 80px 0;
    background: var(--white);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 30px 20px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.feature-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.services {
    padding: 80px 0;
    background: var(--light-bg);
}

.services h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 35px 25px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.process {
    padding: 80px 0;
    background: var(--white);
}

.process h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.step {
    text-align: center;
    padding: 20px;
}

.step-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 1rem;
    font-family: 'Crimson Pro', serif;
}

.step h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.step p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.testimonials {
    padding: 80px 0;
    background: var(--light-bg);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.testimonial {
    background: var(--white);
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
}

.testimonial p {
    font-size: 15px;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.author {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}

.role {
    font-size: 13px;
    color: var(--accent-color);
}

.cta {
    padding: 80px 0;
    background: var(--primary-color);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-content p {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-brand {
    font-family: 'Crimson Pro', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 0.3rem;
    opacity: 0.9;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
}

.footer-links a {
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    opacity: 0.7;
    margin: 0;
}

.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--white) 100%);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.page-hero p {
    font-size: 1.1rem;
    color: var(--accent-color);
    margin-bottom: 0;
}

.content-section {
    padding: 80px 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-text h2 {
    margin-bottom: 1.5rem;
}

.content-text p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.content-image img {
    width: 100%;
    box-shadow: 10px 10px 40px var(--shadow);
}

.products {
    padding: 80px 0;
    background: var(--light-bg);
}

.products h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--white);
    padding: 35px 25px;
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.product-card.featured {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.product-card:hover {
    box-shadow: 0 10px 30px var(--shadow);
    transform: translateY(-5px);
}

.product-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.product-card h3 {
    margin-bottom: 1rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-family: 'Crimson Pro', serif;
}

.product-card ul {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.product-card li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.product-card li:last-child {
    border-bottom: none;
}

.specifications {
    padding: 80px 0;
    background: var(--white);
}

.specifications h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.spec-item {
    text-align: center;
    padding: 25px;
}

.spec-item i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.spec-item h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.spec-item p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.cta-section {
    padding: 60px 0;
    background: var(--light-bg);
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.benefits {
    padding: 80px 0;
    background: var(--white);
}

.benefits h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    text-align: center;
    padding: 30px 20px;
}

.benefit-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.2rem;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.process-detail {
    padding: 80px 0;
    background: var(--light-bg);
}

.process-detail h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.process-content {
    max-width: 800px;
    margin: 0 auto;
}

.process-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.about-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
}

.story-content h2 {
    margin-bottom: 2rem;
}

.story-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.values {
    padding: 80px 0;
    background: var(--light-bg);
}

.values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card h3 {
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 14px;
    color: var(--text-color);
    margin-bottom: 0;
}

.approach {
    padding: 80px 0;
    background: var(--white);
}

.approach h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.contact-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
}

.contact-form-wrapper h2 {
    margin-bottom: 1rem;
}

.contact-form-wrapper p {
    margin-bottom: 2rem;
    color: var(--text-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-group textarea {
    resize: vertical;
}

.checkbox-group {
    flex-direction: row;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 3px;
    cursor: pointer;
}

.checkbox-label span {
    line-height: 1.5;
}

.checkbox-label a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-card,
.hours-card {
    background: var(--light-bg);
    padding: 30px;
    border-left: 3px solid var(--secondary-color);
}

.contact-info-card h3,
.hours-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-item i {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-top: 3px;
}

.info-item strong {
    display: block;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 14px;
}

.info-item p {
    font-size: 14px;
    margin: 0;
    color: var(--text-color);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border-color);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.map-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.map-container {
    width: 100%;
    margin-top: 20px;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
}

.thankyou-main,
.error-main {
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.thankyou-section,
.error-section {
    padding: 80px 0;
    text-align: center;
    margin: 0 auto;
}

.thankyou-content,
.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.thankyou-icon {
    font-size: 5rem;
    color: var(--secondary-color);
    margin-bottom: 2rem;
}

.thankyou-content h1,
.error-content h1 {
    margin-bottom: 1.5rem;
}

.thankyou-content p,
.error-content p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.thankyou-actions,
.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-number {
    font-size: 8rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.2;
    font-family: 'Crimson Pro', serif;
    line-height: 1;
    margin-bottom: 1rem;
}

.policy-section {
    padding: 60px 0 80px;
    background: var(--white);
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-align: center;
}

.policy-date {
    text-align: center;
    color: var(--accent-color);
    font-size: 14px;
    margin-bottom: 3rem;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.policy-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
    margin-top: 0;
}

.policy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--accent-color);
}

.policy-content p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.policy-content ul {
    margin-left: 25px;
    margin-bottom: 1.5rem;
}

.policy-content li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

@media (max-width: 1024px) {
    h1 {
        font-size: 2.3rem;
    }

    h2 {
        font-size: 1.9rem;
    }

    .hero-text h1 {
        font-size: 2.8rem;
    }

    .hero-grid,
    .content-grid,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-grid.reverse {
        direction: ltr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links {
        align-items: center;
    }
}

@media (max-width: 768px) {
    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border-color);
        display: none;
        gap: 15px;
    }

    .nav.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .hero {
        padding: 50px 0;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text p {
        font-size: 1rem;
    }

    .features,
    .services,
    .process,
    .testimonials,
    .cta,
    .content-section,
    .products,
    .specifications,
    .benefits,
    .process-detail,
    .about-story,
    .values,
    .approach,
    .contact-section {
        padding: 50px 0;
    }

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .policy-content h1 {
        font-size: 2.2rem;
    }

    .privacy-content {
        flex-direction: column;
        gap: 15px;
    }

    .privacy-actions {
        width: 100%;
        justify-content: center;
    }

    .thankyou-actions,
    .error-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .error-number {
        font-size: 5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.9rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3 {
        font-size: 1.2rem;
    }

    .container {
        padding: 0 15px;
    }

    .hero-text h1 {
        font-size: 1.9rem;
    }

    .page-hero h1 {
        font-size: 1.9rem;
    }

    .policy-content h1 {
        font-size: 1.9rem;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }

    .features-grid,
    .services-grid,
    .products-grid,
    .specs-grid,
    .benefits-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}
