/* ==========================================================================
   1. GENERAL RESET & BASE STYLES
   ========================================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}

/* ==========================================================================
   2. NAVIGATION HEADER
   ========================================================================== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background-color: #ffffff;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo a.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
}

.navbar-logo {
    width: 50px;
    max-height: 50px;
    object-fit: contain;
    border-radius: 8px;
}

.logo h2 {
    color: #2c3e50;
    font-weight: 700;
    margin: 0;
}

.logo h2 span {
    color: #27ae60;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #555;
    font-weight: 600;
    transition: 0.3s;
    cursor: pointer;
}

nav ul li a:hover, nav ul li a.active {
    color: #27ae60;
}

.contact-btn a {
    background-color: #27ae60;
    color: #fff;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
    display: inline-block;
}

@media (min-width: 769px) and (max-width: 1024px) {
    header {
        padding: 18px 6%;
    }

    nav ul {
        flex-wrap: nowrap;
    }

    nav ul li {
        margin: 0 10px;
    }

    nav ul li a {
        font-size: 0.9rem;
    }

    .contact-btn a {
        padding: 9px 16px;
        font-size: 0.9rem;
    }
}

/* TAB LOGIC CONTROL */
.page-content {
    display: none;
}

.page-content.active-page {
    display: block;
}

/* ==========================================================================
   3. HOME PAGE: HERO & HERO BOOKING FORM
   ========================================================================== */
.hero-container {
    background: linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)), 
                url('../img/OOty image.jpeg') no-repeat center center/cover;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px 8%;
    gap: 40px;
    flex-wrap: wrap;
}

