.header-top-section {
    background: #ffffff;
    padding: 0px 0;
    border-bottom: 1px solid #f0f0f0;
}
.header-top-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space distribute korbe */
}

/* Logo Width */
.logo img {
    max-width: 180px;
    height: auto;
}

/* Search Bar Design */
.header-search-bar {
    flex-grow: 1;
    margin: 0 40px; /* Logo ebong Right menu theke durotto */
}

.search-input-group {
    position: relative;
    max-width: 500px;
}

.search-input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #003580; /* Blue Search Icon */
    font-size: 16px;
}

.search-input-group input {
    width: 100%;
    padding: 10px 15px 10px 45px;
    border: 1px solid #f2f2f2;
    border-radius: 4px;
    background-color: #f8f9fa;
    font-size: 14px;
    outline: none;
    transition: 0.3s;
}

.search-input-group input:focus {
    border-color: #003580;
}

/* Right Meta Menu */
.header-right-meta {
    display: flex;
    align-items: center;
    gap: 15px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
}

.meta-item a {
    text-decoration: none;
    color: inherit;
}

/* Vertical Dividers (|) */
.meta-item-divider {
    width: 1px;
    height: 20px;
    background-color: #ddd;
}

/* Support Color (Green) */
.support a {
    color: #28a745 !important; /* Green Support color */
}

.support i {
    margin-right: 5px;
}

/* Flag Icons */
.meta-item img {
    width: 18px;
    border-radius: 2px;
}

/* Dropdown Arrow */
.meta-item .fa-caret-down {
    font-size: 12px;
    color: #777;
}

/* Responsive */
@media (max-width: 991px) {
  .header-top-section {
        display: none;
    }
    .header-search-bar {
        display: none;
    }
}


.ads-banner-link {
    display: block;
    text-decoration: none;
}

.ads-banner-pure {
    position: relative;
    overflow: hidden;
    border-radius: 12px; /* Soft curved border */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08); /* Minimal modern shadow */
    height: 280px; /* Apnar pochondo moto height change korte paren */
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #f7f7f7; /* Placeholder background */
}

.ads-banner-pure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ads-banner-pure:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ads-banner-pure:hover img {
    transform: scale(1.05);
}



.section-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
    position: relative;
}

.section-title h2 {
    font-size: 38px;
    font-weight: 700;
    color: #1c2331;
    margin-bottom: 15px;
    text-transform: capitalize;
    letter-spacing: -0.5px;
}


.title-shape {
    width: 60px;
    height: 3px;
    background-color: #ff5a5f;
    margin: 0 auto 20px auto;
    border-radius: 5px;
    position: relative;
}

.title-shape::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 3px;
    background-color: #1c2331;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
}


.section-title p {
    font-size: 16px;
    line-height: 1.7;
    color: #666666;
    margin-bottom: 0;
}


@media (max-width: 767px) {
    .section-title h2 {
        font-size: 28px;
    }
    .section-title {
        padding: 0 15px;
        margin-bottom: 40px;
    }
}

.masonry-gallery{
    column-count: 3;
    column-gap: 12px;
}

.masonry-item{
    break-inside: avoid;
    margin-bottom: 12px;
}

.masonry-item img{
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Responsive */
@media(max-width: 991px){
    .masonry-gallery{
        column-count: 2;
    }
}

@media(max-width: 575px){
    .masonry-gallery{
        column-count: 1;
    }
}

.room-type-badge {
    display: inline-block;
    padding: 2px 4px;
    font-size: small;
    letter-spacing: 0.5px;
    color: #3b82f6;
    background-color: #eff6ff;
    border: 1px solid #bfdbfe;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}


.ticket-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:20px;
    gap:15px;
}

.ticket-info h6{
    margin-bottom:5px;
    font-size:16px;
    font-weight:600;
}

.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
}

.qty-btn{
    width:35px;
    height:35px;
    border:none;
    background:#f5f5f5;
    font-size:20px;
    font-weight:bold;
    border-radius:5px;
    cursor:pointer;
    transition:0.3s;
}

.qty-btn:hover{
    background:#000;
    color:#fff;
}

.qty-box input{
    width:60px;
    text-align:center;
    border:1px solid #ddd;
    height:35px;
    border-radius:5px;
    font-weight:600;
}



/* =====================================================
   CHECKOUT PAGE DESIGN
===================================================== */

.checkout-section {
    background: #f8fafc;
}

/* CARD */
.checkout-card,
.checkout-summary {
    background: #fff;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    border: 1px solid #edf2f7;
}

/* HEADER */
.checkout-card-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 25px;
    padding-bottom: 15px;
}

.checkout-card-header h4,
.checkout-summary h4 {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

/* LABEL */
.checkout-card label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #374151;
    display: block;
}

/* INPUT */
.checkout-card .form-control,
.checkout-card select {
    height: 52px;
    width: 100%;
    border-radius: 12px;
    border: 1px solid #dbe2ea;
    padding: 10px 16px;
    font-size: 15px;
    transition: 0.3s;
    box-shadow: none;
}

