/* ===== FONT ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap');

body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background: linear-gradient(135deg, #dfffe5, #bff5ce);
    overflow-x: hidden;
    position: relative;
}

/* ===== FLOATING CIRCLES ===== */
.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    filter: blur(3px);
    animation: float 9s infinite ease-in-out;
    z-index: 0;
}

.circle-1 { width: 160px; height: 160px; top: 12%; left: 10%; animation-duration: 11s; }
.circle-2 { width: 240px; height: 240px; bottom: 8%; right: 12%; animation-duration: 14s; }
.circle-3 { width: 110px; height: 110px; top: 40%; right: 30%; animation-duration: 9s; }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* ===== MAIN SECTION ===== */
.contact-section {
    text-align: center;
    padding: 100px 20px;
    position: relative;
    z-index: 5;
}

.contact-title {
    font-size: 3rem;
    color: #1a4f2e;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: #355f45;
    max-width: 650px;
    margin: 0 auto 60px;
}

/* ===== CONTACT CARDS ===== */
.contact-card-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.contact-card {
    background: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    width: 260px;
    padding: 28px 22px;
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.07);
    transition: 0.3s;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.10);
}

.contact-card h3 {
    font-size: 1.4rem;
    color: #1b4a30;
    margin-bottom: 10px;
}

.contact-card p {
    color: #2d5b3c;
    font-size: 1.05rem;
}

.icon {
    font-size: 2.3rem;
    margin-bottom: 10px;
}

/* ===== FORM ===== */
.form-wrapper {
    display: flex;
    justify-content: center;
}

.contact-form {
    background: rgba(255,255,255,0.7);
    backdrop-filter: blur(12px);
    padding: 35px;
    border-radius: 20px;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 10px 35px rgba(0,0,0,0.07);
}

.input-group {
    text-align: left;
    margin-bottom: 18px;
}

.input-group label {
    font-weight: 600;
    color: #2a4d37;
    margin-bottom: 6px;
    display: inline-block;
}

input,
textarea {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #bcd8c4;
    font-size: 1rem;
    font-family: inherit;
    outline: none;
    transition: border 0.25s ease;
}

input:focus,
textarea:focus {
    border-color: #28a35f;
}

textarea {
    height: 130px;
    resize: none;
}

/* ===== BUTTON ===== */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: #2c8d52;
    border: none;
    color: white;
    font-size: 1.15rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #1f6c3e;
}
.home-btn {
    display: inline-block;
    margin-top: 30px;
    background: #1e6f3b;
    color: white;
    padding: 12px 26px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: 0.3s;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.home-btn:hover {
    background: #16542d;
    transform: translateY(-3px);
}
