/* =========================
   RESET
========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    color: #222;
    line-height: 1.6;
}

/* =========================
   SLIDER / HEADER SECTION
========================= */
.slider {
    position: relative;
    width: 100%;
    height: 70vh;
    background-size: cover;
    background-position: center;
}

.slide {
    width: 100%;
    height: 100%;
    position: relative;
}

.slide-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.contact-header .get-in-touch {
    font-size: 16px;
    color: #e6ae00;
    letter-spacing: 2px;
}

.contact-header .start-planning {
    font-size: 60px;
    font-family: 'Inter', sans-serif;
    color: #fff;
    margin: 10px 0;
}

.contact-header .contact-description {
    font-size: 18px;
    color: #fff;
}

/* =========================
   CONTACT INFO SECTION
========================= */
.contact_info {
    padding: 60px 20px;
    background: #f7f9f6;
}

.info-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: auto;
}

.info-box {
    background: #fff;
    padding: 30px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.info-box:hover {
    transform: translateY(-8px);
}

/* =========================
   ICON CIRCLE
========================= */
.icon-circle {
    width: 70px;
    height: 70px;
    background: #dee5df;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px auto;
}

.icon-circle i {
    font-size: 22px;
    color: #1c4329;
}

/* hover */
.info-box:hover .icon-circle {
    transform: scale(1.05);
    transition: 0.3s ease;
}

/* text */
.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 14px;
    color: #555;
}

/* =========================
   CONTACT FORM + MAP SECTION
========================= */
.contact-section {
    padding: 40px 20px;
    background: #eef4ed;
}

.contact-wrapper {
    display: flex;
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    align-items: stretch;
}

/* LEFT + RIGHT EQUAL */
.contact-form-section,
.map-container {
    flex: 1;
    display: flex;
}

/* FORM BOX */
.form-container {
    width: 100%;
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
}

/* FORM ROW */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
}

/* INPUT GROUP */
.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* LABEL */
form label {
    margin-bottom: 6px;
    color: #1c4329;
    font-size: 14px;
    font-weight: 500;
}

/* =========================
   SOFT INPUT + TEXTAREA STYLE
========================= */
form input,
form textarea {
    width: 100%;
    padding: 10px 12px;

    /* SOFTER BORDER (NOT HARSH GREEN) */
    border: 1px solid rgba(28, 67, 41, 0.35);

    border-radius: 6px;
    font-size: 14px;
    color: #222;
    outline: none;

    /* smooth transition */
    transition: all 0.3s ease;

    background: #fff;
}

/* PLACEHOLDER */
form input::placeholder,
form textarea::placeholder {
    color: #999;
}

/* =========================
   SOFT FOCUS EFFECT (ELEGANT)
========================= */
form input:focus,
form textarea:focus {
    border: 1px solid rgba(28, 67, 41, 0.7);

    /* soft glow instead of harsh border */
    box-shadow: 0 0 8px rgba(28, 67, 41, 0.15);
}

/* TEXTAREA */
form textarea {
    height: 140px;
    resize: none;
}

/* BUTTON */
form button {
    width: 100%;
    padding: 12px;
    margin-top: 10px;
    background-color: #1c4329;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

form button:hover {
    background-color: #163621;
}

/* MAP */
.map-container {
    border-radius: 10px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    min-height: 100%;
    border: none;
}

/* =========================
   WHATSAPP BUTTON
========================= */
.whatsapp-wrapper {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    transition: 0.3s;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    bottom: 10px;
    background: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    opacity: 0;
    transition: 0.3s;
}

.whatsapp-wrapper:hover .whatsapp-tooltip {
    opacity: 1;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
    }

    .map-container iframe {
        height: 350px;
    }

    .form-row {
        flex-direction: column;
    }
}