/* 
 * Aleytrip.com Premium Styling System
 * Optimized for Google Ads conversions & ultra-fast rendering performance.
 */

:root {
    --primary: #0c1844;
    --primary-light: #1e3075;
    --secondary: #2563eb;
    --accent: #ff9f1c;
    --accent-hover: #e08300;
    --bg-light: #f8fafc;
    --bg-card: #ffffff;
    --bg-highlight: #fffbeb;
    --text-main: #1e293b;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --border-focus: #ff9f1c;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.05), 0 2px 4px -1px rgba(0,0,0,0.03);
    --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.03);
    --shadow-premium: 0 20px 40px -10px rgba(12, 24, 68, 0.08);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/*-----common class----*/
.cent {
    display: flex;
    justify-content: center;
    align-items: center;
}
.end {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.btwn {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.start {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.fd-row {
    flex-direction: row;
}
.fd-col {
    flex-direction: column;
}
.f-wrap {
    flex-wrap: wrap;
}

body {
    font-family: 'Poppins', 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

p {
    margin-bottom: 0px;
    line-height: 1.6;
    color: var(--text-muted);
}
a {
    text-decoration: none;
    transition: var(--transition);
}
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    margin-bottom: 0px;
    color: var(--primary);
}
.common-mt {
    margin-top: 60px;
}

/*---------------------------------------------====>global<======----------------------------------------------*/
/*-------header------*/
.header {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0px;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}
.header-logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
}
.header-logo img:hover {
    transform: scale(1.02);
}
.header-nav {
    gap: 30px;
}
.header-nav a {
    color: var(--text-main);
    font-weight: 600;
    font-size: 16px;
    position: relative;
    padding: 5px 0;
}
.header-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: var(--transition);
}
.header-nav a:hover {
    color: var(--accent);
}
.header-nav a:hover::after {
    width: 100%;
}
.header-callbox {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: var(--radius-sm);
    color: white;
    gap: 12px;
    padding: 8px 18px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.header-callbox::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.1);
    transform: skewX(-25deg);
    transition: 0.75s;
}
.header-callbox:hover::before {
    left: 150%;
}
.header-callbox:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(12, 24, 68, 0.3);
}
.header-callbox img {
    height: 38px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    animation: pulse 2s infinite;
}
.header-callcontent p {
    font-size: 11px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.header-callcontent a {
    color: white;
    font-weight: 700;
    font-size: 18px;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

/*--------footer----*/
.footer {
    border-top: none;
    margin-top: 80px;
}
.footer p, .footer a {
    font-size: 14px;
}
.footer-top, .footer-bottom, .footer-copyright {
    background: var(--primary);
    color: white;
}
.footer-top {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-top-col p {
    color: rgba(255,255,255,0.8);
    font-size: 13px;
}
.footer-top-col span {
    font-weight: 600;
    color: var(--accent);
}
.footer-middle {
    background: #f1f5f9;
    color: var(--text-main);
    padding: 60px 0px;
}
.footer-copyright {
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 13px;
}
.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 15px;
}
.footer-social_media img {
    height: 32px;
    margin-right: 12px;
    transition: var(--transition);
}
.footer-social_media img:hover {
    transform: translateY(-3px) scale(1.05);
}
.footer-middle-col {
    align-items: flex-start;
}
.footer-middle-col h5 {
    font-size: 16px;
    margin-bottom: 20px;
    color: var(--primary);
    position: relative;
    padding-bottom: 8px;
}
.footer-middle-col h5::after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}
.footer-middle-col a {
    color: var(--text-muted);
    margin-bottom: 10px;
    font-weight: 500;
}
.footer-middle-col a:hover {
    color: var(--secondary);
    padding-left: 3px;
}
.footer-link, .footer-aboutbox {
    gap: 10px;
}
.footer-bottom-box {
    gap: 12px;
}
.footer-bottom-box img {
    height: 40px;
}
.footer-bottom-content h5 {
    color: var(--accent);
    margin-bottom: 3px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.footer-bottom-content a {
    color: white;
    font-weight: 600;
    font-size: 15px;
}
.footer-bottom-content p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}
.stick-btm {
    display: none;
}

/*---------------------------------------------====>home<======----------------------------------------------*/
/*---------------banner--------------*/
.banner {
    background: linear-gradient(rgba(12, 24, 68, 0.45), rgba(12, 24, 68, 0.45)), url(../images/homepage/banner/traveltour-global-banner.webp) no-repeat center center;
    background-size: cover;
    min-height: 520px;
    padding: 60px 0;
}
.banner-col-heading h1 {
    color: white;
    text-align: center;
    margin-bottom: 30px;
    font-size: 44px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    font-weight: 800;
}
.banner-col {
    background-color: rgba(255, 255, 255, 0.95);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-premium);
    backdrop-filter: blur(10px);
}
.banner-ul {
    padding: 12px 0px;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    gap: 10px;
}
.search-engine-row {
    padding: 15px 0px;
    border-top: none;
    border-bottom: none;
    margin: auto;
}
.nav-pills .nav-link {
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 22px;
    transition: var(--transition);
}
.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background: var(--primary) !important;
    color: white !important;
    box-shadow: var(--shadow-md);
}
.banner-li-btn {
    font-size: 15px;
}
.banner-li-btn i {
    margin-right: 6px;
}
.search-engine-trip-option {
    gap: 25px;
}
.search-engine_to label {
    font-weight: 600;
    color: var(--primary);
}
.form-check-input:checked {
    background-color: var(--accent) !important;
    border-color: var(--accent);
}
.se-input-box {
    gap: 8px;
    height: 52px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    background: white;
    padding: 0 12px;
    transition: var(--transition);
}
.se-input-box:focus-within {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(255, 159, 28, 0.15);
}
.se-input-box img {
    height: 22px;
}
.se-input-box input {
    border: none;
    background: transparent;
    width: 95%;
    outline: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-main);
}
.se-input-box input::placeholder {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
}
.search-engine-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    height: 52px;
    color: white;
    font-weight: 700;
    font-size: 16px;
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 4px 15px rgba(255, 159, 28, 0.3);
    transition: var(--transition);
}
.search-engine-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(255, 159, 28, 0.4);
}
.traveller-class {
    position: relative;
}
.traveller-class:hover .traveler-class-box {
    display: flex;
}
.traveler-class-box {
    display: none;
    position: absolute;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    background: white;
    width: 320px;
    top: 55px;
    z-index: 100;
    overflow: hidden;
}
.traveler-class-box h5 {
    background: var(--primary);
    color: white;
    width: 100%;
    padding: 10px 15px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.trav-class-ul {
    padding: 0px;
    margin: 0px;
}
.trav-class-li {
    border-bottom: 1px solid var(--border-color);
    padding: 12px 15px;
}
.trav-class-content h6 {
    font-size: 14px;
    color: var(--primary);
}
.trav-class-content p {
    font-size: 11px;
    color: var(--text-muted);
}
.trav-add-sub {
    border: 1px solid var(--border-color);
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 4px 12px;
    font-size: 13px;
    gap: 12px;
    font-weight: 600;
}
.trav-add-sub p {
    font-size: 14px;
    color: var(--primary);
}
.trav-add-sub i {
    font-size: 11px;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
}
.trav-add-sub i:hover {
    color: var(--accent);
}
.trav-class-btn-box {
    flex-wrap: wrap;
    padding: 15px;
    gap: 8px;
}
.trav-class-btn-box .active {
    background: var(--primary) !important;
    color: white !important;
    border: 1px solid var(--primary) !important;
}
.tc-btn {
    width: 48%;
    background: white;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    color: var(--text-main);
    font-weight: 600;
    font-size: 12px;
    padding: 6px 0;
    transition: var(--transition);
}
.tc-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}
.tc-done-btn {
    background: var(--accent);
    color: white;
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    padding: 8px 0;
    margin-top: 5px;
    box-shadow: 0 2px 8px rgba(255, 159, 28, 0.2);
}
.tc-done-btn:hover {
    background: var(--accent-hover);
    color: white;
}
.trav-class-btn-box p {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 5px;
}

