body {
    background-color: var(--bg-light);
    color: #1e293b;
    font-family: 'Inter', sans-serif;
}

/* Top Floating Breadcrumb/Actions */
.hotel-header-section {
    background: #fff;
    padding: 25px 0;
    border-bottom: 1px solid var(--border-color);
}

.star-rating {
    color: #febb02;
    font-size: 0.85rem;
}

/* Premium Gallery Grid */
.gallery-layout {
    border-radius: 12px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: repeat(2, 200px);
    gap: 8px;
    margin-bottom: 30px;
}

.gallery-item-main {
    grid-row: span 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item-sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    cursor: pointer;
}

.gallery-item-sub:hover {
    filter: brightness(0.8);
}

/* Room Table Styles */
.availability-table {
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    background: #fff;
}

.availability-table thead {
    background: #4c67a1;
    color: white;
}

.availability-table th {
    padding: 15px 20px;
    font-weight: 700;
    font-size: 0.8rem;
    text-transform: uppercase;
}

.availability-table td {
    padding: 20px;
    border-bottom: 1px solid #f1f5f9;
    vertical-align: top;
}

.room-info-col {
    background: #f8fbff;
    border-right: 1px solid #e2e8f0;
}

/* Facilities Grid */
.facility-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #475569;
}

.facility-icon {
    color: var(--success-green);
    width: 20px;
    text-align: center;
}

/* Sticky Sidebar Summary */
.sticky-box {
    position: sticky;
    top: 100px;
}

.btn-book-main {
    background: var(--primary-blue);
    color: white !important;
    font-weight: 800;
    border-radius: 8px;
    padding: 12px 25px;
    transition: 0.3s;
    border: none;
}

.btn-book-main:hover {
    background: #0d265a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(19, 53, 123, 0.15);
}


/* my-booking-details page css */

.booking-header {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border-bottom: 1px solid var(--border-color);
    margin-left: 80px;
    margin-right: 80px;
    margin-top: 20px
}

.status-confirmed {
    color: #008009;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Modern Detail Cards */
.detail-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    margin-bottom: 20px;
    overflow: hidden;
}

.card-title-bar {
    background: #f8fafc;
    padding: 15px 20px;
    border-bottom: 1px solid var(--border-color);
    font-weight: 800;
    font-size: 0.9rem;
    color: #475569;
    text-transform: uppercase;
}

.card-body-content {
    padding: 20px;
}

/* Sidebar Summary */
.sticky-sidebar {
    position: sticky;
    top: 100px;
}

.summary-box {
    background: #fff;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    padding: 25px;
}

/* Action Buttons [cite: 2026-02-12] */
.btn-action-light {
    background: #fff;
    border: 1.5px solid #cbd5e1;
    color: #475569;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 20px;
    transition: 0.3s;
}

.btn-action-light:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
}

/* mo booking page css */




/* Favorite Page css */

