/* Inter Font Family - Clean Setup */

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Thin.woff2') format('woff2'),
         url('../fonts/Inter18pt-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-ExtraLight.woff2') format('woff2'),
         url('../fonts/Inter18pt-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Light.woff2') format('woff2'),
         url('../fonts/Inter18pt-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Regular.woff2') format('woff2'),
         url('../fonts/Inter18pt-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Medium.woff2') format('woff2'),
         url('../fonts/Inter18pt-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-SemiBold.woff2') format('woff2'),
         url('../fonts/Inter18pt-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Bold.woff2') format('woff2'),
         url('../fonts/Inter18pt-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-ExtraBold.woff2') format('woff2'),
         url('../fonts/Inter18pt-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Black.woff2') format('woff2'),
         url('../fonts/Inter18pt-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

/* Italic */
@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter18pt-Italic.woff2') format('woff2'),
         url('../fonts/Inter18pt-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}

 /*--------------------------/*
Tempale name : Jodhana tours 

/*--------------------------/*

[Table of contents]
[Color codes]
Background: #ffffff
Body Color :#111827;
[Typography]
Body:       14px/24px 'Inter', sans-serif
Heading:    Jost, sans-serif;
Input, textarea: 14px/24px 'Inter', sans-serif;

/*-------------------------*/  
 
:root { 
    --primary: #6333E9;
    --primary-dark: #6333E9;
    --primary-light: #EEF2FF;
    --bg-body: #F9FAFB;
    --white: #FFFFFF;
    --text-dark: #424242;
    --text-gray: #4B5563;
    --cbh-primary-light: #EEF2FF;
    --cbh-radius: 12px;
    --text-light: #9CA3AF;
    --border: #E5E7EB; 
    --radius: 12px; 
    --radius-lg: 16px;
    --radius-pill: 50px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
button { 
    border: none; 
}

body { 
    font-family: 'Inter', sans-serif;
    color: var(--text-gray);
    background: var(--bg-body);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.cbh-container {
    width: min(1200px, calc(100% - 40px));
    margin: auto;
}

.cbh-section {
    padding: 60px 0;
}

.cbh-grey-bg {
    background: var(--bg-body);
}
a {
    text-decoration: none;
    transition: 0.3s ease;
} 

 .cbh-icon-sm {
     width: 18px;
     height: 18px;
     vertical-align: middle;
     margin-right: 8px;
 }

 .cbh-icon-vsm {
     width: 15px;
     height: 15px;
     vertical-align: middle;
     margin-right: 6px;
     color: var(--primary);
 }

 .cbh-btn {
     border: none;
     padding: 14px 28px;
     border-radius: 50px;
     font-weight: 700;
     cursor: pointer;
     transition: 0.3s;
     font-size: 15px;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-family: inherit;
 }

 .cbh-btn-primary {
     background: var(--primary);
     color: white;
     box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
 }

 .cbh-btn-primary:hover {
     background: var(--primary-dark);
     transform: translateY(-3px);
 }

 .cbh-btn-outline-white {
     border: 2px solid white;
     color: white;
     background: transparent;
 }

 .cbh-btn-outline-white:hover {
     background: white;
     color: var(--primary);
 }

 .cbh-btn-outline-dark {
     border: 1.5px solid var(--border);
     background: white;
    color: var(--text-gray);
 }

 .cbh-btn-outline-dark:hover {
     border-color: var(--text);
 }

 .cbh-btn-dark {
     background: var(--text);
     color: white;
 }

 .cbh-btn-full {
     width: 100%;
     margin-top: 10px;
 }

 

 .cbh-btn-sm {
     padding: 10px 20px;
     font-size: 13px;
 }

 /* --- Header --- */
 .cbh-main-header {
     position: sticky;
     top: 0;
     z-index: 1000;
     background: rgba(255, 255, 255, 0.8);
     backdrop-filter: blur(15px);
     border-bottom: 1px solid var(--border);
     padding: 15px 0;
 }

 .cbh-nav-wrapper {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .cbh-brand {
     display: flex;
     align-items: center;
     gap: 10px;
     max-width: 210px;
     img{
        width: 100%;
        height: 100%;
           mix-blend-mode: multiply;
     }
 }

 

 .cbh-desktop-nav a {
     margin: 0 15px;
     font-weight: 600;
    color: var(--text-gray);
     font-size: 14px;
 }

 .cbh-desktop-nav a:hover {
     color: var(--primary);
 }

 .cbh-call-btn {
     font-weight: 700;
    color: var(--text-gray);
     font-size: 14px;
 }

 .cbh-header-actions {
     display: flex;
     gap: 15px;
     align-items: center;
 }
 
.cbh-desktop-nav {
    display: flex;
    align-items: center;
}
 
.cbh-dropdown {
    position: relative;
    display: inline-block;
}
 
.cbh-dropdown-toggle {
    display: flex !important;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.cbh-chevron {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}
 
.cbh-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    min-width: 200px; 
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 15px;  
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1001;
    border: 1px solid var(--border, #eaeaea);
}
 
.cbh-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 100%;
    height: 15px;
}
 
.cbh-dropdown:hover .cbh-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
 
.cbh-dropdown:hover .cbh-chevron {
    transform: rotate(180deg);
}
 
.cbh-desktop-nav .cbh-dropdown-menu a {
    display: block;
    margin: 0; 
    padding: 10px 20px;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-gray, #555);
    transition: all 0.2s ease;
}

.cbh-desktop-nav .cbh-dropdown-menu a:hover {
    background-color: #f8f9fa;  
    color: var(--primary, #0056b3);
    padding-left: 25px;  
}
 
 .cbh-menu-toggle {
     display: none;
     background: transparent;
     border: none;
     cursor: pointer; 
     padding: 5px;
 }

 .cbh-menu-toggle svg {
     width: 28px;
     height: 28px;
 }
 
 .cbh-hero-section {
     position: relative;
     padding: 120px 0;
     background: url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&q=80&w=1600') center/cover no-repeat;
     color: white;
 }

 .cbh-hero-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.4));
 }

 .cbh-hero-grid {
     position: relative;
     z-index: 2;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     gap: 60px;
     align-items: center;
 }

 .cbh-promo-badge {
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     padding: 8px 16px;
     border-radius: 50px;
     font-size: 12px;
     font-weight: 700;
     color: #818CF8;
     display: inline-flex;
     align-items: center;
     margin-bottom: 25px;
     backdrop-filter: blur(5px);
 }

 h1 {
     font-size: clamp(40px, 6vw, 62px);
     font-weight: 800;
     line-height: 1.1;
     margin-bottom: 20px;
     letter-spacing: -2px;
 }

 .cbh-text-gradient {
     background: linear-gradient(90deg, #818CF8, #C084FC);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .cbh-hero-content p {
     font-size: 18px;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 35px;
     max-width: 550px;
 }

 .cbh-hero-btns {
     display: flex;
     gap: 15px;
 }

 .cbh-glass-form-card {
     background: var(--white);
     padding: 35px;
     border-radius: var(--cbh-radius); 
     box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
 }

 .cbh-form-header {
     margin-bottom: 25px;
 }

 .cbh-form-header h3 {
     font-size: 24px;
     font-weight: 800;
     color: var(--text-dark);
 }

 .cbh-form-header p {
     font-size: 14px;
     color: var(--text-gray);
 }

 .cbh-input-group {
     margin-bottom: 18px;
     text-align: left;
 }

 .cbh-input-group label {
     display: block;
     font-size: 11px;
     font-weight: 800;
     text-transform: uppercase;
     color: var(--text-gray);
     margin-bottom: 6px;
     letter-spacing: 1px;
 }

 .cbh-form-row-2 {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 15px;
 }

 input,
 select,
 textarea {
     width: 100%;
     padding: 13px 18px;
     border-radius: 12px;
     border: 1.5px solid var(--border);
     background: #F9FAFB;
     font-size: 14px;
     outline: none;
     transition: 0.3s;
     font-family: inherit;
 }

 input:focus {
     border-color: var(--primary);
     background: white;
 }

 .cbh-intro-flex {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .cbh-intro-image {
     position: relative;
 }

 .cbh-intro-image img {
     width: 100%;
     border-radius: var(--radius);
     box-shadow: var(--shadow);
 }

 .cbh-intro-badge {
     position: absolute;
     bottom: -20px;
     right: -20px;
     background: var(--primary);
     color: white;
     padding: 25px;
     border-radius: 20px;
     text-align: center;
     box-shadow: 0 10px 30px rgba(79, 70, 229, 0.4);
 }

 .cbh-intro-badge strong {
     font-size: 28px;
     display: block;
 }

 .cbh-intro-badge span {
     font-size: 11px;
     font-weight: 700;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 .cbh-sub-tag {
     color: var(--primary);
     font-weight: 800;
     text-transform: uppercase;
     font-size: 12px;
     letter-spacing: 2px;
     margin-bottom: 10px;
     display: block;
 }

 .cbh-section-title {
     font-size: 28px;
     font-weight: 700;
     margin-bottom: 10px;
     color: var(--text-dark);
     line-height: normal;
 }

 .cbh-center-head {
     text-align: left;
     margin-bottom: 30px;
 }

 .cbh-section-desc {
     color: var(--text-gray);
     max-width: 600px;
     margin: 10px auto 0;
     font-size: 16px;
 }

 .cbh-fleet-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
     gap: 15px;
 }

 .cbh-fleet-card {
     background: white;
     border-radius: var(--radius-lg);
     border: 1px solid var(--border);
     overflow: hidden;
     transition: 0.3s;
    color: var(--text-gray);
 }

 .cbh-fleet-card:hover {
     transform: translateY(-10px);
     border-color: var(--primary);
     box-shadow: var(--shadow);
 }

 .cbh-fleet-img {
     height: 200px;
 }

 .cbh-fleet-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .cbh-fleet-body {
     padding: 14px;
 }

 .cbh-fleet-body h3 {
     font-size: 16px;
     font-weight: 700;
     margin-bottom: 5px;
 }

 .cbh-fleet-body p {
     font-size: 13px;
     color: var(--text-gray);
     margin-bottom: 15px;
     line-height: 1.5;
     min-height: 60px;
 }

 .cbh-fleet-specs {
     display: flex;
     gap: 15px;
     border-top: 1px solid var(--border);
     padding-top: 15px;
 }

 .cbh-fleet-specs span {
     font-size: 12px;
     font-weight: 700;
     display: flex;
     align-items: center;
 }

 .cbh-cities-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 15px;
 }

 .cbh-city-tile {
     height: 350px;
     border-radius: var(--radius-lg);
     background-size: cover;
     background-position: center;
     display: flex;
     align-items: flex-end;
     position: relative;
     overflow: hidden;
 }

 .cbh-tile-overlay {
     background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
     padding: 30px;
     color: white;
     width: 100%;
 }

 .cbh-tile-overlay h3 {
     font-size: 24px;
     margin-bottom: 5px;
 }

 .cbh-tile-overlay p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.7);
     margin-bottom: 10px;
 }

 .cbh-tile-overlay a {
     color: #818CF8;
     font-weight: 800;
     font-size: 12px;
     text-transform: uppercase;
     letter-spacing: 1px;
 }

 

 .cbh-a-row {
     display: grid;
     grid-template-columns: 55px 1fr 140px;
     align-items: center; 
     gap: 20px;
     padding: 20px 0;
     border-bottom: 1px solid var(--border);
     background-color: var(--white);
     border: 1px solid var(--border);
     border-radius: var(--cbh-radius);
     box-shadow: var(--shadow);
     margin-bottom: 16px;
     padding: 24px;
 }
 .cbh-route-card {
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}
 .cbh-a-row:last-child {
     border-bottom: none;
 }

 .cbh-a-code {
     background: #F3F4F6;
     color: var(--text-gray);
     border-radius: 10px;
     width: 55px;
     height: 55px;
     font-weight: 800;
     display: flex;
     align-items: center;
     justify-content: center;
 }
 .cbh-a-code svg {
    width: 35px;
    height: 35px;
}
 .cbh-a-info h4 {
     font-weight: 700;
     font-size: 17px;
     margin-bottom: 0px;
 }

 .cbh-a-info p {
     font-size: 13px;
     color: var(--text-gray);
 }

 .cbh-why-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .cbh-why-card {
     background: white;
     padding: 24px;
     border-radius: var(--cbh-radius);
     background: var(--cbh-primary-light);
     border: 1px solid #E0E7FF;
     text-align: left;
 }
 
 .cbh-why-icon {
     width: 64px;
     height: 64px;
     background: #FFF;
     color: var(--primary);
     border-radius: 100%;
     box-shadow: var(--shadow);
     margin-bottom: 20px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cbh-why-icon svg {
     width: 32px;
 }

 
 .cbh-acc-item {
     background: white;
     border-radius: var(--radius);
     border: 1px solid var(--border);
     margin-bottom: 12px;
     overflow: hidden;
 }

 .cbh-acc-header {
     width: 100%;
     padding: 18px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     background: none;
     border: none;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     text-align: left;
     font-family: inherit;
     color: var(--text-dark);
 }

 .cbh-chevron {
     width: 20px;
     transition: 0.3s;
 }

 .cbh-acc-body {
     max-height: 0;
     padding: 0 20px;
     font-size: 13px;
     overflow: hidden;
     transition: 0.3s ease-out;
     color: var(--text-gray);
 }

 .cbh-acc-item.cbh-active .cbh-acc-body {
     max-height: 200px;
     padding-bottom: 25px;
 }

 .cbh-acc-item.cbh-active .cbh-chevron {
     transform: rotate(180deg);
     color: var(--primary);
 }

 /* --- Footer --- */
 .cbh-footer {
     background: #070B14;
     color: white;
     padding: 80px 0 0;
 }

 .cbh-footer-grid {
     display: grid;
     grid-template-columns: 2fr 1fr 1.2fr;
     gap: 40px;
     padding-bottom: 60px;
     /* border-bottom: 1px solid rgba(255, 255, 255, 0.05); */
 }

 .cbh-f-brand h3 {
     font-size: 28px;
     color: var(--primary);
     margin-bottom: 20px;
 }

 .cbh-f-brand p {
     font-size: 14px;
     color: rgba(255, 255, 255, 0.5);
     line-height: 1.8;
 }

 .cbh-f-links a {
     display: block;
     margin-bottom: 12px;
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
 }

 .cbh-f-links h4,
 .cbh-f-contact h4 {
     margin-bottom: 25px;
 }

 .cbh-f-contact p {
     color: rgba(255, 255, 255, 0.5);
     font-size: 14px;
     margin-bottom: 15px;
 }

 .cbh-footer-bottom {
     background: #000;
     padding: 25px 0;
     text-align: center;
     opacity: 0.3;
     font-size: 12px;
 }

 /* --- Special Offer --- */
 .cbh-special-offer {
     padding: 100px 0;
     background: #F3F4F6;
 }

 .cbh-offer-box {
     background: white;
     border-radius: 30px;
     display: grid;
     grid-template-columns: 1.1fr 0.9fr;
     overflow: hidden;
     box-shadow: 0 40px 80px rgba(0, 0, 0, 0.08);
 }

 .cbh-offer-content {
     padding: 40px;
 }

 .cbh-offer-badge {
     background: #4F46E5;
     color: white;
     padding: 6px 16px;
     border-radius: 50px;
     font-size: 11px;
     font-weight: 800;
     text-transform: uppercase;
     letter-spacing: 1px;
     display: inline-block;
     margin-bottom: 25px;
 }
.cbh-offer-content h2{
    font-size: 32px;
}

.cbh-offer-content p {
    font-size: 14px;
}
 .cbh-price-comparison {
     display: flex;
     align-items: center;
     gap: 25px;
     margin: 35px 0;
     padding: 25px;
     background: #F9FAFB;
     border-radius: 20px;
     position: relative;
     width: fit-content;
 }

 .cbh-price-item span {
     display: block;
     font-size: 11px;
     font-weight: 700;
     color: #6B7280;
     text-transform: uppercase;
     margin-bottom: 5px;
 }

 .cbh-price-item.cbh-old .cbh-amt {
     font-size: 24px;
     color: #9CA3AF;
     text-decoration: line-through;
     font-weight: 700;
 }

 .cbh-price-item.cbh-new .cbh-amt {
     font-size: 40px;
     color: #111827;
     font-weight: 800;
 }

 .cbh-save-tag {
     position: absolute;
     top: -15px;
     right: -15px;
     background: #10B981;
     color: white;
     padding: 5px 12px;
     border-radius: 8px;
     font-weight: 800;
     font-size: 12px;
     box-shadow: 0 10px 20px rgba(16, 185, 129, 0.3);
 }

 .cbh-offer-features {
     display: flex;
     gap: 20px;
     margin-bottom: 40px;
 }

 .cbh-feat {
     font-size: 14px;
     font-weight: 600;
     color: #4B5563;
     display: flex;
     align-items: center;
 }

 .cbh-offer-image {
     position: relative;
 }

 .cbh-offer-image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .cbh-img-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(to right, white, transparent);
 }

 /* --- Light Contact Section  --- */
 .cbh-light-contact-section {
     padding: 100px 0;
     background: #FFFFFF;
 }

 .cbh-contact-wrapper {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 80px;
     align-items: center;
 }

 .cbh-contact-text .cbh-section-title {
     font-size: 40px;
     margin-bottom: 14px;
 }

 .cbh-contact-text p {
     font-size: 14px;
     color: var(--text-gray);
     margin-bottom: 40px;
     max-width: 480px;
 }

 .cbh-contact-methods {
     display: flex;
     flex-direction: column;
     gap: 20px;
 }

 .cbh-method-card {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px;
     background: var(--bg-grey);
     border-radius: var(--radius);
     border: 1px solid var(--border);
     transition: 0.3s;
     text-align: left;
 }

 .cbh-method-card:hover {
     border-color: var(--primary);
     background: #FFFFFF;
     box-shadow: var(--shadow);
 }

 .cbh-m-icon {
     width: 50px;
     height: 50px;
     background: #EEF2FF;
     color: var(--primary);
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .cbh-m-icon svg {
     width: 22px;
 }

 .cbh-m-info span {
     display: block;
     font-size: 12px;
     color: var(--text-gray);
     font-weight: 500;
     text-transform: uppercase;
 }

 .cbh-m-info strong {
     font-size: 16px;
     color: var(--text-dark);
 }

 .cbh-contact-form-box {
     background: #FFFFFF;
     padding: 40px;
     border-radius: 30px;
     border: 1px solid var(--border);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
 }

 .cbh-f-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 20px;
 }

 .cbh-f-input {
     margin-bottom: 20px;
     text-align: left;
 }

 .cbh-f-input label {
     display: block;
     font-size: 13px;
     font-weight: 700;
     margin-bottom: 8px;
    color: var(--text-gray);
 }

 .cbh-clean-form input,
 .cbh-clean-form select {
     background: var(--bg-grey);
     border: 1.5px solid var(--border);
     padding: 14px 18px;
     border-radius: 12px;
     font-size: 14px;
     width: 100%;
 }

 .cbh-clean-form input:focus {
     border-color: var(--primary);
     background: white;
     outline: none;
 }

 .cbh-form-note {
     text-align: center;
     font-size: 12px;
     color: var(--text-gray);
     margin-top: 15px;
     font-weight: 600;
 }

 /* ========================================= */
 /* --- CUSTOM OFFCANVAS MENU CSS --- */
 /* ========================================= */
 .cbh-offcanvas-overlay {
     position: fixed;
     inset: 0;
     background: rgba(0, 0, 0, 0.6);
     backdrop-filter: blur(3px);
     z-index: 1001;
     opacity: 0;
     visibility: hidden;
     transition: 0.3s ease;
 }

 .cbh-offcanvas-overlay.active {
     opacity: 1;
     visibility: visible;
 }

 .cbh-offcanvas-menu {
     position: fixed;
     top: 0;
     right: -100%;
     width: 320px;
     max-width: 85vw;
     height: 100vh;
     background: var(--white);
     z-index: 1002;
     transition: right 0.4s ease-in-out;
     display: flex;
     flex-direction: column;
     box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
 }

 .cbh-offcanvas-menu.active {
     right: 0;
 }

.cbh-offcanvas-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid var(--border);
}

.cbh-offcanvas-header .cbh-brand{
    max-width: 180px;
}

 .cbh-close-menu {
     background: var(--bg-grey);
     border: 1px solid var(--border);
     border-radius: 50%;
     width: 40px;
     height: 40px;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     transition: 0.3s;
    color: var(--text-gray);
 }

 .cbh-close-menu:hover {
     background: #fee2e2;
 }

 .cbh-close-menu svg {
     width: 24px;
     height: 24px;
 }

 .cbh-offcanvas-nav {
     padding: 30px 25px;
     display: flex;
     flex-direction: column;
     gap: 5px;
     flex-grow: 1;
     overflow-y: auto;
 }

 .cbh-offcanvas-nav a {
     font-size: 18px;
     font-weight: 700;
    color: var(--text-gray);
     padding: 15px 0;
     border-bottom: 1px solid var(--bg-grey);
     transition: 0.3s;
 }

 .cbh-offcanvas-nav a:hover {
     color: var(--primary);
     padding-left: 10px;
     border-bottom-color: var(--border);
 }

 .cbh-offcanvas-footer {
     padding: 25px;
     border-top: 1px solid var(--border);
     background: var(--bg-grey);
 }
 
.cbh-mobile-dropdown {
    border-bottom: 1px solid var(--bg-grey);
    transition: 0.3s;
}
 
.cbh-mobile-dropdown-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;  
    align-items: center;
    background: transparent;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-gray);
    padding: 15px 0;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s;
}
 
