@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: "Poppins", serif;
    box-sizing: border-box;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

body {
    padding-top: 58px;
    background: #f5f5f5;
}

.navbar-nav .nav-link {
    font-size: 16px;
    padding: 10px 15px;
    color: white;
    text-decoration: none;
}

.footer-logo{
    height: 80px;
    width: max-content;
}

.footer-app {
    width: 150px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-app:hover {
    transform: scale(1.1);
    opacity: 0.8;
}

/* Scroll to Top Button */
.scroll-top {
    position: fixed;
    bottom: 18px;
    right: 25px;
    width: 45px;
    height: 45px;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 45px;
    border-radius: 50%;
    font-size: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
    text-decoration: none;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.scroll-top.scrolled {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background-color: #333;
}

/* logn and register css==============
===================================== */
.heading-box {
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    color: #333;
}

.log-in-form {
    justify-content: center;
    align-items: center;
    padding: 70px 0px;
    display: flex;
}

.login-signup {
    padding: 20px;
    background: white;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    text-align: center;
}

.heading-box {
    color: black;
    font-size: 35px;
}

.form-group.box-content {
    margin-bottom: 15px;
    text-align: left;
}

.form-group.box-content label {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
}
/*
.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
} */

.sub-btn {
    width: 100%;
    padding: 10px;
    background: black;
    color: white;
    border: none;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s ease;
}

.sub-btn:hover {
    background: white;
    color: black;
    border: 1px solid black;
}

p.account {
    font-size: 20px;
    margin-top: 5px;
}

p.account a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.heading-register {
    position: relative;
    text-align: start;
    font-size: 33px;
    font-weight: 400;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.form-label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label {
    top: 0;
    font-size: 12px;
    color: #007bff;
    padding: 0 5px;
}

.form-control:focus {
    border-color: #007bff;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.3);
}

.required {
    color: #dc3545;
    font-weight: bold;
}

.form-group.error-state .form-control {
    border-color: #dc3545;
    background-color: #fff5f5;
}

.form-group.error-state .form-label {
    color: #dc3545;
}

.form-group.error-state {
    display: block;
}
.form-group {
    position: relative;
    margin-bottom: 25px;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    outline: none;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: transparent;
}

.form-label {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #777;
    transition: all 0.3s ease;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-control:focus + .form-label,
.form-control:not(:placeholder-shown) + .form-label,
select:focus + .form-label {
    top: 5px;
    font-size: 12px;
    color: #333;
}

.terms {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.terms input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.terms label {
    cursor: pointer;
}

.terms a {
    color: black;
    text-decoration: none;
    font-weight: bold;
}

.terms a:hover {
    text-decoration: underline;
}
.register-btn{
    position: relative;
    display: flex;
    width: auto;
}

.register-steps {
    list-style-type: disc;
    padding: 0;
    text-align: justify;
    padding-left: 1rem;
}

.register-steps li {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
}
.recaptcha-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    background: #f9f9f9;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
    width: fit-content;
    margin-bottom: 22px;
}

.recaptcha-container input {
    width: auto;
    margin-right: 10px;
}

.recaptcha-logo {
    width: 50px;
    height: auto;
    margin-left: 10px;
}
.sub-heading p{
    display: flex;
}
p.leading-mobile {
    display: flex;
    font-size: 12px;
}
.login-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.forgot-password{
    color: black;
    text-decoration: none;
}
.sub-head-cont {
    text-align: justify;
}
.image-login img{
    width: -webkit-fill-available;
}
/* first section to landing page ==============
============================================*/
/* Hero Banner Section START */
.car-section { max-width: 1200px; margin: 0 auto; }

.car-book {
    position: relative;
    width: 100%;
    height: 580px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border-radius: 28px;
    padding: 0 60px;
    gap: 40px;
}

.landing-page-img {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.landing-page-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        100deg,
        rgba(5, 20, 60, 0.88) 0%,
        rgba(10, 30, 80, 0.72) 45%,
        rgba(5, 20, 60, 0.65) 100%
    );
}

.landing-page-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.2);
}

/* ── Left content ──────────────────────────────────────── */
.landing-page-content {
    position: relative;
    z-index: 2;
    color: #fff;
    flex: 1;
    max-width: 480px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.22);
    backdrop-filter: blur(8px);
    border-radius: 50px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 22px;
    color: rgba(255,255,255,0.9);
}