/*-------------homepage about-----------------*/
.homepage-about-content-box {
    border: none;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    gap: 18px;
    padding: 40px;
    text-align: left;
    width: 100%;
}
.homepage-about-content-box h2 {
    color: var(--primary);
    font-size: 32px;
    position: relative;
    padding-bottom: 12px;
}
.homepage-about-content-box h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}
.homepage-about-content-box p {
    font-size: 15px;
    line-height: 1.7;
}
.homepage-about-image img {
    height: auto;
    max-height: 430px;
    width: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

/*------------service-------------------*/
.box-h2 {
    border: none;
    text-align: center;
    color: var(--primary);
    margin-bottom: 30px;
    padding: 0;
    font-size: 32px;
    font-weight: 800;
}
.service-row {
    margin: auto;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.service-col {
    padding: 0px;
}
.service-image, .service-content {
    height: 280px;
}
.service-image img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}
.service-content {
    padding: 30px;
    text-align: center;
    gap: 12px;
    background: var(--bg-card);
}
.service-content h5 {
    color: var(--primary);
    font-size: 18px;
    font-weight: 700;
}
.service-content p {
    font-size: 14px;
    color: var(--text-muted);
}

/*------------homepage destination-----*/
.homepage-destination-row {
    margin: auto;
    gap: 20px 0;
}
.homepage-destination-col {
    padding: 0 10px;
}
.homepage-destination-box {
    flex-direction: column;
    position: relative;
    align-items: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.homepage-destination-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.homepage-destination-box img {
    height: 320px;
    width: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.homepage-destination-box:hover img {
    transform: scale(1.05);
}
.homepage-destination-content {
    position: absolute;
    color: white;
    gap: 8px;
    text-align: center;
    background: linear-gradient(to top, rgba(12,24,68,0.95) 0%, rgba(12,24,68,0.7) 60%, rgba(12,24,68,0) 100%);
    width: 100%;
    bottom: 0;
    padding: 30px 20px 20px 20px;
}
.homepage-destination-content h5 {
    color: white;
    font-size: 20px;
    font-weight: 700;
}
.homepage-destination-content p {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}

/*-----------travel together-------*/
.travel-together {
    background: linear-gradient(rgba(12,24,68,0.3), rgba(12,24,68,0.3)), url(../images/homepage/home-page-single/group-travel.webp) no-repeat center center;
    background-size: cover;
    min-height: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 60px 0;
}
.travel-together-box {
    background: rgba(255, 255, 255, 0.95);
    width: 50%;
    margin-right: 5%;
    border-radius: var(--radius-md);
    padding: 40px;
    gap: 20px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}
.travel-together-box h2, .taap-deals-box h2 {
    color: var(--primary);
    text-align: left;
    font-size: 28px;
    position: relative;
    padding-bottom: 12px;
}
.travel-together-box h2::after, .taap-deals-box h2::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
    bottom: 0;
    left: 0;
}
.travel-together-box p {
    color: var(--text-main);
    font-size: 14px;
}
.travel-together-image img {
    height: 70px;
}

/*---------------taap deals-------*/
.taap-deals {
    background: linear-gradient(rgba(12,24,68,0.3), rgba(12,24,68,0.3)), url(../images/homepage/home-page-single/special-taap-imag.webp) no-repeat center center;
    background-size: cover;
    min-height: 500px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 60px 0;
}
.taap-deals-box {
    gap: 20px;
    width: 50%;
    margin-left: 5%;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
}
.taap-deals-box p {
    color: var(--text-main);
    font-size: 14px;
}

/*---------------------------===>common content pages<====------------------------*/
.common-cnt_pg-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
}
.common-cnt_pg-banner-coltwo {
    padding: 40px;
}
.common-cnt_pg-banner-coltwo h1 {
    color: white;
    font-size: 40px;
    font-weight: 800;
}
.common-cnt_pg-banner-coltwo img {
    height: 90px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}
.common-cnt_pg-content-col {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.common-cnt_pg-content-col h2, .common-cnt_pg-content-col h3, .common-cnt_pg-content-col h4 {
    color: var(--primary);
    margin: 25px 0px 15px 0px;
    font-weight: 700;
}
.common-cnt_pg-content-col p, .common-cnt_pg-content-col li {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--text-main);
}

/*--------====>about us<======---------*/
.abt_us-pg_content-row {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.abt_us-pg_content-colone {
    background: var(--bg-card);
    padding: 40px;
    text-align: left;
}
.abt_us-pg_content-colone h2 {
    color: var(--primary);
    margin-bottom: 20px;
}

/*-----------========>contact us<======--------------*/
.contact-us-row {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 40px 30px;
}
.contact-us-colone {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: var(--radius-sm);
    padding: 30px 40px;
    font-size: 16px;
    box-shadow: var(--shadow-md);
}
.contact-us-colone a {
    color: var(--accent);
    font-weight: 600;
}
.contact-us-coltwo {
    gap: 25px;
}
.contact-us-boxes {
    gap: 20px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}
.contact-us-boxes:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}
.contact-us-boxes img {
    height: 50px;
}
.cub-content h5 {
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 16px;
}
.cub-content a, .cub-content p {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
}
.cub-content a:hover {
    color: var(--secondary);
}
.contact-us-form {
    background: var(--primary);
    padding: 30px;
    border-radius: var(--radius-sm);
    color: white;
    gap: 20px 0px;
}
.contact-us-form-heading h3 {
    color: white;
    font-size: 24px;
    margin-bottom: 10px;
}
.contact-us-form-box {
    width: 100%;
    background: white;
    padding: 12px 15px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
.contact-us-form-box input, .contact-us-form-box textarea {
    background: transparent;
    border: none;
    outline: none;
    width: 100%;
    color: var(--text-main);
    font-weight: 500;
}
.contact-us-form-box textarea {
    height: 120px;
}
.contact-us-form-box input::placeholder, .contact-us-form-box textarea::placeholder {
    color: var(--text-muted);
    font-weight: 500;
}
.form-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    width: 35%;
    height: 48px;
    font-weight: 700;
    font-size: 16px;
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
    transition: var(--transition);
}
.form-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: white;
    box-shadow: 0 6px 15px rgba(255, 159, 28, 0.4);
}