.cbh-mobile-dropdown-toggle:hover {
    color: var(--primary);
    padding-left: 10px;
}
 
.cbh-mobile-dropdown-toggle svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
 
.cbh-mobile-dropdown-menu {
    display: none; 
    flex-direction: column;
    padding-left: 15px;  
    background: #fafafa;  
    border-radius: 8px;
    margin-bottom: 15px;
}
 
.cbh-offcanvas-nav .cbh-mobile-dropdown-menu a {
    font-size: 15px;  
    font-weight: 600;
    padding: 12px 10px;
    border-bottom: none; /
}
 
.cbh-mobile-dropdown.active .cbh-mobile-dropdown-menu {
    display: flex; 
}

.cbh-mobile-dropdown.active .cbh-mobile-dropdown-toggle {
    color: var(--primary);
}
 
.cbh-mobile-dropdown.active .cbh-mobile-dropdown-toggle svg {
    transform: rotate(180deg);
}
 /* ========================================= */
 /* --- ENHANCED RESPONSIVE MEDIA QUERIES --- */
 /* ========================================= */

 @media (max-width: 992px) {
     .cbh-desktop-nav {
         display: none;
     }

     .cbh-menu-toggle {
         display: block;
     }

     .cbh-hero-grid,
     .cbh-intro-flex,
     .cbh-contact-wrapper {
         grid-template-columns: 1fr;
         text-align: center;
     }

     .cbh-hero-btns {
         justify-content: center;
     }

     .cbh-hero-section {
         padding-top: 150px;
     }

     .cbh-brand-name span {
         display: none;
     }

     .cbh-contact-wrapper {
         gap: 50px;
     }

     .cbh-contact-text p {
         margin: 0 auto 30px;
     }

     .cbh-contact-methods {
         align-items: stretch;
     }

     .cbh-f-row {
         grid-template-columns: 1fr;
         gap: 0;
     }

     .cbh-footer-grid {
         grid-template-columns: 1fr;
         text-align: center;
         gap: 30px;
     }

     .cbh-offer-box {
         grid-template-columns: 1fr;
     }

     .cbh-offer-image {
         display: none;
     }

     .cbh-offer-content {
         padding: 40px 25px;
         text-align: center;
     }

     .cbh-price-comparison {
         margin: 30px auto;
         flex-wrap: wrap;
         justify-content: center;
     }

     .cbh-offer-features {
         flex-direction: column;
         align-items: center;
         gap: 10px;
     }
     .cbh-f-brand-logo { 
    margin: 0 auto;
}
 }

 @media (max-width: 768px) {
     .cbh-call-btn {
         display: none;
     }

     .cbh-header-book-btn {
         display: none;
     }

     .cbh-section {
         padding: 50px 0;
     }

     .cbh-special-offer,
     .cbh-light-contact-section {
         padding: 60px 0;
     }

     .cbh-intro-flex {
         gap: 40px;
     }

     .cbh-hero-section {
         padding-top: 60px;
         padding-bottom: 80px;
     }

     .cbh-section-title {
         font-size: clamp(28px, 6vw, 32px);
     }

     h1 {
         font-size: clamp(32px, 8vw, 48px);
     }

     .cbh-contact-text .cbh-section-title {
         font-size: clamp(32px, 8vw, 40px);
     }

     .cbh-form-row-2 {
         grid-template-columns: 1fr;
     }

     .cbh-hero-btns {
         flex-direction: column;
         width: 100%;
     }

     .cbh-hero-btns .cbh-btn {
         width: 100%;
     }

     /* .cbh-glass-form-card,
     .cbh-contact-form-box,
     .cbh-airport-board {
         padding: 25px;
     } */

     .cbh-a-row {
         display: flex;
         flex-direction: column;
         text-align: center;
         gap: 15px;
         padding: 25px 0;
     }

     .cbh-intro-badge {
         right: -10px;
         padding: 14px;
     }

     .cbh-form-row-2 {
         gap: 0;
     }
 }


 @media (max-width: 480px) {
     .cbh-section {
         padding: 40px 0;
     }

     .cbh-container {
         width: calc(100% - 30px);
     }

     h1 {
         font-size: 28px !important;
         line-height: 1.2;
         letter-spacing: -1px;
     }

     .cbh-section-title {
         font-size: 24px !important;
         margin-bottom: 12px;
     }

     .cbh-sub-tag {
         font-size: 10px;
         letter-spacing: 1.5px;
     }

     p,
     .cbh-section-desc {
         font-size: 14px !important;
         line-height: 1.5;
     }

     .cbh-brand-name {
         font-size: 18px;
     }

     .cbh-brand-logo {
         width: 32px;
         height: 32px;
     }

     .cbh-hero-section {
         padding: 40px 0 60px;
     }

     .cbh-promo-badge {
         font-size: 10px;
         padding: 6px 12px;
         margin-bottom: 15px;
     }

     .cbh-hero-btns {
         gap: 10px;
     }

   */

     .cbh-glass-form-card {
         padding: 20px;
         margin-top: 30px;
     }

     .cbh-form-header h3 {
         font-size: 20px;
     }

     .cbh-fleet-grid {
         gap: 10px;
     }

     .cbh-fleet-body {
         padding: 15px;
     }

     .cbh-fleet-body h3 {
         font-size: 18px;
     }

     .cbh-intro-badge {
         padding: 10px 15px;
         bottom: 10px;
         right: 10px;
     }

     .cbh-intro-badge strong {
         font-size: 20px;
     }

 

     .cbh-a-row {
         padding: 20px 0;
     }

     .cbh-offer-content {
         padding: 30px 15px !important;
     }

     .cbh-price-comparison {
         gap: 10px;
         padding: 15px;
         width: 100%;
         justify-content: space-around;
     }

     .cbh-price-item.cbh-new .cbh-amt {
         font-size: 28px;
     }

     .cbh-price-item.cbh-old .cbh-amt {
         font-size: 18px;
     }

     .cbh-save-tag {
         font-size: 10px;
         padding: 4px 8px;
     }

     .cbh-contact-text .cbh-section-title {
         font-size: 28px !important;
     }

     .cbh-method-card {
         padding: 12px;
         gap: 12px;
     }

     .cbh-m-icon {
         width: 40px;
         height: 40px;
     }

     .cbh-m-info strong {
         font-size: 15px;
     }

     .cbh-contact-form-box {
         padding: 20px;
     }

     .cbh-footer {
         padding-top: 40px;
     }

     .cbh-f-brand h3 {
         font-size: 22px;
     }

     .cbh-footer-grid {
         gap: 20px;
         padding-bottom: 40px;
     }
 }