.hero-badge span {
    width: 6px;
    height: 6px;
    background: #f5c842;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(1.4); }
}

.landing-page-content h2 {

    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.landing-page-content h2 em {
    font-style: italic;
    color: #f5c842;
}

.hero-tagline {
    font-size: 15px;
    color: rgba(255,255,255,0.72);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* ── Right booking panel ───────────────────────────────── */
.booking-panel {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    min-width: 320px;
}

.booking-panel-title {
    color: #fff;
    text-align: right;
    margin-bottom: 4px;
}

.booking-panel-title h3 {

    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.booking-panel-title p {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-top: 2px;
}

.booking-card-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.18);
    backdrop-filter: blur(14px);
    border-radius: 16px;
    padding: 18px 20px;
    transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    cursor: pointer;
    text-decoration: none;
}

.booking-card-banner:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.35);
    transform: translateX(-4px);
}

.booking-card-icon {
    width: 52px;
    height: 52px;
    background: rgba(255, 255, 255, 0.18);
    border: 1.5px solid rgba(255, 255, 255, 0.45);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.booking-card-icon svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.booking-card-text {
    flex: 1;
    color: #fff;
}

.booking-card-text strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 3px;
}

.booking-card-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    line-height: 1.4;
}

.booking-card-btn {
    background: #fff;
    color: #111;
    border: none;
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
    white-space: nowrap;
    transition: background 0.18s ease, transform 0.18s ease;
    text-decoration: none;
    display: inline-block;
}

.booking-card-btn:hover {
    background: #ffd94d;
    transform: scale(1.04);
}

/* ── Responsive ────────────────────────────────────────── */
@media (max-width: 900px) {
    .car-book {
        flex-direction: column;
        height: auto;
        padding: 50px 30px 40px;
        align-items: flex-start;
        gap: 36px;
    }
    .landing-page-content { max-width: 100%; }
    .landing-page-content h2 { font-size: 34px; }
    .booking-panel { min-width: 100%; width: 100%; }
    .booking-panel-title { text-align: left; }
}

/* ── Slider Container ───────────────────────────────────── */
.landing-page-img {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

/* Dark overlay on top of all slides */
.landing-page-img::after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
     background: linear-gradient(
        100deg,
        rgba(0, 0, 0, 0.45) 0%,
        rgba(0, 0, 0, 0.30) 45%,
        rgba(0, 0, 0, 0.20) 100%
    );
}

/* ── Slide Track ────────────────────────────────────────── */
/*
  Each slide stays visible for ~5s, then fades over 1.5s.
  Total cycle = (5 + 1.5) × number_of_slides
  For 3 slides: 19.5s total
  Each slide is visible for  5/19.5 ≈ 33.3% → fades out at ~28.2%, back in at ~95%
*/
.slide-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    animation: fadeSlide 19.5s infinite;

    /* Subtle Ken Burns zoom effect */
    transform: scale(1.08);
    animation: fadeSlide 19.5s infinite;
}

/* Stagger each slide by one interval (6.5s apart) */
.slide:nth-child(1) { animation-delay: 0s; }
.slide:nth-child(2) { animation-delay: 6.5s; }
.slide:nth-child(3) { animation-delay: 13s; }

@keyframes fadeSlide {
    0%   { opacity: 0;   transform: scale(1.08); }
    5%   { opacity: 1;   transform: scale(1.08); }
    28%  { opacity: 1;   transform: scale(1.00); }  /* fully visible + zoom complete */
    36%  { opacity: 0;   transform: scale(1.00); }  /* fade out */
    100% { opacity: 0;   transform: scale(1.08); }  /* wait for next cycle */
}
/* Hero Banner Section END */
/* trip safety section css===============
======================================== */
.trip-section {
    background: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}
