@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Quicksand:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a3a5c;
    --secondary: #d4a574;
    --accent: #2d5a7b;
    --light: #f8f6f3;
    --dark: #1a1a1a;
    --text: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
    --radius: 8px;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--light);
    min-width: 320px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--primary);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.6rem; }
h3 { font-size: 1.3rem; }
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;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 10px 24px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.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;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
}

.header-wrapper {
    display: flex;
    justify-content: center;
    padding: 12px 15px;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    max-width: 900px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo i {
    font-size: 20px;
    color: var(--secondary);
}

.logo span {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: var(--text);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 20px;
    color: var(--primary);
    cursor: pointer;
    padding: 5px;
}

.header-hidden {
    transform: translateY(-100%);
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav a {
    font-size: 18px;
    font-weight: 500;
    color: var(--primary);
}

.mobile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--primary);
    cursor: pointer;
}

.hero {
    padding: 120px 0 60px;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.hero-text p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.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: 18px;
}

.hero-badge span {
    font-weight: 600;
    font-size: 12px;
}

.services {
    padding: 60px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.service-card i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.service-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.service-card p {
    font-size: 12px;
    color: var(--text-light);
}

.about-section {
    padding: 60px 0;
    background: var(--light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.about-image img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.about-text h2 {
    margin-bottom: 15px;
}

.about-text p {
    color: var(--text-light);
    margin-bottom: 15px;
    font-size: 13px;
}

.about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 20px;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
}

.about-feature i {
    color: var(--secondary);
}

.products {
    padding: 60px 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--light);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.product-image {
    height: 180px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image i {
    font-size: 48px;
    color: var(--white);
    opacity: 0.9;
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    margin-bottom: 8px;
    font-size: 1rem;
}

.product-info p {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
}

.product-price span {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 400;
}

.testimonials {
    padding: 60px 0;
    background: var(--primary);
    color: var(--white);
}

.testimonials .section-header h2,
.testimonials .section-header p {
    color: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: var(--radius);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
    font-size: 13px;
    opacity: 0.9;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar i {
    color: var(--white);
}

.testimonial-info span {
    display: block;
    font-weight: 600;
    font-size: 13px;
}

.testimonial-info small {
    font-size: 11px;
    opacity: 0.7;
}

.cta {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #c49464 100%);
    text-align: center;
    color: var(--white);
}

.cta h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta p {
    margin-bottom: 25px;
    opacity: 0.9;
    font-size: 14px;
}

.cta .btn {
    background: var(--white);
    color: var(--primary);
}

.cta .btn:hover {
    background: var(--primary);
    color: var(--white);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 30px 0 15px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 20px;
}

.footer-brand p {
    font-size: 12px;
    opacity: 0.7;
    margin-top: 10px;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--secondary);
    margin-bottom: 12px;
    font-size: 14px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-links a {
    font-size: 12px;
    opacity: 0.7;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--secondary);
}

.footer-contact p {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-contact i {
    color: var(--secondary);
    width: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 11px;
    opacity: 0.6;
}

.footer-policies {
    display: flex;
    gap: 15px;
}

.footer-policies a {
    font-size: 11px;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-policies a:hover {
    opacity: 1;
    color: var(--secondary);
}

.page-hero {
    padding: 120px 0 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    text-align: center;
    color: var(--white);
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 10px;
}

.page-hero p {
    opacity: 0.9;
    font-size: 14px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.breadcrumb a:hover {
    color: var(--secondary);
}

.content-section {
    padding: 50px 0;
}

.content-section:nth-child(even) {
    background: var(--white);
}

.retreat-services {
    padding: 50px 0;
    background: var(--white);
}

.retreat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.retreat-card {
    background: var(--light);
    padding: 25px;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
}

.retreat-card h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.retreat-card p {
    font-size: 12px;
    color: var(--text-light);
}

.process-section {
    padding: 50px 0;
    background: var(--light);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.process-step {
    text-align: center;
    padding: 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--secondary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-weight: 700;
    font-size: 14px;
}

.process-step h4 {
    margin-bottom: 8px;
    font-size: 14px;
}

.process-step p {
    font-size: 11px;
    color: var(--text-light);
}

.team-section {
    padding: 50px 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.team-card {
    text-align: center;
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.team-avatar i {
    font-size: 32px;
    color: var(--white);
}

.team-card h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.team-card span {
    font-size: 12px;
    color: var(--secondary);
    font-weight: 500;
}

.team-card p {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 10px;
}

.values-section {
    padding: 50px 0;
    background: var(--light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    text-align: center;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius);
}

.value-card i {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 12px;
}

.value-card h4 {
    font-size: 14px;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 11px;
    color: var(--text-light);
}

.contact-section {
    padding: 50px 0;
    background: var(--light);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-info {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    padding: 30px;
    border-radius: var(--radius);
    color: var(--white);
}

.contact-info h3 {
    color: var(--white);
    margin-bottom: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-item i {
    font-size: 18px;
    color: var(--secondary);
    margin-top: 2px;
}

.contact-item h4 {
    color: var(--white);
    font-size: 13px;
    margin-bottom: 3px;
}

.contact-item p {
    font-size: 12px;
    opacity: 0.9;
}

.contact-form {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form h3 {
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-family: 'Quicksand', sans-serif;
    font-size: 13px;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.form-group textarea {
    height: 100px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.form-checkbox input {
    width: auto;
    margin-top: 3px;
}

.form-checkbox label {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 0;
}

.form-checkbox a {
    color: var(--secondary);
}

.map-section {
    padding: 0;
    height: 300px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.policy-content {
    padding: 50px 0;
}

.policy-content h2 {
    margin: 30px 0 15px;
    font-size: 1.3rem;
}

.policy-content h3 {
    margin: 25px 0 12px;
    font-size: 1.1rem;
}

.policy-content p {
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

.policy-content ul {
    margin: 15px 0 15px 25px;
    list-style: disc;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 13px;
    color: var(--text-light);
}

.error-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    height: 100vh;
}

.error-content h1 {
    font-size: 6rem;
    color: var(--secondary);
    line-height: 1;
    margin-bottom: 15px;
}

.error-content h2 {
    margin-bottom: 15px;
}

.error-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
}

.thankyou-page {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--light);
    height: 100vh;
}

.thankyou-content i {
    font-size: 60px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.thankyou-content h1 {
    margin-bottom: 15px;
}

.thankyou-content p {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 14px;
    max-width: 400px;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-content p {
    font-size: 12px;
    opacity: 0.9;
    flex: 1;
}

.cookie-content a {
    color: var(--secondary);
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-buttons button {
    padding: 8px 16px;
    font-size: 12px;
}

.stats-section {
    padding: 50px 0;
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-item i {
    font-size: 28px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 12px;
    color: var(--text-light);
}

.faq-section {
    padding: 50px 0;
    background: var(--light);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border-radius: var(--radius);
    overflow: hidden;
}

.faq-question {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.faq-question i {
    color: var(--secondary);
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
}

.faq-answer p {
    padding-bottom: 15px;
    font-size: 12px;
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.features-section {
    padding: 50px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.feature-card {
    padding: 25px;
    background: var(--light);
    border-radius: var(--radius);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.feature-card i {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 10px;
    font-size: 1rem;
}

.feature-card p {
    font-size: 12px;
    color: var(--text-light);
}

@media (max-width: 992px) {
    .hero-content,
    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
    }

    .services-grid,
    .products-grid,
    .team-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid,
    .stats-grid,
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }

    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .mobile-nav {
        display: flex;
    }

    .hero {
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        left: 10px;
        bottom: 10px;
    }

    .testimonials-grid,
    .retreat-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand p {
        margin: 10px auto 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .services-grid,
    .products-grid,
    .team-grid,
    .values-grid,
    .stats-grid,
    .process-steps,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .header-inner {
        padding: 8px 15px;
    }

    .logo span {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        text-align: center;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
    }

    .error-content h1 {
        font-size: 4rem;
    }
}