.cbh-center-head .cbh-section-desc{
    margin: 0; 
}

.cbh-why-card h3{
    font-size: 16px;
    margin-bottom: 8px;
}
.cbh-why-card p{
    font-size: 13px;
}

/* --- Inner Pages Support CSS --- */

.cbh-inner-hero {
    background: #0f172a;
    padding: 100px 0 60px;
    text-align: center;
    color: white;
}

.cbh-inner-banner {
    background: linear-gradient(135deg, #4F46E5 0%, #1e1b4b 100%);
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cbh-inner-banner h1 {
    font-size: 42px;
    margin-bottom: 10px;
    letter-spacing: -1px;
}

.cbh-inner-banner p {
    font-size: 16px;
    opacity: 0.8;
}
.cbh-inner-banner .cb-breadcrumbs{
    justify-content: center;
    margin: 0;
    color: var(--cb-primary-light);
}

.cbh-inner-banner .cb-breadcrumbs a {
    background: linear-gradient(90deg, #8f99ff, #ddbcff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cbh-inner-banner .cb-breadcrumbs .active {
    color: var(--white);
}
.cbh-legal-content {
    max-width: 850px;
    margin: 0 auto;
}

.cbh-legal-content h2 {
    font-size: 22px;
    color: #111827;
    margin: 35px 0 15px;
    font-weight: 700;
}

.cbh-legal-content p {
    font-size: 15px;
    color: #4B5563;
    line-height: 1.8;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .cbh-inner-banner h1 {
        font-size: 32px;
    }
    .cbh-inner-banner {
        padding: 50px 0;
    }
}

/* car rental css */
  
ul {
    list-style: none;
}
 
:root {
    --cb-primary: #4F46E5;
    --cb-primary-hover: #4338CA;
    --cb-primary-light: #EEF2FF;
    --cb-bg-body: #F9FAFB;
    --cb-bg-white: #FFFFFF;
    --cb-text-dark: #424242;
    --cb-text-gray: #4B5563;
    --cb-text-light: #9CA3AF;
    --cb-border: #E5E7EB;
    --cb-radius: 12px;
    --cb-radius-lg: 16px;
    --cb-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --cb-shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}


.text-gray {
    color: var(--cb-text-gray);
}

.font-bold {
    font-weight: 700;
    color: var(--cb-text-dark);
}

.text-right {
    text-align: right;
}

.text-success {
    color: #059669 !important;
}

.cb-icon {
    width: 20px;
    height: 20px;
    vertical-align: middle;
    margin-right: 6px;
    display: inline-block;
}

.cb-icon-sm {
    width: 15px;
    height: 15px;
    vertical-align: middle;
    margin-right: 4px;
    margin-top: -2px;
    display: inline-block;
}


.cb-page-header {
    margin-bottom: 30px;
}

.cb-page-header h1 {
    color: var(--cb-text-dark);
    font-size: 28px;
    font-weight: 700;
}

.cb-section {
    margin-bottom: 50px;
}

.cb-section-title {
    color: var(--cb-text-dark);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.cb-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    margin: 25px 0;
    color: var(--cb-text-light);
}

.cb-breadcrumbs .active {
    color: var(--cb-text-dark);
    font-weight: 500;
}

.cb-pills-wrap {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.cb-pill {
    padding: 10px 24px;
    background-color: var(--cb-bg-white);
    border: 1px solid var(--cb-border);
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    color: var(--cb-text-gray);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.cb-pill:hover {
    border-color: var(--cb-primary);
    color: var(--cb-primary);
}

.cb-pill.active {
    background-color: var(--cb-primary);
    color: #fff;
    border-color: var(--cb-primary);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.3);
}

.cb-cards-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cb-route-card {
    display: flex;
    background-color: var(--cb-bg-white);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 24px;
    align-items: center;
    box-shadow: var(--cb-shadow);
    transition: all 0.3s ease;
}

.cb-route-card:hover {
    box-shadow: var(--cb-shadow-hover);
    transform: translateY(-2px);
    border-color: #D1D5DB;
}

.cb-col-route {
    width: 35%;
}

.cb-col-include {
    width: 35%;
}

.cb-col-price {
    width: 15%;
}

.cb-col-action {
    width: 15%;
    text-align: right;
}

.cb-route-title {
    font-size: 17px;
    font-weight: 700;
    color: var(--cb-text-dark);
    margin-bottom: 6px;
}

.cb-arrow {
    color: var(--cb-text-light);
    font-weight: normal;
    margin: 0 4px;
}

.cb-route-time {
    font-size: 13px;
    color: var(--cb-text-gray);
    font-weight: 500;
}

.cb-include-main {
    font-size: 14px;
    color: #059669;
    font-weight: 600;
    width: 100%;
    display: block;
}

.cb-include-sub {
    font-size: 13px;
    color: var(--cb-text-gray);
    margin-top: 4px;
}

.cb-price-main {
    font-size: 22px;
    font-weight: 700;
    color: var(--cb-text-dark);
    width: 100%;
    display: block;
}

.cb-price-strike {
    font-size: 14px;
    color: var(--cb-text-light);
    text-decoration: line-through;
    margin-left: 6px;
    font-weight: 400;
}

.cb-price-tax {
    font-size: 12px;
    color: var(--cb-text-gray);
    margin-top: 4px;
}

.cb-btn {
    display: inline-block;
    background-color: var(--cb-primary);
    color: #fff !important;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s;
}

.cb-btn:hover {
    background-color: var(--cb-primary-hover);
    box-shadow: 0 4px 10px rgba(79, 70, 229, 0.4);
}

.cb-btn-outline {
    background-color: transparent;
    color: var(--cb-primary) !important;
    border: 2px solid var(--cb-primary);
}

.cb-btn-outline:hover {
    background-color: var(--cb-primary-light);
}

.cb-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.cb-feature-card {
    background: var(--cb-primary-light);
    padding: 24px;
    border-radius: var(--cb-radius);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border: 1px solid #E0E7FF;
}

.cb-feature-icon {
    background: #fff;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--cb-shadow);
    color: var(--cb-primary);
}

.cb-feature-icon svg {
    width: 32px;
    height: 32px;
}

.cb-feature-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--cb-text-dark);
    margin-bottom: 8px;
}

.cb-feature-desc {
    font-size: 13px;
    color: var(--cb-text-gray);
}

.cb-feature-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cb-feature-tags span {
    background-color: #F3F4F6;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    color: var(--cb-text-dark);
    display: flex;
    align-items: center;
}

.cb-flex-center {
    display: flex;
    align-items: center;
}

.cb-car-placeholder {
    width: 55px;
    height: 55px;
    margin-right: 15px;
    background: #F3F4F6;
    color: var(--cb-text-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cb-car-placeholder svg {
    width: 35px;
    height: 35px;
}

.cb-modern-table-wrap {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    overflow: hidden;
    box-shadow: var(--cb-shadow);
}

.cb-tbl-row {
    display: grid;
    grid-template-columns: 2fr 3fr 1.5fr 1.5fr 1.5fr 1.5fr;
    padding: 18px 24px;
    border-bottom: 1px solid var(--cb-border);
    align-items: center;
    transition: background-color 0.2s;
}

.cb-tbl-row:last-child {
    border-bottom: none;
}

.cb-tbl-row:not(.cb-tbl-header):hover {
    background-color: #F8FAFC;
}

.cb-tbl-header {
    background-color: #F3F4F6;
    font-weight: 700;
    color: var(--cb-text-dark);
    border-bottom: 2px solid var(--cb-border);
}

.cb-link-text {
    font-weight: 600;
    font-size: 14px;
}

.cb-link-text:hover {
    text-decoration: underline;
}

.cb-faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cb-faq-card {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    padding: 24px;
    box-shadow: var(--cb-shadow);
    border-left: 4px solid #d7d7d7;
    transition: all 0.3s ease;
}

.cb-faq-card:hover {
    box-shadow: var(--cb-shadow-hover);
    transform: translateX(4px);
}

.cb-faq-q {
    font-size: 16px;
    font-weight: 700;
    color: var(--cb-text-dark);
    margin-bottom: 10px;
}

.cb-faq-a {
    font-size: 14px;
    color: var(--cb-text-gray);
    line-height: 1.6;
}

.cb-faq-inner-list {
    margin: 8px 0 12px 15px;
    list-style-type: disc;
}

.cb-faq-inner-list li {
    margin-bottom: 4px;
}

.cb-content-box {
    background-color: var(--cb-bg-white);
    padding: 30px;
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    box-shadow: var(--cb-shadow);
}

.cb-content-box h2 {
    font-size: 18px;
    color: var(--cb-text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
}

.cb-content-box h2:first-child {
    margin-top: 0;
}

.cb-content-box p {
    color: var(--cb-text-gray);
}

@media (max-width: 768px) {
    .cb-features-grid {
        grid-template-columns: 1fr;
    }

    .cb-route-card {
        flex-direction: column;
        align-items: flex-start;
        position: relative;
        gap: 15px;
    }

    .cb-col-route,
    .cb-col-include,
    .cb-col-price,
    .cb-col-action {
        width: 100%;
        text-align: left;
    }

    .cb-col-include {
        padding: 15px 0;
        border-top: 1px dashed var(--cb-border);
        border-bottom: 1px dashed var(--cb-border);
    }

    .cb-col-action {
        width: 100%;
        margin-top: 5px;
    }

    .cb-btn {
        width: 100%;
        text-align: center;
    }

    .cb-tbl-header {
        display: none;
    }

    .cb-tbl-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 15px;
    }

    .cb-tbl-col {
        display: flex;
        justify-content: space-between;
        width: 100%;
        text-align: right;
    }

    .cb-tbl-col::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--cb-text-dark);
        text-align: left;
        width: 50%;
    }

    .cb-tbl-col.text-right {
        justify-content: center !important;
        margin-top: 10px;
        padding-top: 15px;
        border-top: 1px dashed var(--cb-border);
    }
}

.cb-modern-table-wrap {
    background: var(--cb-bg-white);
    border: 1px solid var(--cb-border);
    border-radius: var(--cb-radius);
    overflow: hidden;
    box-shadow: var(--cb-shadow);
}

.cb-modern-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.text-left {
    text-align: left;
}

.cb-modern-table th,
.cb-modern-table td {
    padding: 18px 24px;
    border-bottom: 1px solid var(--cb-border);
}

.cb-modern-table tbody tr:last-child td {
    border-bottom: none;
}

.cb-modern-table thead th {
    background-color: #F3F4F6;
    font-weight: 700;
    color: var(--cb-text-dark);
    border-bottom: 2px solid var(--cb-border);
}

.cb-modern-table tbody tr {
    transition: background-color 0.2s ease;
}

.cb-modern-table tbody tr:hover {
    background-color: #F8FAFC;
}
 
.cb-tab-content {
    display: none;  
}

.cb-tab-content.active {
    display: flex; 
    flex-direction: column;
    gap: 16px;
    animation: fadeIn 0.4s ease-in-out;
}
 
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(5px); }
    to { opacity: 1; transform: translateY(0); }
}
 