/*--------------=========>blog, blog-detail<=====-----------------*/
.blog-banner {
    background: linear-gradient(rgba(12,24,68,0.4), rgba(12,24,68,0.4)), url(../images/blog/blog-banner-tour.png) no-repeat center center;
    background-size: cover;
    height: 380px;
    border-radius: var(--radius-md);
}
.blog-banner-col h1 {
    width: fit-content;
    border-radius: var(--radius-sm);
    padding: 12px 30px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    font-size: 36px;
    box-shadow: var(--shadow-md);
}
.blog-detail-col img {
    border: none;
    width: 100%;
    object-fit: cover;
    margin: 20px 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.blog-row {
    gap: 30px 0;
}
.blog-box {
    align-items: flex-start !important;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.blog-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.blog-image-content {
    border: none;
    width: 100%;
}
.blog-image-content img {
    height: 250px;
    width: 100%;
    object-fit: cover;
}
.blog-content {
    background: var(--bg-card);
    padding: 20px 0px;
    gap: 12px 0px;
    border: none;
}
.blog-content p {
    border-bottom: 1px solid var(--border-color);
    padding: 0px 20px 10px 20px;
    font-weight: 500;
}
.blog-content a {
    color: var(--primary);
}
.blog-content h5 {
    padding-left: 20px;
    font-size: 18px;
    font-weight: 700;
}
.blog-button {
    background: var(--primary);
    width: 85%;
    padding: 10px 20px;
    border-top-right-radius: 50px;
    border-bottom-right-radius: 50px;
    transition: var(--transition);
}
.blog-button:hover {
    background: var(--accent);
    width: 90%;
}
.blog-button a {
    color: white;
    font-weight: 600;
}

/*--------===========>destination landing page<========--------*/
.desti_lp-banner {
    background: linear-gradient(rgba(12,24,68,0.4), rgba(12,24,68,0.4)), url(../images/destinations/destination-landingpage/destination-banner.webp) no-repeat center center;
    background-size: cover;
    height: 480px;
    padding: 40px 0;
}
.desti_lp-banner-box {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px;
    max-width: 500px;
}
.desti_lp-banner-box img {
    height: 200px;
    margin-bottom: 20px;
}
.desti_lp-cities-col-heading p, .desti_lp-cities-content a {
    font-weight: 600;
}
.desti_lp-cities-row {
    gap: 30px 0;
}
.desti_lp-cities-box {
    width: 100%;
    border: none;
    padding: 0px;
    background: var(--bg-card);
    box-shadow: var(--shadow-md);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}
.desti_lp-cities-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.desti_lp-cities-box img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    margin-bottom: 0px;
}
.desti_lp-cities-content {
    gap: 12px 0px;
    padding: 20px;
}
.desti_lp-cities-content h5 {
    text-align: left;
    color: var(--primary);
    font-size: 18px;
}
.desti_lp-cities-content a, .desti_lp-cities-content p {
    color: var(--text-main);
    font-size: 14px;
}
.desti_lp-btn {
    background: var(--primary);
    padding: 8px 15px;
    border: none;
    border-radius: var(--radius-sm);
    color: white !important;
    text-align: center;
    font-weight: 600;
    box-shadow: var(--shadow-sm);
}
.desti_lp-btn:hover {
    background: var(--accent);
}

/*----------------==============>destination detail page<=======------*/
.desti-detail-banner {
    width: 40%;
}
.desti_top-place-row {
    gap: 30px 0;
}
.desti_top-place-box img {
    height: 260px;
    width: 100%;
    object-fit: cover;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.desti_top-place-content {
    margin-top: 15px;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    padding: 20px;
    gap: 8px;
    text-align: center;
}
.desti_top-place-content h5 {
    color: var(--primary);
    font-weight: 700;
}
.desti_best-time-visit-col img {
    height: 320px;
    margin: 20px auto;
    width: 100%;
    object-fit: cover;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.desti_adventure-row {
    background-size: cover;
    min-height: 400px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 40px 0;
}
.desti_adventure-col {
    align-items: center;
}
.desti_adventure-box {
    border: none;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    text-align: left;
    width: 50%;
    gap: 12px;
}
.desti_adventure-box h2 {
    color: var(--primary);
    font-size: 24px;
}
.desti_adventure-box li {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-main);
}
.desti_call {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    gap: 10px;
    padding: 10px 20px;
    transition: var(--transition);
}
.desti_call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent);
}
.desti_call img {
    height: 42px;
}
.desti_call a {
    font-weight: 700;
    color: var(--primary);
    font-size: 22px;
}
.desti_call a:hover {
    color: var(--accent);
}