.hero-left {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.hero-left h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    max-width: 550px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

/* FORM BLOCK - HERO PACK */
.booking-card {
    background: rgba(255,255,255,0.96);
    width: 100%;
    max-width: 430px;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(39,174,96,0.18);
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.booking-card-header {
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: #ffffff;
    text-align: center;
    padding: 18px 20px;
    font-size: 1.35rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.booking-card-body {
    padding: 26px 24px 24px;
}

.service-checkboxes {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-bottom: 18px;
    justify-content: center;
}

.checkbox-group {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #1f3b28;
    background: transparent;
    padding: 10px 14px;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.checkbox-group:hover {
    background: rgba(39,174,96,0.05);
}

.checkbox-group input {
    width: 18px;
    height: 18px;
    accent-color: #27ae60;
}

.checkbox-group:has(input:checked) {
    background: rgba(39,174,96,0.14);
    border-color: rgba(39,174,96,0.4);
}

.checkbox-group:has(input:checked) span,
.checkbox-group:has(input:checked) {
    color: #19632d;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 16px;
}

.form-full {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.92rem;
    font-weight: 700;
    color: #2c3e34;
    margin-bottom: 6px;
}

.booking-card-body input[type="text"],
.booking-card-body input[type="tel"],
.booking-card-body input[type="email"],
.booking-card-body input[type="date"],
.booking-card-body textarea,
.reserve-card-body input[type="text"],
.reserve-card-body input[type="tel"],
.reserve-card-body input[type="email"],
.reserve-card-body input[type="date"],
.reserve-card-body textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid rgba(39,174,96,0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    outline: none;
    background-color: #fbfdfb;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-card-body input[type="text"]:focus,
.booking-card-body input[type="tel"]:focus,
.booking-card-body input[type="email"]:focus,
.booking-card-body input[type="date"]:focus,
.booking-card-body textarea:focus,
.reserve-card-body input[type="text"]:focus,
.reserve-card-body input[type="tel"]:focus,
.reserve-card-body input[type="email"]:focus,
.reserve-card-body input[type="date"]:focus,
.reserve-card-body textarea:focus {
    border-color: #27ae60;
    box-shadow: 0 0 0 4px rgba(39,174,96,0.12);
}

.booking-card-body textarea, .reserve-card-body textarea {
    resize: none;
    height: 90px;
}

.booking-card-body .form-field .input-icon input,
.booking-card-body .form-field .input-icon textarea,
.reserve-card-body .form-field .input-icon input,
.reserve-card-body .form-field .input-icon textarea,
.form-field .input-icon input,
.form-field .input-icon textarea {
    padding-left: 50px;
}

.btn-book-now {
    background-color: #27ae60;
    color: #ffffff;
    width: 100%;
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 10px;
    cursor: pointer;
    margin-top: 10px;
}

/* Redesigned form components */
.form-field {
    margin-bottom: 16px;
}

.form-field label {
    display: block;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 6px;
    font-weight: 600;
}

.input-icon {
    position: relative;
}

.date-field {
    position: relative;
}

.date-input-wrap {
    position: relative;
    cursor: text;
}

.date-input-wrap input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 46px;
    box-sizing: border-box;
    background-color: #fff;
    cursor: pointer;
}

.date-input-wrap .date-placeholder {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.95rem;
    pointer-events: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.date-input-wrap input:focus + .date-placeholder,
.date-input-wrap input:valid + .date-placeholder {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-55%);
}

input[type="date"]:invalid {
    color: transparent;
}

input[type="date"]:invalid::-webkit-datetime-edit,
input[type="date"]:invalid::-webkit-datetime-edit-text,
input[type="date"]:invalid::-webkit-datetime-edit-month-field,
input[type="date"]:invalid::-webkit-datetime-edit-day-field,
input[type="date"]:invalid::-webkit-datetime-edit-year-field {
    color: transparent;
}

.input-icon i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    font-size: 1rem;
    pointer-events: none;
}

.input-icon input,
.input-icon textarea,
.input-icon select {
    display: block;
    width: 100%;
    padding: 12px 12px 12px 60px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 0.95rem;
    line-height: 1.6;
    min-height: 46px;
    box-sizing: border-box;
    background-color: #fff;
}

.input-icon.no-icon input,
.input-icon.no-icon textarea {
    padding: 12px !important;
}

.input-icon.no-icon i {
    display: none;
}

.input-icon textarea {
    min-height: 100px;
    resize: vertical;
}

.input-icon input:-webkit-autofill,
.input-icon textarea:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #fff inset;
}

.input-icon input::placeholder,
.input-icon textarea::placeholder {
    color: #999;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 768px) {
    .form-grid { grid-template-columns: 1fr; }
}

.form-help {
    font-size: 0.85rem;
    color: #666;
    margin-top: 6px;
}

.form-error {
    color: #c0392b;
    font-size: 0.85rem;
    margin-top: 6px;
}

.btn-primary {
    background: linear-gradient(180deg,#2ecc71,#27ae60);
    color: #fff;
    border: none;
    padding: 14px 18px;
    border-radius: 12px;
    font-weight:700;
    font-size:16px;
    cursor:pointer;
    box-shadow: 0 12px 24px rgba(39,174,96,0.22);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 28px rgba(39,174,96,0.28);
}


/* ==========================================================================
   4. HOME PAGE: 24-HOUR DESTINATION MASONRY GRID
   ========================================================================== */
.destination-section {
    padding: 60px 8%;
    background-color: #ffffff;
}

.dest-title-area h2 {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 8px;
}

.dest-meta-info {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.95rem;
    color: #333;
    font-weight: 500;
    margin-bottom: 25px;
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 200px;
    gap: 20px;
}

.dest-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.dest-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dest-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0) 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

.dest-overlay h3 {
    color: #ffffff;
    font-size: 1.25rem;
}

.item-ooty { grid-column: 1; grid-row: 1; }
.item-coonoor { grid-column: 1; grid-row: 2; }
.item-avalanche { grid-column: 2; grid-row: 1 / span 2; }
.item-pykara { grid-column: 3; grid-row: 1; }
.item-custom { grid-column: 3; grid-row: 2; }

/* ==========================================================================
   5. HOME PAGE: COIMBATORE TO OOTY HONEYMOON CARDS
   ========================================================================== */
.honeymoon-section {
    padding: 60px 8%;
    background-color: #fdfdfd;
    border-top: 1px solid #eee;
}

.hm-header {
    text-align: center;
    margin-bottom: 40px;
}

.hm-header h2 {
    font-size: 2rem;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.hm-header p {
    color: #555;
    font-size: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.hm-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.hm-card {
    background: #ffffff;
    border: 1px solid #c8c8c8;
    border-radius: 20px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
}

.hm-duration {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 5px;
}

.hm-includes {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 15px;
}

.hm-card-img {
    width: 100%;
    height: 180px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 20px;
}

.hm-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 1.05rem;
}

.hm-price-label {
    font-weight: 700;
    color: #2c3e50;
}

.hm-price-value {
    font-weight: 700;
    color: #a2b43a;
}

.btn-hm-book {
    background-color: #a2b43a;
    color: #ffffff;
    border: none;
    padding: 10px 24px;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 25px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 20px auto 0 auto;
    width: max-content;
}

/* ==========================================================================
   6. OOTY PACKAGES PAGE: AGENCY TOUR DESCRIPTION & RESERVATION BOX
   ========================================================================== */
.agency-section {
    padding: 60px 8% 40px 8%;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 50px;
    flex-wrap: wrap;
}

.agency-left {
    flex: 1.2;
    min-width: 320px;
}

.agency-tagline {
    font-size: 1rem;
    color: #555;
    margin-bottom: 10px;
    font-weight: 500;
}

.agency-left h1 {
    font-size: 2.2rem;
    color: #232b38;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 25px;
}

.agency-p {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 20px;
    text-align: justify;
}

.contact-info-heading {
    margin-top: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-info-item {
    margin-top: 15px;
}

.contact-info-item p {
    margin: 0;
}

.contact-info-item a {
    color: #27ae60;
    text-decoration: none;
}

.agency-places-list {
    margin-top: 35px;
}

.agency-places-list h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: #1a202c;
}

.place-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 10px;
}

.place-list li {
    position: relative;
    padding-left: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.place-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    top: 0;
    color: #27ae60;
    font-size: 1.2rem;
    line-height: 1;
}

.reserve-card {
    flex: 0.8;
    min-width: 320px;
    background: #ffffff;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 30px 25px;
}

.reserve-card h2 {
    font-size: 1.8rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 25px;
}

.reserve-card-body .form-row {
    margin-bottom: 15px;
}
        
.reserve-card-body .form-full {
    margin-bottom: 15px;
}

.btn-reserve-now {
    background-color: #2086d1;
    color: #ffffff;
    width: max-content;
    padding: 12px 35px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    margin: 20px auto 0 auto;
}

/* ==========================================================================
   7. OOTY PACKAGES PAGE: UNFORGETTABLE TRIP CARDS SECTION (NEW CONTENT)
   ========================================================================== */
.unforgettable-section {
    padding: 50px 8% 70px 8%;
    background-color: #fcfcfc;
    border-top: 1px solid #f0f0f0;
}

.unforget-header {
    text-align: center;
    margin-bottom: 45px;
}

.unforget-header h2 {
    font-size: 2.2rem;
    color: #000000;
    font-weight: 700;
    margin-bottom: 12px;
}

.unforget-header p {
    color: #555;
    font-size: 1.05rem;
    max-width: 850px;
    margin: 0 auto;
}

/* 3 Card White Layout Grid Setup */
.unforget-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.unforget-card {
    background: #ffffff;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 20px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.unforget-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 15px;
}

.unforget-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dynamic Blue Tag (e.g. 2D/1N) */
.blue-duration-tag {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #0084ff;
    color: #ffffff;
    padding: 4px 14px;
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: 15px;
}

/* Feature Facility Icons Strip */
.facility-icons-strip {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 10px 0 15px 0;
    padding: 8px 0;
    border-bottom: 1px dashed #e5e5e5;
}

.facility-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    text-align: center;
}

.facility-item i {
    font-size: 1.2rem;
    color: #555;
}

.facility-item span {
    font-size: 0.72rem;
    color: #777;
    font-weight: 500;
}

.unforget-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 15px;
}

