/* ======================= General & Variables ======================= */
:root {
    --primary-color: #A2B29F; /* A soft, elegant green */
    --secondary-color: #DDB8C6; /* A gentle pink */
    --dark-color: #333333;
    --light-color: #FFFFFF;
    --text-color: #4A4A4A;
    --background-color: #F9F9F9;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Lato', sans-serif;
    --box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 40px;
}

/* ======================= Header ======================= */
.site-header {
    background-color: var(--light-color);
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--box-shadow); /* Permanent drop shadow */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px; /* Space between logo and text */
    text-decoration: none;
}

.logo img {
    height: 50px;
    display: block;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
}

.main-navigation ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-navigation a {
    text-decoration: none;
    color: var(--dark-color);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.main-navigation a:hover {
    color: var(--primary-color);
}

/* ======================= Hero Section ======================= */
.hero {
    background-size: cover;
    background-position: center;
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--light-color);
}

.hero-content {
    max-width: 800px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: background-color 0.3s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #8a9a81; /* A slightly darker shade of primary */
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.cta-button.secondary:hover {
    background-color: var(--primary-color);
    color: var(--light-color);
}

/* ======================= About Section ======================= */
.about-section {
    padding: 80px 0;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.about-content p {
    margin-bottom: 1rem;
}


/* ======================= Services Section ======================= */
.services-section {
    padding: 80px 0;
    background-color: #EAEAEA;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-card {
    background-color: var(--light-color);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.service-card-content {
    padding: 0 20px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin: 20px 0 10px;
    color: var(--dark-color);
}

.learn-more-link {
    font-family: var(--font-heading);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: auto;
}

/* ======================= Gallery Section ======================= */
.gallery-section {
    padding: 80px 0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    border-radius: 5px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}

.gallery-cta {
    text-align: center;
    margin-top: 40px;
}


/* ======================= Testimonials Section ======================= */
.testimonials-section {
    padding: 80px 0;
    background-color: #EAEAEA;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: var(--light-color);
    padding: 30px;
    border-left: 5px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-card cite {
    font-weight: 700;
    font-style: normal;
    color: var(--dark-color);
}

/* ======================= Footer ======================= */
.site-footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.footer-text p {
    margin-bottom: 15px;
    color: #cccccc;
}

.footer-text strong {
    color: var(--light-color);
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--light-color);
    text-decoration: none;
    margin-top: 10px;
}
.whatsapp-link:hover {
    text-decoration: underline;
}
.whatsapp-link svg {
    width: 24px;
    height: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #777;
    background-color: #555;
    color: var(--light-color);
    font-family: var(--font-body);
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
}

.form-group-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.footer-form .cta-button {
    width: 100%;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
}

#form-status {
    margin-top: 15px;
    text-align: center;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #555;
    padding-top: 20px;
    font-size: 0.9rem;
    color: #999;
}

.footer-bottom a {
    color: #ccc;
    text-decoration: none;
}
.footer-bottom a:hover {
    text-decoration: underline;
}

/* ======================= Success Modal ======================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.visible {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    max-width: 400px;
    width: 90%;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-overlay.visible .modal-content {
    transform: scale(1);
}

.modal-content h2 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 15px;
}

.modal-close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.modal-animation-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none; /* Allows clicking through the animation layer */
    border-radius: 10px;
}

.balloon {
    position: absolute;
    bottom: -100px; /* Start below the modal */
    width: 50px;
    height: 65px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    animation: rise 5s ease-in forwards;
    opacity: 0.8;
}

.balloon::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 10px;
    height: 10px;
    background-color: var(--after-bg, var(--secondary-color)); /* Knot color */
    border-radius: 50%;
}

@keyframes rise {
    0% {
        transform: translateY(0) rotate(0);
        opacity: 0.8;
    }
    100% {
        transform: translateY(-500px) rotate(15deg);
        opacity: 0;
    }
}

/* ======================= Policy Page Styles (MERGED) ======================= */
.policy-main {
    padding: 80px 0;
}

.policy-container {
    max-width: 800px;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}

.policy-container h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 10px;
}

.last-updated {
    font-style: italic;
    color: #888;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.policy-container h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.policy-content p, .policy-content li {
    margin-bottom: 15px;
}

.policy-content ul {
    list-style-position: inside;
    padding-left: 20px;
}

.policy-content strong {
    color: var(--dark-color);
}


/* ======================= Responsive Design ======================= */
@media (max-width: 992px) {
    .section-title, .footer-text h2, .policy-container h1 {
        font-size: 2rem;
    }
    .hero h1 {
        font-size: 2.8rem;
    }
    .services-grid, .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 15px;
    }
    .main-navigation ul {
        gap: 20px;
    }
    .hero {
        height: 60vh;
    }
    .hero h1 {
        font-size: 2.2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .logo-text {
        font-size: 1.5rem;
    }
    .policy-container {
        padding: 20px;
    }
}