.fav-tabs {
    background: var(--white);
    margin-top: 30px;
    padding: 6px;
    border-radius: 15px;
    display: inline-flex;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.fav-tabs .nav-link {
    border-radius: 12px;
    padding: 12px 35px;
    font-weight: 700;
    color: #64748b;
    border: none;
    transition: 0.3s all ease;
}

.fav-tabs .nav-link.active {
    background-color: var(--primary-blue) !important;
    color: var(--white) !important;
    box-shadow: 0 5px 15px rgba(19, 53, 123, 0.3);
}

/* Hotel Card Design */
.fav-card {
    background: var(--white);
    border-radius: 24px;
    border: none;
    overflow: hidden;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.fav-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-img-wrap {
    position: relative;
    overflow: hidden;
}

.heart-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s;
    border: none;
}

.heart-btn:hover {
    background: var(--danger);
    color: white !important;
}

/* Flight Row Design [cite: 2025-10-17] */
.flight-fav-row {
    background: var(--white);
    border-radius: 20px;
    padding: 25px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.flight-fav-row:hover {
    border-color: var(--primary-blue);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.airline-logo-box {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-text {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 800;
}

.btn-book {
    background: var(--primary-blue);
    color: white;
    border-radius: 12px;
    padding: 12px 25px;
    font-weight: 700;
    border: none;
    transition: 0.3s;
}

.btn-book:hover {
    background: var(--accent-blue);
    transform: scale(1.02);
    color: white;
}


/* Payment page css */

/* Simple Payment Card */
.payment-container {
    max-width: 600px;
    margin: 100px auto;
}

.payment-card {
    background: var(--bg-white);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    overflow: hidden;
}

.payment-header {
    background: #f1f5f9;
    padding: 25px;
    border-bottom: 1px solid var(--border-color);
    text-align: center;
}

.payment-body {
    padding: 40px;
}

/* Total Amount Highlight */
.amount-box {
    background: #f0f7ff;
    border: 1.5px dashed var(--primary-blue);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.amount-label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.total-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-blue);
    display: block;
}

/* Input Styling */
.form-group {
    margin-bottom: 20px;
}

.form-label {
    font-weight: 700;
    font-size: 0.85rem;
    color: #475569;
    margin-bottom: 8px;
    display: block;
}

.form-input {
    border-radius: 10px;
    padding: 12px 15px;
    border: 1.5px solid var(--border-color);
    width: 100%;
    transition: 0.3s;
    font-size: 1rem;
}

.form-input:focus {
    border-color: var(--primary-blue);
    outline: none;
    box-shadow: 0 0 0 4px rgba(19, 53, 123, 0.05);
}

/* Custom Pay Button [cite: 2026-02-12] */
.btn-pay-secure {
    background-color: var(--primary-blue);
    color: #fff !important;
    border: none;
    border-radius: 12px;
    padding: 18px;
    font-weight: 800;
    font-size: 1.2rem;
    width: 100%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    margin-top: 10px;
}

.btn-pay-secure:hover {
    background-color: #0d265a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(19, 53, 123, 0.15);
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    opacity: 0.6;
}


/* step3 select flight page css */

.filter-sidebar {
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.filter-section-title {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: #888;
    margin-bottom: 15px;
}

/* Tabs Styling */
.flight-filter-container {
    border-radius: 12px 12px 0 0;
    border: 1px solid var(--border-color);
    border-bottom: none;
}

.tab-item {
    background: #fff;
    border: none !important;
    border-bottom: 4px solid transparent !important;
    padding: 1.2rem 0.5rem !important;
    transition: 0.3s;
}

.tab-item.active {
    border-bottom: 4px solid var(--primary-blue) !important;
}

.tab-item.active span {
    color: var(--primary-blue);
}

/* Flight Card Styling */
.flight-card {
    border-radius: 0 0 12px 12px;
    border: 1px solid var(--border-color);
    border-top: 1px solid #eee !important;
    transition: 0.3s;
}

.flight-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.airline-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.duration-line {
    border-bottom: 2px solid var(--border-color);
    margin: 10px 0;
    width: 100%;
    position: relative;
}

.duration-line::after {
    content: '\f072';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 0 10px;
    color: var(--primary-blue);
    font-size: 0.85rem;
}

.badge-deal {
    background-color: #e8f0fe;
    color: var(--primary-blue);
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 50px;
}

/* Price Section */
.price-container {
    background-color: #f8fafc;
    border-left: 1px solid var(--border-color);
}

.btn-book {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    padding: 10px 25px;
    transition: 0.3s;
}

.btn-book:hover {
    background-color: #0d265a;
    color: white;
}

/* Custom Form Elements */
.custom-check:checked {
    background-color: var(--primary-blue) !important;
    border-color: var(--primary-blue) !important;
}

.custom-range::-webkit-slider-thumb {
    background: var(--primary-blue) !important;
}



/* Search Section Global Settings */
.search-section-wrapper,
.search-section-wrapper * {
    box-sizing: border-box !important;
}

/* Professional Search Section Positioning */
.search-section-wrapper {
    margin-top: -100px !important;
}

.search-card-premium {
    border-radius: 24px 24px 24px 24px !important;
}

/* step 4 book now page css */

/* Booking Cards */
.booking-card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid var(--border-soft);
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.card-header-gray {
    background: #ffffff;
    padding: 18px 25px;
    border-bottom: 1px solid var(--border-soft);
}

/* Blue Line Removal Logic */
.section-title {
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    position: relative;
    background: #fff;
    z-index: 1;
}

.section-title::before,
.section-title::after {
    display: none !important;
    content: none !important;
}

/* Airplane Seat Grid */
.airplane-body {
    background: #fff;
    border: 2px solid #cbd5e1;
    border-radius: 60px 60px 30px 30px;
    padding: 40px 15px;
    max-width: 310px;
    margin: 0 auto;
}

.seat-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 6px;
    align-items: center;
}

.seat {
    width: 100%;
    height: 35px;
    border: 2px solid #cbd5e1;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    cursor: pointer;
}

.seat.selected {
    background: var(--primary-blue) !important;
    color: #fff !important;
}

.seat.occupied {
    background: #f1f5f9;
    border: none;
    color: #cbd5e1;
    cursor: not-allowed;
}

.btn-booking-next {
    background: var(--primary-blue);
    color: #fff !important;
    border-radius: 12px;
    padding: 18px;
    font-weight: 800;
    width: 100%;
    display: block;
    text-align: center;
    box-shadow: 0 10px 20px rgba(19, 53, 123, 0.2);
    border: none;
}

/* about us page css */



.service-icon-box {
    width: 60px;
    height: 60px;
    background: #f1f5f9;
    color: var(--primary-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: 0.3s;
}

.service-card:hover .service-icon-box {
    background: var(--primary-blue);
    color: white;
}

/* Company Info Footer Section */
.company-info-bar {
    background: #f8fafc;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid #e2e8f0;
}

/* home page blog section css */

   /* Professional Video Container [cite: 2026-02-21] */
   .blog-subscribe-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    margin: 10px;
    background: #000;
}

/* Video BG to match the Hero Layout [cite: 2026-02-21] */
.video-bg-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.video-bg-container iframe {
    width: 100vw;
    height: 56.25vw; /* 16:9 ratio */
    min-height: 100%;
    min-width: 177.77vh;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

/* Professional Blue Overlay [cite: 2025-10-17, 2026-02-21] */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(19, 53, 123, 0.65); /* Travelscravel Blue Tint [cite: 2025-10-17] */
    z-index: 2;
}

.blog-content-box {
    position: relative;
    z-index: 3;
    max-width: 900px;
    margin: 0 auto;
}

.blog-tag {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
    padding: 5px 20px;
    border-radius: 50px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 20px;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

/* Large Professional Heading [cite: 2026-02-21] */
.blog-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.blog-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.btn-beyond-link {
    background: #fff;
    color: #13357B !important;
    padding: 15px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s;
    border: none;
}

.btn-beyond-link:hover {
    background: #13357B;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* home page tour css */

   /* Images ki height choti karne ke liye [cite: 2025-10-17] */
   .national-item, .international-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    height: 180px !important; /* Pehle bari thi, ab 180px kar di */
    margin-bottom: 10px;
}

.national-item img, .international-item img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image stretch nahi hogi [cite: 2025-10-17] */
}

/* Content ko choti images ke mutabiq set kiya [cite: 2025-10-17] */
.national-content, .international-content {
    padding: 15px !important;
    background: linear-gradient(rgba(0,0,0,0), rgba(19, 53, 123, 0.8));
}

.national-info h5, .international-info h5 {
    font-size: 0.9rem !important;
    font-weight: 700;
    margin-bottom: 5px !important;
}

.national-info a, .international-info a {
    font-size: 0.75rem !important;
}

/* Offers badge size chota kiya [cite: 2025-10-17] */
.tour-offer {
    padding: 2px 10px !important;
    font-size: 0.7rem !important;
    border-radius: 5px;
}


/* home page packages css  */

 /* Card size control [cite: 2025-10-17] */
 .packages-item {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 30px;
    border: 1px solid #eee;
    transition: 0.3s;
}

.packages-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Image height fix to prevent "heavy" look [cite: 2025-10-17] */
.packages-img {
    position: relative;
    height: 220px;
    /* Fixed height for consistency */
    overflow: hidden;
}

.packages-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* This prevents stretching */
}

/* Price tag styling [cite: 2025-10-17] */
.packages-price {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: #fff;
    border-radius: 5px;
    font-weight: 700;
    z-index: 6;
}

/* Info bar transparency [cite: 2025-10-17] */
.packages-info {
    background: rgba(19, 53, 123, 0.85);
    /* Travelscravel Blue Tint */
    color: #fff;
    font-size: 12px;
}