.icon-image img{
    height: 50px;
}

.trip-header h2 {
    font-size: 36px;
    font-weight: bold;
    color: #333;
    margin-bottom: 40px;
    text-transform: uppercase;
}

.trip-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-box {
    background: #fff;
    padding: 30px;
    width: 300px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease-in-out;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

.feature-box .icon {
    font-size: 40px;
    color: black;
    margin-bottom: 15px;
}

.feature-box h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.feature-box p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}
/* rides experience section css===============
======================================== */
.ride-section {
    /* width: 100%; */
    padding: 80px;
    background: black;
    color: #fff;
}
.ride-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ride-content {
    max-width: 50%;
}

.ride-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
}

.ride-description {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ride-features {
    list-style: none;
    padding: 0;
}

.ride-features li {
    font-size: 16px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.ride-features i {
    margin-right: 10px;
    font-size: 20px;
}
.ride-btn {
    display: inline-block;
    padding: 12px 24px;
    background: white;
    color: black;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.ride-btn:hover {
    background: none;
    color: white;
    border: 2px solid white;
    transform: translateY(-2px);
}

.ride-image img {
    width: 550px;
    border-radius: 10px;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.2);
}


/* download app section css===============
======================================== */
.download-app-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.download-img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.get-app {
    width: fit-content;
}
/* our achievment section css =================
============================================ */
.achievement-section {
    background: black;
    margin: 60px auto 80px ;
    color: #fff;
}
.achievement-image{
    margin: -40px 0px -40px 0px;
}
.achievement-content {
    display: flex;
    align-items: center;
}
.achievement-image img {
    width: 100%;
    border-radius: 10px;
    animation: fadeIn 1s ease-in-out;
}

.section-title-achievment {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-in-out;
}

.section-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    animation: fadeInUp 1.2s ease-in-out;
}

.achievement-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    animation: fadeInUp 1.5s ease-in-out;
}

.achievement-feature .icon {
    font-size: 24px;
    background: white;
    color: #000;
    padding: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
}

.feature-text h3 {
    font-size: 20px;
    margin: 0;
}

.feature-text p {
    font-size: 14px;
    margin: 5px 0 0;
}



/* how it work section css  ==================
==========================================*/
section.div-padding.how-work-area {
    margin-bottom: 60px;
    background: #f0f0f0;
    padding: 80px;
}
.content-wrapper .left-content {
    align-items: center;
}
.content-wrapper .left-content .how-it-works-title {
    position: relative;
    font-size: 36px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 30px;
}
.icons-div-v-2 {
    display: block;
}
.icons-div-v-2 .icon-item-wrap:not(:last-child) {
    margin-bottom: 20px;
}
.icons-div-v-2 .icon-item-wrap {
    display: flex;
    position: relative;
    align-items: center;
    gap: 20px;
}
.icons-div-v-2 .single-icon,.icons-div-v-2 .single-icons {
    flex: 0 0 auto;
    height: 95px;
    width: 95px;
    text-align: center;
    line-height: 86px;
    position: relative;
    border-radius: 100%;
    background-color: black;
    border: 1px solid rgba(59, 59, 59, 0.3);
}
.icons-div-v-2 .single-icon::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -81px;
    height: 80px;
    width: 2px;
    background-color: #ccc;
    transform: translateX(-50%);
}

.how-it-works-text-wrapper h3{
    font-size: 24px;
}
.single-icon img,.single-icons img{
    filter: brightness(100);
}

/* about cabby section css =======
=============================== */
.who-we-are {
    padding: 0px 0 80px;
}

.who-we-are-left {
    max-width: 500px;
}



.who-we-are-left p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 15px;
    color: #444;
}

.who-we-are-list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.who-we-are-list li {
    display: flex;
    align-items: center;
    font-size: 16px;
    margin-bottom: 10px;
    color: #333;
}