.cb-type-tab-content {
    display: none;
    animation: fadeIn 0.4s ease-in-out;
}

.cb-type-tab-content.active {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (max-width: 768px) {
    .cb-modern-table thead {
        display: none;
    }

    .cb-modern-table tbody tr {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 20px 15px;
        border-bottom: 1px solid var(--cb-border);
    }

    .cb-modern-table th,
    .cb-modern-table td {
        padding: 0;
        border-bottom: none;
        display: flex;
        justify-content: space-between;
        width: 100%;
        text-align: right;
    }

    .cb-modern-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: var(--cb-text-dark);
        text-align: left;
        width: 50%;
    }

    .cb-modern-table td.text-right {
        justify-content: center !important;
        padding-top: 15px;
        padding-bottom: 14px;
    }

    .cb-modern-table td.text-right::before {
        display: none;
    }

    .cb-modern-table tbody tr {
        padding: 0;
        gap: 0;
    }

    .cb-modern-table tbody tr td {
        padding: 6px 14px;
    }

    .cb-modern-table tbody tr td:nth-child(odd) {
        background-color: #f5f5f5;
    }

    .cb-modern-table tbody tr td:nth-child(even) {
        background-color: #ffffff;
    }

    .cb-content-box {
        padding: 14px;
    }
}