.checkout-card textarea.form-control {
    height: 120px;
    resize: none;
}

.checkout-card .form-control:focus,
.checkout-card select:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 4px rgba(13,110,253,0.10);
}

/* TRAVELER BOX */
.traveler-item {
    background: #fafafa;
    border: 1px solid #e5e7eb !important;
    border-radius: 14px !important;
    transition: 0.3s;
}

.traveler-item:hover {
    border-color: #0d6efd !important;
    background: #fff;
}

/* BUTTON */
.theme-btn {
    border: none;
    border-radius: 12px;
    height: 54px;
    font-size: 16px;
    font-weight: 600;
    transition: 0.3s;
}

.theme-btn:hover {
    transform: translateY(-2px);
}

/* ADD TRAVELER BTN */
#addTraveler {
    border-radius: 10px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 600;
}

/* SUMMARY */
.checkout-summary {
    position: sticky;
    top: 120px;
}

.summary-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 14px;
}

.summary-item h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #111827;
}

/* SUMMARY LIST */
.summary-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #e5e7eb;
    font-size: 15px;
    color: #374151;
}

.summary-list li span {
    font-weight: 600;
    color: #111827;
}

/* TOTAL */
.checkout-summary h5 {
    margin: 0;
    font-weight: 700;
}

/* RESPONSIVE */
@media (max-width: 991px) {

    .checkout-summary {
        margin-top: 30px;
        position: relative;
        top: 0;
    }

}

@media (max-width: 575px) {

    .checkout-card,
    .checkout-summary {
        padding: 20px;
    }

    .checkout-card-header h4,
    .checkout-summary h4 {
        font-size: 20px;
    }

}

/* CUSTOMER DASHBOARD */

.customer-area{
    padding:60px 0;
    background:#f5f7fb;
}

.customer-sidebar{
    background:#fff;
    border-radius:16px;
    overflow:hidden;
    box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.customer-sidebar-top{
    background:linear-gradient(135deg,#0d6efd,#4f8cff);
    padding:35px 20px;
    text-align:center;
}

.customer-sidebar-top img{
    width:85px;
    height:85px;
    border-radius:50%;
    border:4px solid #fff;
    margin-bottom:15px;
}

.customer-sidebar-top h4{
    color:#fff;
    margin:0;
    font-size:20px;
    font-weight:700;
}

.customer-sidebar-top p{
    color:rgba(255,255,255,.8);
    margin-top:5px;
    font-size:14px;
}

.customer-menu{
    padding:15px 0;
}

.customer-menu a{
    display:flex;
    align-items:center;
    gap:12px;
    padding:14px 25px;
    color:#222;
    font-weight:600;
    transition:.3s;
    text-decoration:none;
    border-left:4px solid transparent;
}

.customer-menu a:hover{
    background:#f4f7ff;
    color:#0d6efd;
    border-color:#0d6efd;
}

.customer-card{
    background:#fff;
    border-radius:16px;
    padding:30px;
    box-shadow:0 5px 25px rgba(0,0,0,.06);
}

.dashboard-box{
    border-radius:18px;
    padding:30px;
    color:#fff;
    position:relative;
    overflow:hidden;
}

.dashboard-box h5{
    font-size:16px;
    margin-bottom:10px;
}

.dashboard-box h2{
    font-size:38px;
    font-weight:700;
    margin:0;
}

.dashboard-primary{
    background:linear-gradient(135deg,#0d6efd,#4f8cff);
}

.dashboard-success{
    background:linear-gradient(135deg,#12b76a,#48d597);
}

.dashboard-warning{
    background:linear-gradient(135deg,#ff9800,#ffbc58);
}

.booking-table{
    width:100%;
}

.booking-table thead{
    background:#f7f8fa;
}

.booking-table th{
    padding:18px;
    font-size:14px;
    font-weight:700;
}

.booking-table td{
    padding:18px;
    font-size:15px;
    vertical-align:middle;
}

.status-badge{
    padding:8px 14px;
    border-radius:30px;
    font-size:13px;
    font-weight:600;
}

.status-success{
    background:#e8fff3;
    color:#12b76a;
}

.status-warning{
    background:#fff4df;
    color:#ff9800;
}

.view-btn{
    background:#0d6efd;
    color:#fff;
    padding:10px 18px;
    border-radius:30px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.view-btn:hover{
    background:#0b5ed7;
    color:#fff;
}

.customer-form .form-control{
    height:52px;
    border-radius:12px;
    border:1px solid #ddd;
    padding:12px 15px;
}

.customer-form textarea.form-control{
    height:auto;
}

.customer-form label{
    font-weight:600;
    margin-bottom:8px;
}

.customer-btn{
    background:#0d6efd;
    color:#fff;
    border:none;
    padding:13px 28px;
    border-radius:30px;
    font-weight:600;
    transition:.3s;
}

.customer-btn:hover{
    background:#0b5ed7;
}