/* Bottom Row Action and Price Area */
.unforget-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
}

.btn-view-itinerary {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    font-size: 0.9rem;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-view-itinerary:hover {
    background-color: #222;
}

.unforget-price-block {
    text-align: right;
}

.stars-row {
    color: #f1c40f;
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.unforget-price-value {
    font-size: 1.35rem;
    font-weight: 800;
    color: #27ae60;
}

/* ==========================================================================
   8. GENERAL/ADDITIONAL PAGES & FOOTER
   ========================================================================== */
.contact-container { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; background: #fff; padding: 40px; border-radius: 10px; }
.info-item { display: flex; align-items: center; margin-bottom: 25px; }
.info-item i { font-size: 1.5rem; color: #27ae60; margin-right: 20px; }
.form-group { margin-bottom: 20px; }
.form-group input { width: 100%; padding: 12px; border: 1px solid #ccc; border-radius: 5px; }

footer { background-color: #2c3e50; color: #bdc3c7; margin-top: 60px; }
.footer-container { display: flex; flex-wrap: wrap; justify-content: space-between; padding: 50px 8%; gap: 30px; }
.footer-box { flex: 1; min-width: 250px; }
.footer-box h3 { color: #fff; margin-bottom: 20px; }
.footer-box p { line-height: 1.6; margin-bottom: 15px; }
.footer-box ul { list-style: none; }
.footer-box ul li { margin-bottom: 12px; }
.footer-box ul li a { color: #bdc3c7; text-decoration: none; cursor: pointer; transition: color 0.3s ease; }
.footer-box ul li a:hover { color: #27ae60; }
.footer-social { margin-top: 15px; }
.footer-social p { margin-bottom: 10px; font-weight: 600; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; background-color: rgba(39, 174, 96, 0.2); color: #27ae60; border-radius: 50%; margin-right: 12px; transition: background-color 0.3s ease, color 0.3s ease; }
.footer-social a:hover { background-color: #27ae60; color: #fff; }
.footer-bottom { text-align: center; padding: 20px; background-color: #1a252f; border-top: 1px solid #34495e; }
.footer-bottom a { color: #bdc3c7; text-decoration: none; transition: color 0.3s ease; }
.footer-bottom a:hover { color: #27ae60; }

/* Small improvements for mobile touch targets + FAB + menu */
.btn, .contact-btn a, .btn-book-now, .btn-reserve-now, .btn-hm-book, .btn-card { min-height:44px; padding:12px 16px; font-size:16px; }

.fab-call { position: fixed; right: 18px; bottom: 18px; width:56px; height:56px; border-radius:50%; background:#27ae60; display:flex; align-items:center; justify-content:center; color:#fff; box-shadow:0 6px 18px rgba(0,0,0,0.2); z-index:1100; text-decoration:none; overflow:hidden; transition: width 0.2s ease, border-radius 0.2s ease, padding 0.2s ease; }
.fab-call span { display:none; margin-left: 8px; font-weight: 700; white-space: nowrap; }

.menu-toggle { display:none; background:transparent; border:none; font-size:1.4rem; cursor:pointer; }

@media (max-width: 950px) {
    .dest-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 180px; }
    .item-ooty { grid-column: 1; grid-row: 1; }
    .item-coonoor { grid-column: 1; grid-row: 2; }
    .item-avalanche { grid-column: 2; grid-row: 1 / span 2; }
    .item-pykara { grid-column: 1 / span 2; grid-row: 3; }
    .item-custom { grid-column: 1; grid-row: 4; height: 100%; }
    .item-mudumalai { grid-column: 2; grid-row: 4; height: 100%; margin-top: 0; }
    .agency-section { flex-direction: column; }
    .agency-left, .reserve-card { width: 100%; }
}

@media (max-width: 768px) {
    header { display: flex; flex-wrap: wrap; justify-content: space-between; flex-direction: row; gap: 12px; align-items:center; padding: 14px 6%; }
    .logo { flex: 1 1 auto; min-width: 0; }
    .logo h2 { font-size: 1.25rem; }
    nav { width: auto; }
    nav ul li a { font-size: 0.95rem; }
    .menu-toggle { display:block; order: -1; margin-right: 12px; }
    nav ul { display:none; }
    nav ul.open { display:flex; flex-direction:column; gap:10px; background:#fff; position:absolute; top:72px; left:0; right:0; padding:12px 6%; box-shadow:0 6px 20px rgba(0,0,0,0.08); }
    .contact-btn { order: 1; margin-left: auto; flex-shrink: 0; }

    .fab-call { min-width: 140px; height: 50px; border-radius: 28px; padding: 0 16px; }
    .fab-call i { margin-right: 8px; }
    .fab-call span { display: inline-block; }

    .hero-container { flex-direction: column; text-align: left; padding: 30px 6%; gap: 20px; }
    .hero-left h1 { font-size: 2rem; }
    .hero-left p { font-size: 1rem; max-width: 100%; }

    .booking-card { max-width: 100%; align-self: flex-start; width: 100%; }
    .booking-card-header { font-size: 1.15rem; padding: 14px 16px; }
    .booking-card-body { padding: 18px; }

    .form-label { font-size: 0.9rem; }
    .btn-primary, .btn-book-now { padding: 12px; font-size: 0.95rem; }

    /* Hide visual labels on booking card in mobile and rely on placeholders for inputs */
    .booking-card .form-field label { display: none; }
    .booking-card .form-field { margin-bottom: 12px; }

    .dest-grid { grid-template-columns: 1fr; grid-auto-rows: 200px; }
    .item-ooty, .item-coonoor, .item-avalanche, .item-pykara, .item-custom, .item-mudumalai { grid-column: 1; grid-row: auto; height: 100%; margin-top: 0; }
    .contact-container { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    header { padding: 12px 5%; }
    .logo h2 { font-size: 1.05rem; }
    nav ul li a { font-size: 0.9rem; }
    .hero-left h1 { font-size: 1.6rem; }
    .hero-left p { font-size: 0.95rem; }
    .booking-card { border-radius: 18px; }
    .booking-card-header { font-size: 1rem; padding: 12px 14px; }
    .booking-card-body { padding: 14px; }
    .btn-primary, .btn-book-now { padding: 10px; font-size: 0.95rem; }
}