.cb-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cb-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cb-modal-container {
    background-color: var(--cb-bg-white);
    width: 100%;
    max-width: 450px;
    border-radius: var(--cb-radius-lg);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.18, 0.89, 0.32, 1.28);
    overflow: hidden;
    margin: 15px;
}

.cb-modal-overlay.active .cb-modal-container {
    transform: translateY(0);
}

.cb-modal-header {
    padding: 14px 24px;
    border-bottom: 1px solid var(--cb-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #F8FAFC;
}

.cb-modal-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--cb-text-dark);
}

.cb-modal-close {
    font-size: 28px;
    line-height: 1;
    color: var(--cb-text-light);
    transition: color 0.2s;
    background-color: transparent;
    border: none;
}

.cb-modal-close:hover {
    color: var(--cb-text-dark);
}

.cb-modal-form {
    padding: 24px;
}

.cb-form-group {
    margin-bottom: 20px;
}

.cb-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--cb-text-dark);
    margin-bottom: 8px;
}

.cb-form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--cb-border);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    color: var(--cb-text-dark);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.cb-form-group input:focus {
    border-color: var(--cb-primary);
    box-shadow: 0 0 0 3px var(--cb-primary-light);
}

.cb-input-icon-wrap {
    position: relative;
}

.cb-input-icon-wrap svg {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    color: var(--cb-text-light);
}