.who-we-are-list img {
    width: 24px;
    margin-right: 10px;
}

.who-we-are-btn {
    display: inline-block;
    background: black;
    color: white;
    padding: 12px 20px;
    font-size: 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.who-we-are-btn:hover {
    background: white;
    border: 2px solid black;
    color: black;
}

.who-we-are-right {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.main-image {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
}

.overlay-image {
    width: 60%;
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: 28px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 1s ease-in-out;
}
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900&display=swap');

* {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    color: #1a1a1a;
}



.py-4 {
    padding: 2rem 0 !important;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
}

.card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.card-body {
    padding: 30px;
}

.card-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.card-title i {
    font-size: 24px;
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-info {
    background: #f0f0f0;
    color: #1a1a1a;
    border-color: #cccccc;
}

/* Form Groups */
.mb-3 {
    margin-bottom: 20px !important;
}

.mb-4 {
    margin-bottom: 30px !important;
}

/* Labels */
label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-transform: capitalize;
}

/* Radio Buttons Group */
.btn-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.btn-check {
    display: none;
}

.btn {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid #e5e5e5;
    background: white;
    color: #1a1a1a;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.btn:hover {
    border-color: #1a1a1a;
    background: #f9f9f9;
}

.btn-outline-primary,
.btn-outline-secondary {
    border: 2px solid #e5e5e5;
    background: white;
    color: #666666;
}

.btn-outline-primary:hover,
.btn-outline-secondary:hover {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.btn-check:checked + .btn-outline-primary,
.btn-check:checked + .btn-outline-secondary {
    background: #000000;
    color: white;
    border-color: #000000;
}

.btn-primary {
    background: #000000;
    color: white;
    border-color: #000000;
}

.btn-primary:hover {
    background: #333333;
    border-color: #333333;
}

/* Form Controls */
.form-control,
.form-control-lg,
.form-select {
    padding: 12px 14px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    color: #1a1a1a;
    transition: all 0.3s ease;
    background: white;
    width: 100%;
}

.form-control-lg {
    padding: 14px 16px;
    font-size: 15px;
}

.form-control:hover,
.form-control-lg:hover,
.form-select:hover {
    border-color: #cccccc;
}

.form-control:focus,
.form-control-lg:focus,
.form-select:focus {
    outline: none;
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
    background: white;
}

.form-control::placeholder,
.form-control-lg::placeholder {
    color: #999999;
}

/* Input Group */
.input-group {
    display: flex;
    align-items: center;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.input-group:focus-within {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

.input-group-text {
    background: #f9f9f9;
    border: none;
    padding: 12px 14px;
    color: #666666;
    font-size: 16px;
    border-right: 1px solid #e5e5e5;
}

.input-group .form-control {
    border: none;
    padding: 12px 14px;
    margin: 0;
}

.input-group .form-control:focus {
    box-shadow: none;
    border: none;
}

/* Position Relative */
.position-relative {
    position: relative;
}

/* Text Styles */
.fw-semibold {
    font-weight: 600;
}

.fw-bold {
    font-weight: 700;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: #666666;
}

/* Utility Classes */
.w-100 {
    width: 100%;
}

.py-2 {
    padding: 12px 0 !important;
}

.py-4 {
    padding: 24px 0 !important;
}

.mt-3 {
    margin-top: 20px !important;
}

.mt-2 {
    margin-top: 10px !important;
}

.mt-1 {
    margin-top: 5px !important;
}

/* Submit Button */
.btn-gradient-primary {
    background: #000000;
    color: white;
    border: 2px solid #000000;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-gradient-primary:hover {
    background: #333333;
    border-color: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.btn-gradient-primary:active {
    transform: scale(0.98);
}

/* Login Card */
.bg-light {
    background: #f9f9f9 !important;
}

/* Responsive Layout */
.row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -12px;
    margin-left: -12px;
}

.col-lg-7,
.col-lg-5 {
    padding-right: 12px;
    padding-left: 12px;
}

.col-lg-7 {
    flex: 0 0 calc(58.333% - 24px);
}

.col-lg-5 {
    flex: 0 0 calc(41.667% - 24px);
}

.justify-content-center {
    justify-content: center;
}

.mb-4 {
    margin-bottom: 30px !important;
}

/* Checkbox and Radio */
.form-check {
    display: flex;
    align-items: center;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    border: 2px solid #e5e5e5;
    border-radius: 4px;
    cursor: pointer;
    accent-color: #000000;
    transition: all 0.3s ease;
}

.form-check-input:checked {
    background: #000000;
    border-color: #000000;
}

.form-check-label {
    cursor: pointer;
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
}

/* Shadow */
.shadow {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08) !important;
}

.shadow-lg {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Rounded */
.rounded-4 {
    border-radius: 12px;
}

/* Datepicker Styles */
.flatpickr-calendar {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.flatpickr-day.selected,
.flatpickr-day.today,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
    background: #000000;
    color: white;
    border-color: #000000;
}

.flatpickr-day:hover {
    background: #f0f0f0;
    color: #1a1a1a;
}

.flatpickr-day.selected:hover {
    background: #333333;
}

.flatpickr-month {
    background: white;
}

.flatpickr-prev,
.flatpickr-next {
    color: #1a1a1a;
}

.flatpickr-prev:hover,
.flatpickr-next:hover {
    background: #f0f0f0;
}


/* Light Theme Text */
.text-muted {
    color: #999999;
}

.text-secondary {
    color: #666666;
}

.text-dark {
    color: #1a1a1a;
}

/* Form Validation */
.is-invalid {
    border-color: #dc2626 !important;
}

.invalid-feedback {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

/* Print Styles */
@media print {
    body {
        background: white;
    }
    .card {
        box-shadow: none;
        border: 1px solid #e5e5e5;
    }
}
/* faq page css =======================
========================================*/
.faq-section h1 {
    color: black;
    margin-bottom: 20px;
}

.topic {
    margin-bottom: 15px;
    padding: 10px;
    border-radius: 5px;
    background: #fff;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
}

.open {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.question {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0px;
}

.answer {
    display: none;
    padding: 10px;
    color: #555;
}

.answer a {
    color: black;
    text-decoration: none;
}

.faq-t {
    width: 20px;
    height: 20px;
    background: url('https://cdn-icons-png.flaticon.com/512/271/271228.png') no-repeat center;
    background-size: cover;
    transition: transform 0.3s;
}

.faq-o {
    transform: rotate(90deg);
}

.tab-buttons {
    text-align: center;
    margin-bottom: 20px;
}

.tablink {
    background: #f4f4f4;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s ease-in-out;
    border-radius: 5px;
    color: #333;
}

.tablink.active {
    background: black;
    color: #fff;
}
.tabcontent {
    display: none;
    padding: 15px;
    border-radius: 5px;
}

.tabcontent.active {
    display: block;
}

/* contact page css ========== */

.address-contact{
    display: flex;
    align-items: anchor-center;
    gap: 10px;
}
.address-contact i {
    font-size: 20px;
}


/* =================
Profile Page css
===================*/
#wrapper {
    background-color: #fff;
}

/* Profile Section */

.profile-section {
    padding: 20px 0;
    background: white;
}


.profile-caption {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.profile-caption .page-heading {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #d7d7d7;
    color: #1a1a1a;
}

.profile-image {
    position: relative;
    flex-shrink: 0;
}

.profile-image img {
    width: 104px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #000000;
    box-shadow: 0 0 0 2px transparent;
    height: 104px;
    position: relative;
    margin-right: 30px;
}

.profile-image {
    position: relative;
}

.profile-image i {
    position: absolute;
    bottom: 69px;
    right: 21px;
    width: 35px;
    height: 35px;
    background: #000;
    border: 3px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}


.profile-image a:hover {
    transform: scale(1.1);
}

.profile-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.profile-block .profile-caption-header {
    margin-top: 14px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d3d3d3;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 12px;
    align-items: center;
}

.profile-block .profile-caption-header label {
    display: block;
    font-size: 19px;
    font-weight: 500;
    color: #1a1a1a;
}


.profile_edit_btn {
    padding: 10px 24px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.profile_edit_btn:hover {
    background: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.profile-detail {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.profile-column {
    width: auto;
    padding-right: 40px;
    display: flex;
    flex-wrap: wrap;
    box-sizing: border-box;
    min-width: 260px;
}

.profile-column i {
    font-size: 31px;
    color: #000;
    margin-right: 14px;
}

.data_info strong {
    display: block;
    font-size: 12px;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    font-weight: 500;
}

.data_info span {
    display: block;
    font-size: 14px;
    color: #1a1a1a;
    font-weight: 500;
    word-break: break-word;
}

.profile-earning {
    padding: 40px 0;
    background: #fff;
}

.profile-earning .container ul {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
    gap: 30px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.earning-block {
    background: #000;
    color: #fff;
    border-radius: 18px;
    padding: 28px 30px;
    height: 150px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: .3s ease;
}

.earning-block:hover {
    transform: translateY(-6px);
    box-shadow: 0px 14px 35px rgba(0,0,0,0.35);
}

.earning-block .place-holder-icon {
    position: absolute;
    right: 113px;
    bottom: 0px;
    opacity: 0.12;
    z-index: 1;
}

.place-holder-icon img {
    width: 150px;
    height: 150px;
    filter: brightness(0) invert(1);
}

.earning-block strong {
    font-size: 17px;
    font-weight: 600;
    z-index: 2;
}

.earning-block .count {
    font-size: 38px;
    font-weight: 800;
    margin-top: 10px;
    z-index: 2;
}

.go-icon {
    position: absolute;
    top: 20px;
    right: 22px;
    font-size: 30px;
    text-decoration: none;
    color: #fff;
    z-index: 3;
    transition: .3s;
}

.earning-block:hover .go-icon {
    transform: translateX(6px);
}


.profile_edit {
    display: none;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 40px 25px;
    margin-top: 30px;
    border: 1px solid #e5e5e5;
    animation: fadeIn .3s ease;
}

.profile_edit.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.partation {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.form-group.half {
    width: 50%;
    padding: 0px 12px;
    margin-bottom: 25px;
}

.button-block {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.btn-hold input[type="submit"],
.btn-hold input[type="button"] {
    padding: 13px 26px;
    border-radius: 10px;
    border: 2px solid #000;
    background: #000;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: .25s ease;
}

.btn-hold input[type="submit"]:hover {
    background: #222;
}

.btn-hold input[type="button"] {
    background: white;
    color: #000;
    border-color: #dedede;
}

.btn-hold input[type="button"]:hover {
    border-color: #000;
    background: #f7f7f7;
}

.custom-modal-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
    backdrop-filter: blur(4px);
}

.custom-modal-main.active {
    display: flex;
}

.custom-modal {
    background: white;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.model-header {
    background: #000000;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.model-header h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.icon-close {
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s ease;
    line-height: 1;
    color: white;
}

.icon-close:hover {
    transform: scale(1.2);
}

.model-body {
    padding: 30px;
}

.fileupload-preview.thumbnail {
    margin: 0 auto 20px;
    width: 200px;
    height: 200px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #e5e5e5;
}

.fileupload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gen-btn {
    padding: 10px 20px;
    background: #000000;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    font-family: 'Poppins', sans-serif;
}

.gen-btn:hover {
    background: #333333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gen-btn.btn-success {
    background: #000000;
}

.gen-btn.btn-success:hover {
    background: #333333;
}

.gen-btn.cancel-btn {
    background: white;
    color: #1a1a1a;
    border: 2px solid #e5e5e5;
    margin-left: 10px;
}

.gen-btn.cancel-btn:hover {
    background: #f9f9f9;
    border-color: #1a1a1a;
}

.model-footer {
    padding: 20px 30px;
    background: #f9f9f9;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.upload-error {
    color: #dc2626;
    font-size: 13px;
    margin-top: 8px;
    background: #fee2e2;
    padding: 8px 12px;
    border-radius: 6px;
    border-left: 3px solid #dc2626;
}

.upload-block {
    background: #f9f9f9;
    border: 2px dashed #e5e5e5;
    border-radius: 8px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.upload-block:hover {
    border-color: #1a1a1a;
    background: #ffffff;
}

.upload-block strong {
    display: block;
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.doc-image-block {
    margin: 15px 0;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.doc-image-block img {
    max-height: 150px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.doc-image-block p {
    color: #666666;
    font-size: 14px;
}

.doc-image-block a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
}

.doc-image-block a:hover {
    text-decoration: underline;
}

.custom-select-wrapper {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select-trigger:hover {
    border-color: black;
}

.custom-select-trigger.active {
    border-color: black;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.select-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-select-trigger.active .select-arrow {
    transform: translateY(-50%) rotate(180deg);
    color: black;
}

.custom-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    margin-top: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-options.open {
    display: block;
}

.custom-option {
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option:hover {
    background-color: #000;
    color: #fff;
}

.custom-option.selected {
    background-color: #000;
    color: #fff;
}

.custom-option.selected:hover {
    background-color: #000;
    color: #fff;
}


/* Passengers Select Specific Styles */
.custom-select-wrapper-seats {
    position: relative;
    width: 100%;
}

.custom-select-trigger-seats {
    width: 100%;
    padding: 12px 40px 12px 16px;
    font-size: 15px;
    font-weight: 400;
    color: #333;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.custom-select-trigger-seats:hover {
    border-color: #000;
}

.custom-select-trigger-seats.active {
    border-color: #000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.select-arrow-seats {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
    pointer-events: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.custom-select-trigger-seats.active .select-arrow-seats {
    transform: translateY(-50%) rotate(180deg);
    color: #000;
}

.custom-options-seats {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-top: none;
    max-height: 250px;
    overflow-y: auto;
    z-index: 999;
    display: none;
    margin-top: 1px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-options-seats.open {
    display: block;
}

.custom-option-seats {
    padding: 12px 16px;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.custom-option-seats:hover {
    background-color: #000;
    color: #fff;
}

.custom-option-seats.selected {
    background-color: #000;
    color: #fff;
}

.custom-option-seats.selected:hover {
    background-color: #000;
    color: #fff;
}

/* Date and TIme picker css */

/* Updated DateTime Picker Styles - With Header Matching Screenshot */

/* Input Styles */
.custom-input:focus,
.custom-input.active {
    outline: none;
    border-color: #2c5aa0;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.custom-input::placeholder {
    color: #999;
}

.datetime-picker-wrapper {
    position: relative;
    width: 100%;
}

.datetime-input-container {
    position: relative;
}

.datetime-input-container .calendar-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #000;
    pointer-events: none;
    font-size: 16px;
}

/* DateTime Picker Dropdown */
.datetime-picker-dropdown {
    position: absolute;
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    display: none;
    margin-top: 5px;
    min-width: 650px;
    left: 0;
    top: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.datetime-picker-dropdown.active {
    display: block;
}

/* DateTime Header - Shows Selected Date/Time */
.datetime-header {
    background: #000;
    color: white;
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid #000;
}

.datetime-display-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.datetime-display-text .day-name {
    font-weight: 700;
}

.datetime-display-text .month-day {
    font-weight: 600;
}

.datetime-display-text .year-display {
    font-weight: 600;
}

.datetime-display-text .time-display-header {
    font-weight: 700;
}

/* Prevent overflow issues */
.form-group,
.booking-form,
.booking-card {
    overflow: visible !important;
}

/* Main Content - Side by Side */
.datetime-picker-content {
    display: flex;
    background: #fff;
    margin-bottom: 8px;
}

.calendar-section {
    flex: 1;
    background: #fff;
    margin-top: 3px;
    margin-left: 3px;
}

/* Calendar Header - [◀] [Month] [▶] [Year] Layout */
.calendar-header {
    display: grid;
    grid-template-columns: 40px 40px 40px 80px;
    align-items: center;
    padding: 15px;
    background: #000;
    color: white;
    gap: 10px;
}

.calendar-header .month-year {
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-align: left;
    letter-spacing: 0.5px;
}

.calendar-header .year-display-nav {
    font-weight: 600;
    font-size: 16px;
    color: white;
    text-align: right;
}

.calendar-nav-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    cursor: pointer;
    font-size: 16px;
    padding: 8px;
    transition: all 0.2s;
    width: 40px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
}

.calendar-nav-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Calendar Grid */
.calendar-grid {
    background: white;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    /* gap: 4px; */
    margin-bottom: 2px;
}

.calendar-weekdays div {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: white;
    padding: 8px 0;
    background: #000;
    text-transform: capitalize;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: end;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    transition: all 0.2s;
    border: 1px solid #e0e0e0;
    font-weight: 500;
    background: white;
    padding-right: 6px;
}

.calendar-day:hover:not(.disabled):not(.other-month) {
    background: #e8f1f8;
    border-color: #000;
    color: #000;
}

.calendar-day.other-month {
    color: #ccc;
    cursor: default;
    background: #fafafa;
}

.calendar-day.disabled {
    color: #e0e0e0;
    cursor: not-allowed;
    text-decoration: line-through;
    background: #f9f9f9;
}

.calendar-day.today {
    background: #f0f0f0;
    font-weight: 700;
    color: #000;
    border: 2px solid #000;
}

.calendar-day.selected {
    background: #000;
    color: #fff;
    font-weight: 700;
    border: 1px solid #000;
}

.calendar-day.selected:hover {
    background: #000;
    border-color: #000;
}

/* Time Picker Section */
.time-picker-section {
    flex: 1;
    padding: 40px 00px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.time-picker-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.time-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.time-btn {
    background: #000;
    border: none;
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
    color: white;
    border-radius: 3px;
}

.time-btn:hover {
    background: #000;
}

.time-display {
    font-size: 32px;
    font-weight: 700;
    min-width: 70px;
    text-align: center;
    color: #333;
    padding: 12px 0;
}

.time-separator {
    font-size: 32px;
    font-weight: 700;
    color: #333;
}

.period-display-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.period-arrow {
    background: #000;
    border: none;
    width: 60px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 20px;
    color: white;
    border-radius: 3px;
}

.period-arrow:hover {
    background: #000;
}

.period-display-large {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    min-width: 60px;
    text-align: center;
    padding: 12px 0;
}

/* Action Buttons */
.datetime-actions {
    display: flex;
    gap: 0;
    background: white;
}

.datetime-btn {
    flex: 1;
    padding: 16px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.2s;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.datetime-btn-cancel {
    background: #f5f5f5;
    color: #666;
}

.datetime-btn-cancel:hover {
    background: #e8e8e8;
    color: #333;
}

.datetime-btn-done {
    background: #000;
    color: #fff;
}

.datetime-btn-done:hover {
    background: #000;
}

/* Responsive */
@media (max-width: 768px) {
    .datetime-picker-dropdown {
        min-width: 100%;
        left: 0;
        right: 0;
        position: fixed;
        top: auto;
        bottom: 0;
        margin-top: 0;
        max-height: 80vh;
    }

    .datetime-picker-content {
        flex-direction: column;
        max-height: 80vh;
        overflow-y: auto;
    }

    .calendar-section {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }

    .time-picker-section {
        border-left: none;
    }
}

@media (max-width: 500px) {
    .datetime-picker-dropdown {
        min-width: 100%;
        left: 0;
        right: 0;
        position: fixed;
    }

    .time-display,
    .period-display-large {
        font-size: 24px;
        min-width: 50px;
    }

    .time-separator {
        font-size: 24px;
    }

    .time-btn,
    .period-arrow {
        width: 50px;
        height: 40px;
    }

    .datetime-display-text {
        font-size: 16px;
        gap: 8px;
    }
}
