* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #f7faf6;
    color: #333;
}

/* SECTION */
.contact-section {
    max-width: 1100px;
    margin: auto;
    padding: 90px 20px;
}

/* INTRO */
.contact-intro {
    text-align: center;
    margin-bottom: 70px;
    animation: fadeUp 1s ease;
}

.contact-intro h1 {
    font-size: 38px;
    color: #2f4f2f;
    margin-bottom: 15px;
}

.contact-intro p {
    max-width: 820px;
    margin: 10px auto;
    line-height: 1.8;
    color: #555;
}

.highlight-text {
    margin-top: 10px;
    font-style: italic;
    color: #6b8f6b;
}

/* FORM */
.contact-form-area {
    max-width: 650px;
    margin: auto;
    text-align: center;
    animation: fadeUp 1.2s ease;
}

.contact-form-area h2 {
    font-size: 28px;
    margin-bottom: 40px;
    color: #2f4f2f;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-box {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-box label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #4f6f4f;
}

.form-box input,
.form-box textarea {
    padding: 14px 16px;
    border-radius: 12px;
    border: 1.6px solid #dbe6d8;
    background: #f9fcf7;
    font-size: 15px;
    transition: all 0.3s ease;
}

.form-box input:focus,
.form-box textarea:focus {
    outline: none;
    background: #fff;
    border-color: #7bbf4a;
    box-shadow: 0 0 0 3px rgba(123, 191, 74, 0.15);
}

/* BUTTON */
.contact-form button {
    margin-top: 20px;
    padding: 14px;
    border-radius: 30px;
    border: none;
    background: linear-gradient(135deg, #7bbf4a, #9fd56a);
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.18);
}

/* TEXT BLOCKS */
.contact-text {
    max-width: 800px;
    margin: 80px auto;
    text-align: center;
    animation: fadeUp 1.3s ease;
}

.contact-text h3 {
    color: #2f4f2f;
    margin-bottom: 15px;
}

.contact-text p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

/* SOCIAL */
.social-area {
    text-align: center;
    margin-top: 80px;
}

.social-icons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 28px;
}

.social-icons a {
    font-size: 22px;
    color: #5c7c5c;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #7bbf4a;
    transform: translateY(-4px);
}

/* QUOTE */
.contact-quote {
    text-align: center;
    margin-top: 90px;
    font-style: italic;
    color: #4f6f4f;
}

.contact-quote span {
    display: block;
    margin-top: 10px;
    font-weight: 500;
}

/* ANIMATION */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(35px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 600px) {
    .contact-intro h1 {
        font-size: 28px;
    }
}
/* SECTION HEADER */
.contact-section-title {
    text-align: center;
    font-size: 32px;
    color: #2f4f2f;
    margin-top: -100px;
    margin-bottom: 10px;
}

/* WRAPPER */
.contact-container {
    display: flex;
    align-items: center; /* vertical center relative to form */
    justify-content: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; /* for smaller screens */
}

/* Image first */
.contact-image {
    order: 1; /* appears first */
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Form second */
.contact-form-area {
    order: 2; /* appears second */
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.contact-image img {
    transform: scaleX(-1); /* flips horizontally */
    max-width: 100%;       /* keeps it responsive */
    height: auto;
}


.contact-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    object-fit: cover;
}

/* RESPONSIVE: stack on mobile */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-image img {
        max-width: 100%;
    }
}
.cards-container {
    display: flex;
    text-align: center;
    flex-wrap: wrap;           /* allow stacking on mobile */
    justify-content: center;   /* center cards */
    gap: 30px;                 /* space between cards */
    padding: 50px 20px;
    background-color: #f7f7f2; /* light background for section */
}

.info-card {
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    padding: 30px 25px;
    max-width: 500px;
    flex: 1 1 400px; /* flexible width */
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.info-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2f4f2f; /* earthy tone */
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 12px;
}
