@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Quicksand:wght@300;400;500;600&display=swap');

:root {
    --forest-deep: #1E3A20;
    --moss-fresh: #7FB069;
    --sunlight-cream: #fcfaeb;
    --pine-green: #4A7C59;
    --shadow-green: #0F2417;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    background-color: var(--sunlight-cream);
    color: var(--shadow-green);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--forest-deep);
}

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: all 0.3s ease;
}

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

button, .btn {
    font-family: 'Quicksand', sans-serif;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

header {
    background: linear-gradient(135deg, var(--forest-deep) 0%, var(--shadow-green) 100%);
    padding: 0.8rem 0;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.1); }
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sunlight-cream);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.logo {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    font-size: 1.5rem;
    gap: 7px;
    font-weight: 700;
    color: var(--primary-color);
}
.logo>img{
    width: 60px;
 border-radius: 50%;
}

.logo span{
    font-size: 18px;
    color: #FFFBDB;
}

nav {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    align-items: center;
}

.nav-links a {
    color: var(--sunlight-cream);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}


.nav-links a:hover {
    color: white;
}

.menu-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--sunlight-cream);
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 1000;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

section {
    padding: 3rem 0;
}

.hero {
    background: linear-gradient(135deg, var(--pine-green) 0%, var(--forest-deep) 100%);
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    height: 150px;
    background: var(--sunlight-cream);
    clip-path: polygon(0 60%, 100% 0, 100% 100%, 0 100%);
}

.hero-content {
    position: relative;
    z-index: 5;
    color: var(--sunlight-cream);
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.8rem;
    color: var(--sunlight-cream);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hero-btn {
    background: var(--moss-fresh);
    color: var(--shadow-green);
    padding: 0.9rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.4);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.6);
}

.section-title {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.section-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--moss-fresh);
    margin: 0.8rem auto 0;
    border-radius: 2px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 1.8rem;
    box-shadow: 0 4px 15px rgba(30, 58, 32, 0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 32, 0.15);
    border-color: var(--moss-fresh);
}

.card-icon {
    font-size: 2.5rem;
    color: var(--moss-fresh);
    margin-bottom: 1rem;
}

.card h3 {
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
}

.card p {
    color: var(--pine-green);
    font-size: 0.95rem;
    line-height: 1.6;
}

.features-section {
    background: var(--pine-green);
    color: var(--sunlight-cream);
}

.features-section .section-title h2,
.features-section .section-title p {
    color: var(--sunlight-cream);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 251, 219, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(255, 251, 219, 0.1);
    transform: scale(1.05);
}

.feature-item i {
    font-size: 2.5rem;
    color: var(--moss-fresh);
    margin-bottom: 1rem;
}