.cb-input-icon-wrap input {
    padding-left: 40px;
}

.cb-btn-full {
    width: 100%;
    text-align: center;
    margin-top: 10px;
    padding: 14px;
    font-size: 16px;
}

.cbh-f-brand-logo{
    max-width: 210px;
    img{
        width: 100%;
        height: 100%;
    }
}

@media (max-width: 480px) {
    .cb-modal-form {
        padding: 12px;
    }

    .cb-form-group {
        margin-bottom: 10px;
    }

    .cb-form-group label {
        font-size: 13px;
        margin-bottom: 5px;
    }

    .cb-modal-header {
        padding: 12px 14px;
    }

    .cb-faq-card {
        padding: 14px;
    }
    .cb-route-card { 
    gap: 8px;
    padding: 16px;
}
.cb-feature-card { 
    padding: 16px; 
}
.cb-modern-table tbody tr td { 
    font-size: 13px;
}
}

/*developer css*/
.developer-alert {
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    padding: 12px 14px;
}

.developer-alert-success {
    background: #dcfce7;
    border: 1px solid #86efac;
    color: #166534;
}

.developer-alert-error {
    background: #fee2e2;
    border: 1px solid #fca5a5;
    color: #991b1b;
}

.developer-field-error {
    color: #dc2626;
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
}

.cbh-main-form .cbh-btn-primary {
    align-items: center;
    gap: 10px;
    position: relative;
    transition: opacity 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.developer-btn-text {
    transition: opacity 0.2s ease;
}

.developer-btn-loader {
    animation: developer-spin 0.75s linear infinite;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    border-top-color: #ffffff;
    display: none;
    flex: 0 0 auto;
    height: 18px;
    width: 18px;
}

.cbh-main-form.is-submitting .cbh-btn-primary,
.cbh-main-form .cbh-btn-primary:disabled {
    cursor: not-allowed;
    opacity: 0.85;
    pointer-events: none;
}

.cbh-main-form.is-submitting .developer-btn-loader {
    display: inline-block;
}

@keyframes developer-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 575px) {
    .cbh-main-form .cbh-btn-primary {
        gap: 8px;
        min-height: 48px;
    }

    .developer-btn-loader {
        height: 16px;
        width: 16px;
    }
}