/*--------===========>airline landing page<=======-----------*/
.airline-landing-banner {
    height: 380px;
    color: white;
    text-align: center;
}
.alirline-boxes-row {
    gap: 30px 0;
}
.alirline-box {
    border: none;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 15px;
    gap: 15px 0px;
    transition: var(--transition);
}
.alirline-box:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.airline-box-heading {
    border: none;
    background: var(--primary);
    border-radius: var(--radius-sm);
    color: white;
    width: 100%;
    padding: 8px 12px;
}
.airline-box-heading h4 {
    color: white;
    font-size: 18px;
}
.alirline-box img {
    height: 200px;
    width: 100%;
    object-fit: cover;
    border: none;
    border-radius: var(--radius-sm);
}
.alirline-box p {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    height: auto;
    min-height: 80px;
}
.airline-redirect-box {
    border: none;
    background: var(--accent);
    border-radius: var(--radius-sm);
    width: 100%;
    padding: 8px 12px;
    box-shadow: var(--shadow-sm);
}
.airline-redirect-box a {
    color: white;
    font-weight: 600;
    width: 100%;
    text-align: center;
}
.airline-redirect-box:hover {
    background: var(--accent-hover);
}

/*---------airline detailpage------*/
.airline-content-col p {
    font-size: 15px;
    margin-bottom: 12px;
}
.airline-content-col li {
    font-size: 14px;
    margin-bottom: 8px;
}
.airline-content-col h1, .airline-content-col h2, .airline-content-col h3 {
    color: var(--primary);
    border: none;
    padding: 10px 15px;
    margin: 35px 0px 20px 0px;
    width: 100%;
    background: var(--bg-highlight);
    border-radius: var(--radius-sm);
}
.airline-content-col h4 {
    color: var(--primary);
    margin-top: 20px;
    margin-bottom: 15px;
}
.airline-content-col img {
    height: 380px;
    width: 100%;
    object-fit: cover;
    margin-top: 15px;
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.airline-content-col strong {
    color: var(--primary);
}

/*------=========>flight not found<=========------*/
.flight-not-found-col {
    gap: 20px;
    background: var(--bg-card);
    padding: 50px 30px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.flight-not-found-col h4 {
    color: var(--primary);
}
.flight-not-found-col img {
    height: 300px;
}
.flight-not-found-btn {
    border-radius: var(--radius-sm);
    background: var(--primary);
    color: white;
    height: 48px;
    padding: 0 30px;
    font-weight: 600;
    font-size: 16px;
    border: none;
    box-shadow: var(--shadow-md);
}
.flight-not-found-btn:hover {
    background: var(--accent);
    color: white;
}

/*------=========>loading page<=========------*/
.loading-page-box {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    background: var(--bg-card);
    width: 400px;
    overflow: hidden;
}
.loading-page-top {
    padding: 30px 20px;
    gap: 15px;
    text-align: center;
    color: var(--primary);
}
.loading-page-top img {
    height: 60px;
}
.loading-page-middle {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    padding: 25px;
    color: white;
    text-align: center;
    gap: 15px;
}
.loading-page-middle img {
    height: 80px;
}
.loading-page-bottom {
    padding: 30px 20px;
    gap: 12px;
}
.loading-page-bottom img {
    height: 45px;
}
.loading-page-bottom a {
    font-weight: 700;
    color: var(--primary);
    font-size: 22px;
}

/*---------============>traveller details<=======-------------*/
.traveler-detail-heading-col {
    background: var(--primary);
    border-radius: var(--radius-sm);
    padding: 12px 20px;
    gap: 10px;
    color: white;
    box-shadow: var(--shadow-sm);
}
.traveler-detail-heading-col h3 {
    color: white;
    font-size: 20px;
}
.td-fd-row {
    border: 1px solid var(--border-color);
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    padding: 15px;
    width: 100%;
}
.td-fd-airlinebox {
    border: none;
    background: var(--bg-light);
    border-radius: var(--radius-sm);
    padding: 15px;
    gap: 10px;
}
.td-fd-time-row {
    width: 80%;
    gap: 20px;
}
.td-fd-timeline img {
    width: 150px;
}
.traveler-detail-fd-col p {
    font-size: 13px;
    color: var(--text-muted);
}
.traveler-detail-fd-col span {
    color: var(--primary);
    font-weight: 600;
}
.td-fd-time h6 {
    color: var(--primary);
    font-weight: 700;
}
.td-fd-content-out {
    border: none;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.td-fd-content-box {
    background: rgba(255, 255, 255, 0.98);
    padding: 30px;
    height: auto;
}
.td-fd-content-heading {
    color: var(--primary);
    margin-bottom: 20px;
}
.td-fd-content-heading h4 {
    color: var(--primary);
}
.td-fd-content-box span {
    color: var(--primary);
}
.td-fd-content-box p, .td-fd-content-box li {
    color: var(--text-main);
    font-weight: 500;
}
.td-form-box, .fare-summary {
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 25px;
    background: var(--bg-card);
}
.common-td-sub-heading {
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    color: white;
    padding: 10px 15px;
    font-size: 15px;
    font-weight: 600;
}
.td-input-box {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 12px;
    margin-bottom: 15px;
    background: var(--bg-light);
    transition: var(--transition);
}
.td-input-box:focus-within {
    border-color: var(--accent);
    background: white;
}
.td-input-box input {
    border: none;
    outline: none;
    background: transparent;
    width: 100%;
}
.addtraveler-btn {
    background: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
    border: none;
    padding: 10px 20px;
}
.addtraveler-btn:hover {
    background: var(--accent);
}
.td-fs-li-heading {
    color: var(--primary) !important;
}
.td-fs-ul li {
    color: var(--text-main);
}
.td-fs-btn {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
    border-radius: var(--radius-sm);
    border: none;
    box-shadow: 0 4px 10px rgba(255, 159, 28, 0.3);
}
.td-fs-btn:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
    color: white;
}
.fs-sub-total {
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

/*---------flight detail-----*/
.flight-detail-filter {
    background: var(--bg-card);
    padding: 25px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.flight-detail-filter-heading p {
    color: var(--primary);
    font-size: 18px;
}
.flight-detail-filter h5 {
    color: var(--primary);
    font-size: 16px;
    border-bottom: 2px solid var(--bg-light);
    padding-bottom: 8px;
    margin-bottom: 15px;
}
.filter-time-btn {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    background: var(--bg-light);
}
.filter-time-btn:hover, .filter-time .active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
    color: white !important;
}
.fd-info_col-btn {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-weight: 600;
}
.fd-infocol-buttons .active, .fd-info_col-btn:hover {
    background: var(--primary) !important;
    color: white !important;
}
.flight-detail-box {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.fd-airline-name, .fd-timing-price, .fd-duration {
    border-right: 1px dashed var(--border-color);
}
.fd-box-col span {
    color: var(--primary);
    font-weight: 600;
}
.fd-box-col h6 {
    color: var(--primary);
}
.detailed-fd-box {
    border-top: 1px dashed var(--border-color);
    background: var(--bg-light);
}
.fd-timeline {
    border-top: 2px solid var(--accent);
}
.fd-select-btn {
    border: 2px solid var(--primary);
    border-radius: var(--radius-sm);
    color: var(--primary);
    font-weight: 700;
    transition: var(--transition);
}
.fd-select-btn:hover {
    background: var(--primary);
    color: white;
}
.fd-acc-btn {
    color: var(--primary);
    font-weight: 600;
}
.fd-acc-btn:not(.collapsed) {
    background-color: var(--bg-highlight);
    color: var(--primary);
}
.fd-acc-body-detail-box-heading-content {
    background: var(--primary);
    border-radius: var(--radius-sm);
    color: white;
    box-shadow: var(--shadow-sm);
}
.fd-acc-body-detail-box h6, .fd-acc-body-detail-box span {
    color: var(--primary);
}
.fd-acc-body-detail-button {
    background: var(--bg-light);
}
.fd-acc-body-detail-btn {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.fd-acc-body-detail-btn:hover {
    background: var(--primary);
    color: white;
}
.layover-detail {
    background: var(--bg-highlight);
    border: 1px dashed var(--accent);
    border-radius: var(--radius-sm);
}
.layover-detail h5 {
    color: var(--primary);
}
.depart-retun-flight-btn {
    background: var(--primary);
    border-radius: var(--radius-sm);
}
.depart-retun-flight-btn:hover {
    background: var(--accent);
}

/*--------expedia page-----*/
.expedia-page {
    background: var(--bg-light);
    padding: 80px 0;
}
.expedia-page-colone h2 {
    font-size: 36px;
    font-weight: 800;
}
.expedia-ul {
    width: 60%;
}
.expedia-li {
    background-color: var(--primary);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-md);
    color: white;
    font-size: 16px;
    padding: 12px;
}
.exp-one {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    height: 360px;
}
.expedia-call-se {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    padding: 40px;
}
.expedia-se-call a {
    color: var(--accent);
    font-size: 28px;
    font-weight: 800;
}
.expedia-call-se .search-engine-row {
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 20px;
}
.expedia-content img {
    box-shadow: var(--shadow-md);
    height: 350px;
}
.expedia-about {
    border: none;
    background: var(--bg-card);
    box-shadow: var(--shadow-lg);
    padding: 40px;
}
.expedia-about h3 {
    color: var(--primary);
}