.feature-item h3 {
    color: var(--sunlight-cream);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.feature-item p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-section {
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.2rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: var(--pine-green);
    line-height: 1.7;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.stat-box {
    background: var(--sunlight-cream);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    border-left: 4px solid var(--moss-fresh);
}

.stat-box h3 {
    font-size: 2rem;
    color: var(--moss-fresh);
    margin-bottom: 0.3rem;
}

.stat-box p {
    font-size: 0.9rem;
    color: var(--forest-deep);
}

.about-image {
    background: linear-gradient(135deg, var(--moss-fresh), var(--pine-green));
    border-radius: 15px;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.cta-section {
    background: linear-gradient(135deg, var(--forest-deep), var(--shadow-green));
    color: var(--sunlight-cream);
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(127, 176, 105, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section .container {
    position: relative;
    z-index: 5;
}

.cta-section h2 {
    color: var(--sunlight-cream);
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-form-section {
    background: white;
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info {
    background: var(--pine-green);
    color: var(--sunlight-cream);
    padding: 2.5rem;
    border-radius: 15px;
}

.contact-info h3 {
    color: var(--sunlight-cream);
    margin-bottom: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-item i {
    font-size: 1.4rem;
    color: var(--moss-fresh);
    margin-top: 0.2rem;
}

.info-item h4 {
    color: var(--moss-fresh);
    margin-bottom: 0.3rem;
    font-size: 1rem;
}

.info-item p {
    font-size: 0.95rem;
    opacity: 0.9;
}

.contact-form {
    background: var(--sunlight-cream);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--moss-fresh);
}

.form-group {
    margin-bottom: 1.3rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--forest-deep);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--pine-green);
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-size: 0.95rem;
    background: white;
    color: var(--shadow-green);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--moss-fresh);
    box-shadow: 0 0 0 3px rgba(127, 176, 105, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: start;
    gap: 0.8rem;
    margin-bottom: 1.5rem;
}

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

.checkbox-group label {
    margin: 0;
    font-size: 0.85rem;
    cursor: pointer;
}

.submit-btn {
    background: var(--moss-fresh);
    color: var(--shadow-green);
    padding: 0.9rem 2.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: var(--pine-green);
    color: var(--sunlight-cream);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.map-container {
    margin-top: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(30, 58, 32, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

footer {
    background: var(--shadow-green);
    color: var(--sunlight-cream);
    padding: 2rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    color: var(--moss-fresh);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--sunlight-cream);
    opacity: 0.9;
}

.footer-section a:hover {
    color: var(--moss-fresh);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-bottom {
    border-top: 1px solid rgba(127, 176, 105, 0.3);
    padding-top: 1rem;
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--moss-fresh);
    margin: 0 0.1rem;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.privacy-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--forest-deep);
    color: var(--sunlight-cream);
    padding: 1.2rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.privacy-popup.show {
    transform: translateY(0);
}

.privacy-popup-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.privacy-popup-text {
    flex: 1;
    font-size: 0.9rem;
    line-height: 1.5;
}

.privacy-popup-text a {
    color: var(--moss-fresh);
    text-decoration: underline;
}

.privacy-popup-actions {
    display: flex;
    gap: 0.8rem;
    flex-shrink: 0;
}

.privacy-popup-actions button {
    padding: 0.6rem 1.5rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.9rem;
}

.accept-btn {
    background: var(--moss-fresh);
    color: var(--shadow-green);
}

.decline-btn {
    background: transparent;
    color: var(--sunlight-cream);
    border: 1px solid var(--sunlight-cream);
}

.thank-you-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--sunlight-cream) 0%, white 100%);
}

.thank-you-content {
    max-width: 600px;
}

.thank-you-content i {
    font-size: 4rem;
    color: var(--moss-fresh);
    margin-bottom: 1.5rem;
}

.thank-you-content h1 {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.thank-you-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--pine-green);
}

.policy-page {
    padding: 3rem 0;
    background: white;
}

.policy-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-content h1 {
    margin-bottom: 0.5rem;
}

.policy-date {
    color: var(--pine-green);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.policy-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: var(--pine-green);
}

.policy-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.policy-content li {
    margin-bottom: 0.5rem;
    color: var(--pine-green);
    line-height: 1.7;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(30, 58, 32, 0.1);
    transition: all 0.3s ease;
    background: white;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(30, 58, 32, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item-info {
    padding: 1.2rem;
}

.gallery-item-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.gallery-item-info p {
    color: var(--pine-green);
    font-size: 0.9rem;
}

.services-list {
    display: grid;
    gap: 2rem;
}

.service-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(30, 58, 32, 0.08);
    align-items: start;
    border-left: 4px solid var(--moss-fresh);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--moss-fresh);
    background: var(--sunlight-cream);
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.service-content h3 {
    margin-bottom: 0.8rem;
    font-size: 1.4rem;
}

.service-content p {
    color: var(--pine-green);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
}

.service-features li {
    padding: 0.4rem 0;
    color: var(--pine-green);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features li i {
    color: var(--moss-fresh);
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 1rem;
    }

    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 70%;
        max-width: 300px;
        background: var(--forest-deep);
        flex-direction: column;
        padding: 4rem 1.5rem 2rem;
        gap: 0;
        transition: right 0.3s ease;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a {
        display: block;
        padding: 0.8rem 1rem;
        width: 100%;
        border-radius: 8px;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }

    .hero {
        min-height: 70vh;
        padding: 2rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .privacy-popup-content {
        flex-direction: column;
        gap: 1rem;
    }

    .privacy-popup-actions {
        width: 100%;
        flex-direction: column;
    }

    .privacy-popup-actions button {
        width: 100%;
    }

    .service-item {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-icon {
        margin: 0 auto;
    }

    .service-features li {
        justify-content: center;
    }

    section {
        padding: 2rem 0;
    }

    .cta-section {
        padding: 3rem 0;
    }

    .cta-section h2 {
        font-size: 1.6rem;
    }

    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .logo span{
        display: none;
    }
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    h1 { font-size: 1.4rem; }
    h2 { font-size: 1.2rem; }

    .hero-content h1 {
        font-size: 1.7rem;
    }

    .hero-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .card {
        padding: 1.3rem;
    }

    .contact-form,
    .contact-info {
        padding: 1.5rem;
    }

    .thank-you-content i {
        font-size: 3rem;
    }

    .thank-you-content h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 320px) {
    body {
        font-size: 13px;
    }

    .logo {
        font-size: 1rem;
    }

    .hero-content h1 {
        font-size: 1.5rem;
    }

    .section-title h2 {
        font-size: 1.3rem;
    }
}