/* ==========================
   BOOKING SECTION (REFINED)
========================== */

.booking {
    background-color: #f8fafc;
    border-radius: 18px;
    padding: 4rem 2.5rem;
    margin: 3rem auto;
    box-shadow: 0 12px 30px rgba(15, 118, 110, 0.15);
    animation: fadeIn 1s ease-out;
}

/* ==========================
   HEADING
========================== */

.booking h2 {
    color: #0f766e; /* deep luxury teal */
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    position: relative;
}

.booking h2::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background-color: #1abc9c;
    border-radius: 2px;
}

/* ==========================
   LAYOUT
========================== */

.booking-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

/* ==========================
   FORM (LEFT)
========================== */

.booking-form {
    display: grid;
    gap: 1.4rem;
    background-color: #ffffff;
    padding: 2.2rem;
    border-radius: 14px;
    box-shadow: 0 8px 22px rgba(15, 118, 110, 0.18);

    /* keep your left shift */
    margin-left: -40px;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #cbd5e1;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    color: #0f172a;
}

.booking-form input::placeholder,
.booking-form textarea::placeholder {
    color: #94a3b8;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
    outline: none;
    border-color: #1abc9c;
    box-shadow: 0 0 0 3px rgba(26, 188, 156, 0.18);
}

.booking-form textarea {
    resize: none;
}

/* ==========================
   SUBMIT BUTTON (URGENT CTA)
========================== */

.booking-form button {
    background: linear-gradient(135deg, #1abc9c, #0f766e);
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.booking-form button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.35),
        transparent
    );
    transition: left 0.5s ease;
}

.booking-form button:hover::before {
    left: 100%;
}

.booking-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(15, 118, 110, 0.45);
}


/* ==========================
   RIGHT SIDE (IMAGE + TEXT)
========================== */

.booking-info {
    display: flex;
    flex-direction: column;
    gap: 1.3rem;
}

.booking-info img {
    width: 100%;
    max-height: 360px;      /* 🔥 makes image shorter */
    object-fit: cover;     /* keeps image proportional */
    border-radius: 16px;
    box-shadow: 0 14px 30px rgba(15, 118, 110, 0.28);
}


.booking-text h3 {
    color: #0f766e;
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
}

.booking-text p {
    color: #334155;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {
    .booking {
        padding: 2.5rem 1.5rem;
    }

    .booking h2 {
        font-size: 2rem;
        margin-bottom: 2.2rem;
    }

    .booking-layout {
        grid-template-columns: 1fr;
    }

    .booking-form {
        margin-left: 0;
    }

    .booking-info {
        text-align: center;
    }

    .booking-text p {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .booking h2 {
        font-size: 1.75rem;
    }

    .booking-form {
        padding: 1.6rem;
    }

    .booking-form button {
        font-size: 1rem;
    }
}
