/* ===== Reserve Villa Section ===== */
.reserve-villa-section {
    background: #f5f5f5;
}
.extra_area_villa {
    padding: 60px 20px 70px;
    background: #f5f5f5;
}
.extra_container {
    max-width: 960px;
    margin: 0 auto;
}

/* ===== Form Layout ===== */
.villa-form {
    padding: 30px 10px 20px;
}
.villa-form {
    width: 65%;
    margin: 0px auto;
}
.reserve-form .form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 28px;
}
.reserve-form .form-group {
    position: relative;
}
.reserve-form .form-group input {
    /*width: 100%;*/
    height: 48px;
    border: 1px solid #d7d7d7;
    background: #fff;
    padding: 0 14px;
    font-size: 16px;
    /*color: #333;*/
    outline: none;
    box-sizing: border-box;
    border-radius: 3px;
    transition: border-color 0.2s;
}
.reserve-form .form-group input::placeholder {
    color: #808080;
}
.reserve-form .form-group input:focus {
    border-color: #008a05;
    box-shadow: 0 0 0 3px rgba(0, 138, 5, 0.12);
}

/* ===== Validation Error States ===== */
.reserve-form .form-group input.input-error {
    border-color: #d0021b;
    background: #fff8f8;
}
.reserve-form .form-group input.input-error:focus {
    box-shadow: 0 0 0 3px rgba(208, 2, 27, 0.12);
}
.error-message {
    display: none;
    font-size: 12px;
    color: #d0021b;
    margin-top: 5px;
    padding-left: 2px;
}
.error-message.show {
    display: block;
}

/* ===== Submit Button ===== */
.book-btn-wrap {
    text-align: center;
    margin-top: 16px;
}
.book-btn {
    background: #008a05;
    color: #fff;
    border: none;
    padding: 15px 42px;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.5px;
    cursor: pointer;
    border-radius: 3px;
    min-width: 190px;
    transition: background 0.2s;
}
.book-btn:hover {
    background: #007000;
}

/* ===== OR / Contact Row ===== */
.or-text {
    text-align: center;
    font-size: 28px;
    color: #222;
    margin: 26px 0 12px;
}
.contact-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}
.contact-box {
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 280px;
}
.contact-icon {
    font-size: 34px;
    color: #5b6d5d;
    line-height: 1;
}
.contact-text span {
    display: block;
    font-size: 16px;
    color: #222;
    margin-bottom: 4px;
}
.contact-text strong {
    display: block;
    font-size: 22px;
    color: #000;
    font-weight: 700;
}
.divider-line {
    width: 1px;
    height: 58px;
    background: #222;
}

/* ===== Security / Payment Section ===== */
.security-block {
    text-align: center;
    margin-bottom: 30px;
}
.security-block h3 {
    font-size: 32px;
    color: #000;
    font-weight: 500;
    margin-bottom: 12px;
}
.security-block p {
    font-size: 18px;
    color: #222;
    margin: 0;
}
.payment-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 45px;
}
.payment-logos .logo-box {
    display: flex;
    align-items: center;
    justify-content: center;
}
.payment-logos .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* ===== Feature Cards ===== */
.feature-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.feature-card {
    background: #fff;
    padding: 38px 24px;
    text-align: center;
    min-height: 180px;
    box-sizing: border-box;
}
.feature-card h4 {
    font-size: 24px;
    color: #000;
    font-weight: 600;
    margin-bottom: 14px;
}
.feature-card p {
    font-size: 16px;
    color: #222;
    line-height: 1.6;
    margin: 0;
}

/* ===== Responsive ===== */
@media (max-width: 767px) {
    .reserve-villa-section h2 {
        font-size: 32px;
    }
    .reserve-form .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .book-btn {
        width: 100%;
        max-width: 280px;
        font-size: 18px;
    }
    .contact-row {
        flex-direction: column;
        gap: 20px;
    }
    .divider-line {
        width: 60px;
        height: 1px;
    }
    .security-block h3 {
        font-size: 26px;
    }
    .security-block p {
        font-size: 16px;
    }
    .feature-boxes {
        grid-template-columns: 1fr;
    }
}
.reserve_villa {
    text-transform: capitalize; text-align: center;
}
