/* Reset and Body Styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f0;
}

/* ===== NAVBAR ===== */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #343a40;
    padding: 15px 30px;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-logo {
    font-size: 25px;
    font-weight: bold;
    cursor: pointer;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.navbar-menu a {
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.navbar-menu a:hover {
    background-color: #d62839;
    border-radius: 5px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
    transition: 0.4s;
}

/* ===== HERO SECTION ===== */
.hero {
    width: 100%;
    height: auto;
    padding: 30px 15px;
    background: #9b9b9b;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    z-index: 10;
}

/* ===== BOOKING BAR ===== */
.booking-bar {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 8px;
    background: #ffffff;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    width: 100%;
}

.booking-bar input,
.booking-bar select {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 14px;
    outline: none;
}

.booking-bar input:focus,
.booking-bar select:focus {
    border-color: #0b5ed7;
    box-shadow: 0 0 0 2px rgba(11,94,215,0.15);
}

.booking-bar button {
    background: #FFBF00;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    font-size: 13px;
    padding: 10px 14px;
    white-space: nowrap;
    flex-shrink: 0;
}

.booking-bar button:hover {
    background: #FFBF00;
}

/* ===== FEATURED PACKAGES ===== */
.featured-packages {
    padding: 50px 20px;
    text-align: center;
    background-color: #e9ecef;
}

.featured-packages h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.package-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.package-card {
    width: 300px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.package-card:hover {
    transform: translateY(-5px);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-card h3 {
    margin: 15px;
    font-size: 20px;
    color: #333;
}

.package-card p {
    margin: 0 15px 15px;
    font-size: 14px;
    color: #666;
}

.package-card button {
    margin: 15px;
    padding: 10px;
    width: calc(100% - 30px);
    border: none;
    background-color: #007bff;
    color: white;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

.package-card button:hover {
    background-color: #0056b3;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 50px 20px;
    background-color: #343a40;
    color: white;
    text-align: center;
}

.testimonials h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.testimonial-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card {
    background-color: #495057;
    border-radius: 10px;
    padding: 20px;
    max-width: 300px;
    text-align: left;
}

.testimonial-card p {
    font-size: 16px;
    margin-bottom: 10px;
}

.testimonial-card h4 {
    font-size: 14px;
    color: #ccc;
}

/* ===== SLIDE PANEL ===== */
.slide-panel {
    position: fixed;
    bottom: 30px;
    right: -280px;
    width: 240px;
    max-height: 320px;
    overflow: hidden;
    background: #fff;
    border-radius: 16px 0 0 16px;
    padding: 24px 20px;
    box-shadow: -4px 4px 20px rgba(0,0,0,0.18);
    z-index: 9999;
    transition: right 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border-left: 4px solid #ff6600;
}

.slide-panel.show {
    right: 0;
}

.slide-panel .close-btn {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 20px;
    cursor: pointer;
    color: #888;
    line-height: 1;
}

.slide-panel-tag {
    font-size: 12px;
    font-weight: bold;
    color: #ff6600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.slide-panel h2 {
    font-size: 20px;
    color: #222;
    margin-bottom: 6px;
}

.slide-price {
    font-size: 32px;
    font-weight: bold;
    color: #ff6600;
    line-height: 1;
    margin-bottom: 8px;
}

.slide-price span {
    font-size: 14px;
    color: #888;
    font-weight: normal;
}

.slide-panel p {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

.popup-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #ff6600;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 14px;
    transition: background 0.2s;
}

.popup-btn:hover {
    background: #e05500;
}

.offers-carousel {
    position: relative;
    overflow: hidden;
    min-height: 110px;
}

.offer-slide {
    display: none;
    animation: slideIn 0.4s ease;
}

.offer-slide.active {
    display: block;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(30px); }
    to   { opacity: 1; transform: translateX(0); }
}

.carousel-dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 10px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: background 0.2s;
}

.dot.active {
    background: #ff6600;
}

@keyframes popupFade {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* ===== KEYWORDS SECTION ===== */
.keywords-section {
    padding: 40px 20px;
    text-align: center;
    background-color: #343a40;
}

.keywords-section h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #f8f9fa;
}

.keywords-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.keywords-container a {
    background-color: #595959;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.keywords-container a:hover {
    background-color: #0056b3;
}

.keywords-container a {
        font-size: 13px;
        padding: 8px 12px;
    }

/* ===== FOOTER ===== */
footer {
    background-color: #343a40;
    color: white;
    padding: 20px;
    text-align: center;
}

footer a {
    color: #007bff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
    .booking-bar {
        flex-wrap: wrap;
    }

    .booking-bar input,
    .booking-bar select {
        flex: 1 1 45%;
    }

    .booking-bar button {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 0;
        background-color: #343a40;
        width: 100%;
        text-align: center;
        z-index: 1000;
    }

    .navbar-menu a {
        padding: 15px 0;
        border-bottom: 1px solid #495057;
    }

    .navbar-menu.show {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .package-card {
        width: 100%;
        max-width: 300px;
    }

    .testimonial-cards {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 15px 10px;
    }

    .booking-bar {
        flex-direction: column;
        gap: 10px;
        padding: 15px;
    }

    .booking-bar input,
    .booking-bar select {
        width: 100%;
        font-size: 14px;
        padding: 12px;
        min-height: 48px;
        border-radius: 8px;
        border: 1px solid #ccc;
        background-color: #fff;
        color: #333;
        appearance: auto;
        -webkit-appearance: auto;
    }

    .booking-bar button {
        width: 100%;
        height: 48px;
        font-size: 15px;
        background: #FFBF00;
        
    }
}

    /* ===== PACKAGE BADGE ===== */
.package-badge {
    display: inline-block;
    background-color: #0b5ed7;
    color: white;
    font-size: 12px;
    font-weight: bold;
    padding: 4px 10px;
    border-radius: 20px;
    margin: 10px 15px 0;
}
input[type="date"]:before {
    content: attr(title);
    color: #999;
    margin-right: 4px;
}
input[type="date"]:focus:before,
input[type="date"]:valid:before {
    display: none;
}
input[type="time"]:before {
    content: attr(title);
    color: #999;
    margin-right: 4px;
}
input[type="time"]:focus:before,
input[type="time"]:valid:before {
    display: none;
}
/* ===== HOTEL CARDS ===== */
/* ===== HOTEL SECTION ===== */
.hotel-section {
    padding: 50px 20px;
    background-color: #e9ecef;
    text-align: center;
}

.hotel-section-header h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #111;
}

.hotel-cards-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.hotel-card {
    width: 300px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: left;
    transition: transform 0.3s ease;
}

.hotel-card:hover {
    transform: translateY(-5px);
}

.hotel-img-wrapper {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #ccc;
}

.hotel-img-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.hotel-img-placeholder {
    display: none;
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #1a1a2e, #0f3460);
    align-items: center;
    justify-content: center;
    font-size: 52px;
}

.hotel-duration-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #28a745;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: 20px;
}

.hotel-info {
    padding: 14px 16px 16px;
}

.hotel-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 6px;
    line-height: 1.35;
}

.hotel-loc {
    font-size: 13px;
    color: #777;
    margin-bottom: 8px;
}

.hotel-price-line {
    font-size: 14px;
    color: #333;
    margin-bottom: 6px;
}

.hotel-price-line strong {
    color: #111;
}

.hotel-stars-row {
    font-size: 15px;
    margin-bottom: 14px;
}

.btn-book-now {
    display: block;
    width: 100%;
    padding: 10px;
    margin-bottom: 8px;
    border: none;
    background-color: #28a745;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.btn-book-now:hover {
    background-color: #1e7e34;
}

.btn-view-details {
    display: block;
    width: 100%;
    padding: 10px;
    border: none;
    background-color: #28a745;
    color: white;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.2s ease;
}

.btn-view-details:hover {
    background-color: #1e7e34;
}

/* ===== HOTEL MOBILE ===== */
@media (max-width: 768px) {
    .hotel-card {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 576px) {
    .hotel-section {
        padding: 30px 10px;
    }

    .hotel-cards-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hotel-card {
        width: 100%;
        max-width: 100%;
    }

    .hotel-img-wrapper img,
    .hotel-img-placeholder {
        height: 180px;
    }

    .hotel-info h3 {
        font-size: 16px;
    }

    .btn-book-now,
    .btn-view-details {
        font-size: 15px;
        padding: 12px;
        min-height: 48px;
    }
}

.hotel-city-title {
  font-size: 20px;
  color: #2c5364;
  margin: 28px 0 14px 10px;
  padding-left: 10px;
  border-left: 4px solid #ff7a18;
}
