/* ==================================
HEADER
================================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Poppins',sans-serif;
    background:#F4F6FA;

}

.site-header{
    width:100%;
    height:75px;

    background:#ffffff;

    border-bottom:1px solid #EAEAEA;

    position:sticky;
    top:0;

    z-index:999;
}

.header-container{
    width:100%;
    height:100%;

    padding:0 50px;

    display:flex;

    align-items:center;

    justify-content:space-between;
}

/* LOGO */

.logo img{
    height:48px;
  }


/* MENU */

.nav-menu ul{
    display:flex;
    list-style:none;
    gap:40px;
}

.nav-menu a{
    text-decoration:none;
    color:#222;
    font-size:15px;
    font-weight:500;
    transition:.3s;
}

.nav-menu a:hover{
    color:#0B4DBB;
}

/* BUTTONS */

.header-buttons{
    display:flex;
    align-items:center;
    gap:12px;
}

.btn-login{
    padding:10px 28px;
    border:2px solid #0B4DBB;
    color:#0B4DBB;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-login:hover{
    background:#0B4DBB;
    color:#fff;
}

.btn-register{
    padding:10px 28px;
    background:#FF6B00;
    color:#fff;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.btn-register:hover{
    background:#E85F00;
}

/* MOBILE MENU */

.menu-toggle{
    display:none;
    font-size:30px;
    cursor:pointer;
}

.mobile-buttons{
    display:none;
}


/* ==================================
TABLET & MOBILE
================================== */

@media (max-width:900px){

    .header-container{
        padding:0 20px;
        position:relative;
    }

    .menu-toggle{
        display:block;
    }

    .header-buttons{
        display:none;
    }

    .nav-menu{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        box-shadow:0 8px 20px rgba(0,0,0,.08);
        padding:20px;
    }

    .nav-menu.active{
        display:block;
    }

    .nav-menu ul{
        flex-direction:column;
        gap:0;
    }

    .nav-menu li{
        border-bottom:1px solid #eee;
    }

    .nav-menu a{
        display:block;
        padding:15px;
    }

    .mobile-buttons{
        display:flex;
        flex-direction:column;
        gap:12px;
        margin-top:20px;
    }

    .mobile-buttons .btn-login,
    .mobile-buttons .btn-register{
        width:100%;
        text-align:center;
    }
}


/* ==========================================
   HERO SECTION
========================================== */

.hero-section{

    width:100%;
    background:#f3f5f9;
    overflow:hidden;

}

.hero-container{
    width:100%;
    height:600px;
    position:relative;
    display:flex;
    overflow:hidden;

}

/* LEFT PANEL */

.hero-left{
    position:absolute;
    left:0;
    top:0;
    bottom:0;

    width:46%;

    background:#06296B;
    color:#fff;

    padding:80px 80px 80px 100px;

    border-top-right-radius:260px;
    border-bottom-right-radius:260px;

    display:flex;
    flex-direction:column;
    justify-content:center;

    z-index:2;

    transform:none;   /* REMOVE translateX */
}

.hero-left h3{

    font-size:50px;
    line-height:1.2;

}

.hero-left h1{

    font-size:70px;
    color:#FF6B00;
    margin:20px 0;

}

.hero-left p{

    font-size:22px;
    line-height:1.8;
    max-width:500px;
}

/* BUTTONS */

.hero-buttons{

    display:flex;
    gap:20px;
    margin-top:40px;

}

.btn-orange{

    background:#FF6B00;
    color:#fff;

    text-decoration:none;

    padding:16px 35px;

    border-radius:8px;

    font-weight:600;

}

.btn-white{

    background:#fff;

    color:#0B4DBB;

    text-decoration:none;

    padding:16px 35px;

    border-radius:8px;

    font-weight:600;

}

/* RIGHT */

.hero-right{
    position:absolute;
    right:0;
    top:0;

    width:68%;
    height:100%;
}

.hero-right img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-right img{

    width:100%;
    height:100%;
    object-fit:cover;
}

/* BADGE */

.hero-badge{

    position:absolute;

    left:360px;

    bottom:40px;

    background:#fff;

    border-radius:15px;

    padding:18px 25px;

    display:flex;

    align-items:center;

    gap:15px;

    box-shadow:0 10px 25px rgba(0,0,0,.12);

}

.badge-icon{

    width:45px;

    border-radius:50%;

    border:2px solid #38b000;

    color:#38b000;

    display:flex;

    justify-content:center;

    align-items:center;

    font-weight:bold;
     flex-shrink: 0; /* Prevents stretching in flex layouts */
    aspect-ratio: 1; /* Keeps perfect 1:1 circle ratio */

}



@media (max-width:992px){

.hero-container{

    height:auto;

    display:block;

}

.hero-left{

    position:relative;

    width:100%;

    transform:none;

    border-radius:0;

    padding:60px 30px;

}

.hero-left h3{

    font-size:34px;

}

.hero-left h1{

    font-size:48px;

}

.hero-left p{

    font-size:18px;

}

.hero-buttons{

    flex-wrap:wrap;

}

.hero-right{

    position:relative;

    width:100%;

    height:350px;

}

.hero-badge{

    left:50%;

    transform:translateX(-50%);

    bottom:20px;

    width:50%;

}

}


/*=========================================
    SERVICES
=========================================*/

.services-section{
    padding:100px 6%;
    background:#fff;
}

.services-container{
    max-width:1400px;
    margin:auto;
}

.section-title{
    text-align:center;
    margin-bottom:60px;
}

.section-title h5{
    color:#FF6B00;
    font-size:18px;
    font-weight:600;
    letter-spacing:2px;
    margin-bottom:10px;
}

.section-title h2{
    font-size:42px;
    color:#06296B;
    margin-bottom:20px;
}

.section-title p{
    max-width:700px;
    margin:auto;
    color:#666;
    font-size:17px;
    line-height:1.8;
}

.services-grid{
    margin-top: 60px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;

}

.service-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

    transition:.35s;

}

.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.service-card img{

    width:100%;
    height:240px;
    object-fit:cover;

}

.service-content{

    padding:25px;

}

.service-content h3{

    color:#06296B;
    margin-bottom:15px;
    font-size:24px;

}

.service-content p{

    color:#666;
    line-height:1.8;
    margin-bottom:20px;

}

.service-content a{

    color:#FF6B00;
    font-weight:600;
    text-decoration:none;

}


@media(max-width:1100px){

.services-grid{

    grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.services-grid{

    grid-template-columns:1fr;

}

.section-title h2{

    font-size:34px;

}

}


/* ==========================================
   COMBINED WHY US & HOW IT WORKS SECTION
========================================== */

.features-how-section {
    padding: 60px 5%;
    background: #f4f6fa;
}

.features-how-container {
    max-width: 1300px;
    margin: 0 auto;
    background: #f8faff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

/* LEFT SIDE: WHY CHOOSE US */
.why-us-side {
    flex: 1;
}

.section-title-left {
    font-size: 26px;
    color: #0c1e38;
    margin-bottom: 25px;
    font-weight: 700;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.why-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.why-icon {
    width: 42px;
    height: 42px;
    background: #0b4dbb;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.why-info h4 {
    font-size: 15px;
    color: #0c1e38;
    margin-bottom: 4px;
    font-weight: 600;
}

.why-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.3;
}

/* VERTICAL DIVIDER LINE */
.section-divider {
    width: 1px;
    background: #e2e8f0;
    align-self: stretch;
}

/* RIGHT SIDE: HOW IT WORKS */
.how-it-works-side {
    flex: 1.2;
}

.section-title-right {
    font-size: 26px;
    color: #0c1e38;
    margin-bottom: 25px;
    font-weight: 700;
}

.steps-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-circle {
    width: 55px;
    height: 55px;
    background: #eaf2ff;
    color: #0b4dbb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 10px;
}

.step-num {
    font-weight: 700;
    font-size: 14px;
    color: #0c1e38;
    margin-bottom: 4px;
}

.step-label {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    line-height: 1.3;
}

.step-arrow {
    color: #94a3b8;
    font-size: 18px;
    margin-bottom: 35px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .features-how-container {
        flex-direction: column;
        align-items: stretch;
    }

    .section-divider {
        width: 100%;
        height: 1px;
        margin: 10px 0;
    }

    .steps-flow {
        overflow-x: auto;
        padding-bottom: 10px;
    }
}


@media (max-width: 768px) {
    .why-us-grid {
        grid-template-columns: 1fr; /* Switch to 1 column on mobile */
        gap: 30px;
    }
    
    .features-how-container {
        padding: 20px 16px; /* Adjust padding so card text fits mobile width */
    }
}


/* ==========================================
   FOOTER SECTION
========================================== */

.site-footer {
    background: #f4f6fa;
    padding: 20px 0 30px;
    font-family: 'Poppins', sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 1. TOP BLUE CTA BANNER */
.footer-cta-banner {
    background: #0b4dbb;
    border-radius: 16px;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(11, 77, 187, 0.15);
    margin-bottom: 50px;
}

.cta-text h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

.btn-cta-contact {
    background: #ffffff;
    color: #0b4dbb;
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s, transform 0.2s;
}

.btn-cta-contact:hover {
    background: #eaf2ff;
    transform: translateY(-2px);
}

/* 2. MAIN FOOTER CONTENT */
.footer-content {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 1.2fr 0.9fr 1.2fr;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0c1e38;
    margin-bottom: 16px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #555555;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #0b4dbb;
}

/* ABOUT COLUMN */
.footer-about .footer-logo img {
    height: 42px;
    margin-bottom: 15px;
}

.footer-about p {
    color: #666666;
    font-size: 13px;
    line-height: 1.6;
    max-width: 260px;
}

/* CONTACT COLUMN */
.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #555555;
}

.contact-info li .icon {
    font-size: 14px;
    color: #0b4dbb;
}

.social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background: #0b4dbb;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s, transform 0.2s;
}

.social-icon:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

/* 3. COPYRIGHT */
.footer-bottom {
    text-align: center;
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888;
    margin: 0;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 20px;
    }
}

@media (max-width: 600px) {
    .footer-cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
}



/* ==========================================
   AUTH & DASHBOARD APPS
========================================== */

/* Auth Pages Styling */
.auth-body {
    background: #f4f6fa;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.auth-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.auth-card h2 {
    font-size: 24px;
    color: #06296b;
    margin-bottom: 6px;
}

.auth-card p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.btn-auth {
    width: 100%;
    background: #0b4dbb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
}

.auth-footer-text {
    text-align: center;
    margin-top: 20px;
    font-size: 13px;
}

.alert-danger {
    background: #fde8e8;
    color: #e53e3e;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
    margin-bottom: 15px;
}

/* APP SHELL (Mobile UI) */
.mobile-app-body {
    background: #e9ecef;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.app-screen {
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    min-height: 100vh;
    padding: 16px 16px 80px 16px;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.08);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.app-logo {
    height: 32px;
}

.icon-btn {
    background: #f0f4f9;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
}

/* BANNER */
.welcome-banner {
    background: #0b4dbb;
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.banner-text h2 {
    font-size: 20px;
    margin-bottom: 4px;
}

.banner-text p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.btn-banner {
    background: #ff6b00;
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

.banner-img img {
    width: 90px;
    position: absolute;
    right: 10px;
    bottom: 0;
}

/* SECTION HEADER */
.app-section {
    margin-bottom: 20px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h3 {
    font-size: 16px;
    color: #0c1e38;
}

.see-all {
    font-size: 12px;
    color: #0b4dbb;
    text-decoration: none;
    font-weight: 600;
}

/* SERVICE GRID */
.service-icon-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.service-icon-card {
    text-align: center;
    text-decoration: none;
}

.icon-wrapper {
    width: 56px;
    height: 56px;
    background: #f0f5ff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin: 0 auto 6px auto;
}

.service-icon-card span {
    font-size: 11px;
    color: #333;
    display: block;
    line-height: 1.2;
}

/* PROMO CARD */
.promo-card {
    background: #eef4ff;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.promo-info h4 {
    font-size: 14px;
    color: #0b4dbb;
}

.promo-info p {
    font-size: 12px;
    color: #555;
    margin: 4px 0 10px 0;
}

.btn-promo {
    background: #0b4dbb;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    text-decoration: none;
}

.promo-img img {
    width: 70px;
}

/* RECENT BOOKINGS */
.booking-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
}

.booking-thumb {
    width: 44px;
    height: 44px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-details h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.booking-details p {
    font-size: 11px;
    color: #777;
}

.booking-details small {
    font-size: 10px;
    color: #0b4dbb;
}

.status-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

.status-confirmed {
    background: #e6f9ed;
    color: #2e7d32;
}

.status-completed {
    background: #e6f0ff;
    color: #0b4dbb;
}

/* BOTTOM NAV */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    border-top: 1px solid #eee;
}

.nav-item {
    text-decoration: none;
    color: #888;
    font-size: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.nav-item.active {
    color: #0b4dbb;
    font-weight: 600;
}

.nav-icon {
    font-size: 18px;
    margin-bottom: 2px;
}

/* BOOKING SCREEN */
.booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.back-btn {
    font-size: 20px;
    text-decoration: none;
    color: #0c1e38;
}

.step-wizard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.step-item-wiz {
    text-align: center;
    font-size: 10px;
    color: #888;
}

.step-item-wiz.active {
    color: #0b4dbb;
    font-weight: 600;
}

.step-num-wiz {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #e0e0e0;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 4px auto;
    font-size: 11px;
}

.step-item-wiz.active .step-num-wiz {
    background: #0b4dbb;
    color: #fff;
}

.wizard-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    margin: 0 4px;
}

.booking-title-block {
    margin-bottom: 16px;
}

.booking-title-block h3 {
    font-size: 16px;
    color: #0c1e38;
}

.booking-title-block p {
    font-size: 12px;
    color: #777;
}

.service-radio-card {
    display: block;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 14px;
    margin-bottom: 12px;
    cursor: pointer;
}

.service-radio-card input {
    display: none;
}

.radio-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.radio-content .icon-box {
    width: 44px;
    height: 44px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.service-desc h4 {
    font-size: 13px;
    margin-bottom: 2px;
}

.service-desc p {
    font-size: 11px;
    color: #777;
}

.custom-radio {
    width: 18px;
    height: 18px;
    border: 2px solid #ccc;
    border-radius: 50%;
    margin-left: auto;
}

.service-radio-card input:checked + .radio-content .custom-radio {
    border-color: #0b4dbb;
    background: radial-gradient(circle, #0b4dbb 40%, transparent 50%);
}

.btn-next-step {
    width: 100%;
    background: #0b4dbb;
    color: #fff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    margin-top: 10px;
    cursor: pointer;
}


/* ==========================================
   ABOUT US PAGE
========================================== */

/* ABOUT HERO */
.about-hero {
    background: #06296B;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.about-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-hero h5 {
    color: #FF6B00;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.about-hero h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.about-hero p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* MAIN ABOUT SECTION */
.about-section {
    padding: 80px 6%;
    background: #ffffff;
}

.about-container {
    max-width: 1300px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.experience-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: #FF6B00;
    color: #ffffff;
    padding: 20px 25px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.exp-num {
    font-size: 24px;
    font-weight: 700;
}

.exp-text {
    font-size: 12px;
}

.about-content h5 {
    color: #FF6B00;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.about-content h2 {
    font-size: 34px;
    color: #06296B;
    margin-bottom: 16px;
}

.about-content p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.feature-icon {
    width: 28px;
    height: 28px;
    background: #0B4DBB;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 14px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 16px;
    color: #06296B;
    margin-bottom: 2px;
}

.feature-text p {
    font-size: 13px;
    margin: 0;
}

/* MISSION & VISION */
.mission-vision-section {
    background: #F4F6FA;
    padding: 70px 6%;
}

.mission-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.mv-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
}

.mv-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.mv-card h3 {
    font-size: 22px;
    color: #06296B;
    margin-bottom: 10px;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

/* STATS */
.stats-section {
    background: #0B4DBB;
    color: #ffffff;
    padding: 50px 6%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 6px;
}

.stat-item p {
    font-size: 14px;
    opacity: 0.85;
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .about-grid, .mission-container {
        grid-template-columns: 1fr;
    }
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}


/* ==========================================
   SERVICES PAGE
========================================== */

/* HERO SECTION */
.services-hero {
    background: #06296B;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.services-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.services-hero h5 {
    color: #FF6B00;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.services-hero h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.services-hero p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* ALL SERVICES GRID */
.all-services-section {
    padding: 80px 6%;
    background: #F4F6FA;
}

.all-services-container {
    max-width: 1300px;
    margin: 0 auto;
}

.all-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 35px;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-detail-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.1);
}

.service-img-wrapper {
    position: relative;
    height: 220px;
}

.service-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.price-tag {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: #FF6B00;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.service-detail-content {
    padding: 30px;
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon-badge {
    width: 48px;
    height: 48px;
    background: #EAF2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}

.service-detail-content h3 {
    font-size: 22px;
    color: #06296B;
    margin-bottom: 10px;
}

.service-detail-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.service-features li {
    font-size: 13px;
    color: #444;
    margin-bottom: 8px;
    font-weight: 500;
}

.btn-service-book {
    margin-top: auto;
    display: block;
    text-align: center;
    background: #0B4DBB;
    color: #ffffff;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.3s;
}

.btn-service-book:hover {
    background: #06296B;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .all-services-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   AFFILIATE PAGE STYLES
========================================== */

.affiliate-banner {
    background: linear-gradient(135deg, #06296b 0%, #0b4dbb 100%);
    border-radius: 16px;
    padding: 20px;
    color: #ffffff;
    margin-bottom: 20px;
}

.affiliate-stat-main {
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: 15px;
    margin-bottom: 15px;
}

.affiliate-stat-main p {
    font-size: 12px;
    opacity: 0.85;
}

.affiliate-stat-main h2 {
    font-size: 32px;
    color: #ff6b00;
    margin-top: 4px;
}

.affiliate-stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    text-align: center;
}

.stat-box small {
    font-size: 10px;
    opacity: 0.8;
    display: block;
}

.stat-box h4 {
    font-size: 14px;
    margin-top: 2px;
}

/* REFERRAL LINK BOX */
.referral-box {
    background: #f0f5ff;
    border: 1px dashed #0b4dbb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 20px;
}

.referral-box h3 {
    font-size: 14px;
    color: #06296b;
    margin-bottom: 4px;
}

.referral-box p {
    font-size: 11px;
    color: #666;
    margin-bottom: 12px;
}

.copy-input-group {
    display: flex;
    gap: 8px;
}

.copy-input-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccd9f0;
    border-radius: 8px;
    font-size: 11px;
    background: #ffffff;
    color: #333;
    outline: none;
}

.copy-input-group button {
    background: #0b4dbb;
    color: #ffffff;
    border: none;
    padding: 0 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

/* AFFILIATE STEPS */
.affiliate-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.aff-step {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 12px;
    border-radius: 12px;
}

.aff-step-icon {
    width: 40px;
    height: 40px;
    background: #eaf2ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.aff-step-info h4 {
    font-size: 13px;
    color: #06296b;
    margin-bottom: 2px;
}

.aff-step-info p {
    font-size: 11px;
    color: #666;
    line-height: 1.3;
}

/* ==========================================
   CONTACT US PAGE
========================================== */

/* HERO SECTION */
.contact-hero {
    background: #06296B;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
}

.contact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h5 {
    color: #FF6B00;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-hero h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 16px;
    opacity: 0.9;
    line-height: 1.6;
}

/* MAIN CONTACT SECTION */
.contact-section {
    padding: 80px 2%;
    background: #F4F6FA;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

/* LEFT INFO CARD */
.contact-info-card {
    grid-column: 1;
    background: #06296B;
    color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(6, 41, 107, 0.15);
}

.contact-info-card h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-sub {
    font-size: 13px;
    opacity: 0.8;
    margin-bottom: 30px;
    line-height: 1.5;
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.info-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-item h4 {
    font-size: 13px;
    opacity: 0.85;
    margin-bottom: 2px;
}

.info-item p {
    font-size: 14px;
    font-weight: 600;
}

.contact-socials h4 {
    font-size: 14px;
    margin-bottom: 12px;
}

.social-icons-row {
    display: flex;
    gap: 10px;
}

.social-circle {
    width: 36px;
    height: 36px;
    background: #0B4DBB;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
}

.social-circle:hover {
    background: #FF6B00;
}

/* RIGHT FORM WRAPPER */
.contact-form-wrapper {
    grid-column: 2;
    background: #ffffff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h3 {
    font-size: 24px;
    color: #06296B;
    margin-bottom: 6px;
}

.contact-form-wrapper p {
    font-size: 13px;
    color: #666;
    margin-bottom: 25px;
}

.main-contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.split-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-full, .form-group-half {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.main-contact-form label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.main-contact-form input,
.main-contact-form select,
.main-contact-form textarea {
    padding: 12px 14px;
    border: 1px solid #dcdfe6;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.main-contact-form input:focus,
.main-contact-form select:focus,
.main-contact-form textarea:focus {
    border-color: #0B4DBB;
}

.btn-submit-message {
    background: #FF6B00;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.3s;
}

.btn-submit-message:hover {
    background: #E85F00;
}

/* RESPONSIVE DESIGN */
@media (max-width: 1050px) {
    .contact-grid {
        grid-template-columns: minmax(280px, 0.8fr) minmax(420px, 1.2fr);
        gap: 25px;
    }

    .contact-info-card,
    .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-card {
        grid-column: 1;
        grid-row: 1;
    }

    .contact-form-wrapper {
        grid-column: 1;
        grid-row: 2;
    }
    
    .split-row {
        grid-template-columns: 1fr;
    }
}

/* 1. Global safety rule to prevent input/card overflow */
.contact-info-card,
.contact-form-wrapper {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    min-width: 0; /* Prevents flex items from expanding beyond parent */
}

/* Ensure form controls shrink to fit mobile view */
.contact-form-wrapper form,
.contact-form-wrapper input,
.contact-form-wrapper textarea,
.contact-form-wrapper select {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

/* 2. Mobile Responsive Layout Fix */
@media (max-width: 768px) {
    /* If they are wrapped in a container, force single column */
    .contact-container,
    .contact-section-grid,
    .contact-wrapper {
        display: flex;
        flex-direction: column;
        grid-template-columns: 1fr !important;
        width: 100%;
        padding-left: 15px;
        padding-right: 15px;
        box-sizing: border-box;
    }

    /* Reduce heavy desktop padding on cards so they fit small screens */
    .contact-info-card,
    .contact-form-wrapper {
        padding: 10px 16px;
        margin-bottom: 10px;
    }
}


/* ==========================================
   BOOKING FLOW STYLES (STEP 2 & 3)
========================================== */

/* PROGRESS BAR */
.booking-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    padding: 0 10px;
}

.progress-step {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #e2e8f0;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.progress-step.active {
    background: #0b4dbb;
    color: #ffffff;
}

.progress-step.completed {
    background: #28a745;
    color: #ffffff;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e2e8f0;
    margin: 0 8px;
}

.progress-line.completed {
    background: #28a745;
}

/* SUMMARY CARD */
.selected-summary-card {
    background: #f0f5ff;
    border-left: 4px solid #0b4dbb;
    padding: 14px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.summary-label {
    font-size: 11px;
    text-transform: uppercase;
    color: #64748b;
    font-weight: 600;
}

.selected-summary-card h4 {
    font-size: 16px;
    color: #06296b;
    margin-top: 2px;
}

/* BOOKING FORM SECTIONS */
.booking-section {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #f0f0f0;
    margin-bottom: 20px;
}

.booking-section h3 {
    font-size: 15px;
    color: #06296b;
    margin-bottom: 14px;
}

/* TIME SLOTS RADIO BUTTONS */
.time-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.time-slot-option input[type="radio"] {
    display: none;
}

.time-slot-option span {
    display: block;
    text-align: center;
    padding: 10px 8px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    border-radius: 8px;
    font-size: 12px;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
}

.time-slot-option input[type="radio"]:checked + span {
    background: #0b4dbb;
    color: #ffffff;
    border-color: #0b4dbb;
    font-weight: 600;
}

/* PRIMARY ACTION BUTTON */
.btn-primary-block {
    width: 100%;
    background: #ff6b00;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 30px;
}

.btn-primary-block:hover {
    background: #e85f00;
}


/* ==========================================
   BOOKING STEP 3 STYLES
========================================== */

/* SUMMARY OVERVIEW ROWS */
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 10px 0;
    border-bottom: 1px dashed #e2e8f0;
    font-size: 13px;
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row span {
    color: #64748b;
}

.summary-row strong {
    color: #06296b;
    text-align: right;
}

/* PAYMENT SELECTION CARDS */
.payment-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.payment-card {
    display: flex;
    align-items: center;
    padding: 14px;
    border: 1px solid #cbd5e1;
    border-radius: 10px;
    cursor: pointer;
    background: #f8fafc;
    transition: all 0.2s ease;
}

.payment-card input[type="radio"] {
    margin-right: 12px;
    accent-color: #0b4dbb;
}

.payment-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.pay-icon {
    font-size: 22px;
}

.payment-info h4 {
    font-size: 13px;
    color: #06296b;
    margin-bottom: 2px;
}

.payment-info p {
    font-size: 11px;
    color: #64748b;
}

.payment-card:has(input[type="radio"]:checked) {
    border-color: #0b4dbb;
    background: #f0f5ff;
}

/* PRICE BREAKDOWN */
.price-breakdown {
    background: #f8fafc;
}

.price-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    color: #475569;
    margin-bottom: 8px;
}

.divider {
    border: none;
    border-top: 1px solid #cbd5e1;
    margin: 12px 0;
}

.total-row {
    font-size: 16px;
    font-weight: 700;
    color: #06296b;
}

.total-row span:last-child {
    color: #ff6b00;
}


/* ==========================================
   RECENT BOOKINGS LIST STYLES
========================================== */

.booking-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-item {
    display: flex;
    align-items: center;
    background: #ffffff;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    gap: 12px;
}

.booking-thumb {
    width: 44px;
    height: 44px;
    background: #f0f5ff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.booking-details {
    flex: 1;
}

.booking-details h4 {
    font-size: 14px;
    color: #06296b;
    margin-bottom: 2px;
}

.booking-details p {
    font-size: 12px;
    color: #ff6b00;
    font-weight: 600;
}

.booking-details small {
    font-size: 11px;
    color: #64748b;
    display: block;
    margin-top: 2px;
}

/* STATUS BADGES */
.status-badge {
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: capitalize;
    display: inline-block;
}

/* Match lower, title, and uppercase values */
.status-pending, .status-Pending, .status-PENDING { 
    background: #fff3cd !important; 
    color: #856404 !important; 
}

.status-confirmed, .status-Confirmed, .status-CONFIRMED { 
    background: #e0f2fe !important; 
    color: #0369a1 !important; 
}

.status-completed, .status-Completed, .status-COMPLETED { 
    background: #d1e7dd !important; 
    color: #0f5132 !important; 
}

.status-cancelled, .status-Cancelled, .status-CANCELLED { 
    background: #f8d7da !important; 
    color: #842029 !important; 
}

/* EMPTY STATE CARD */
.empty-booking-card {
    background: #ffffff;
    border: 1px dashed #cbd5e1;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
}

.empty-booking-card p {
    font-size: 13px;
    color: #64748b;
    margin-bottom: 12px;
}

.btn-primary-small {
    display: inline-block;
    background: #0b4dbb;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
}


/* ==========================================
   MOBILE CONTAINER & DASHBOARD FIXES
========================================== */

/* Body & Screen Container */
body.mobile-app-body {
    background-color: #f4f6fa;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

.app-screen {
    max-width: 420px;
    margin: 0 auto;
    background: #ffffff;
    min-height: 100vh;
    padding: 20px 16px 80px 16px;
    box-sizing: border-box;
    position: relative;
}

/* DASHBOARD HEADER ALIGNMENT */
.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.user-avatar {
    width: 42px;
    height: 42px;
    background: #f0f5ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.greeting-sub {
    font-size: 12px;
    color: #64748b;
    margin: 0;
}

.user-title {
    font-size: 18px;
    color: #06296b;
    margin: 0;
    font-weight: 700;
    text-transform: capitalize;
}

.logout-icon-btn {
    text-decoration: none;
    font-size: 20px;
    padding: 8px;
    background: #f8fafc;
    border-radius: 8px;
}

/* PROMO BANNER */
.promo-card {
    background: linear-gradient(135deg, #eef2ff 0%, #e0e7ff 100%);
    border-radius: 16px;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.badge-tag {
    font-size: 10px;
    font-weight: 700;
    color: #0b4dbb;
    letter-spacing: 0.5px;
}

.promo-text h3 {
    font-size: 16px;
    color: #06296b;
    margin: 4px 0;
}

.promo-text p {
    font-size: 11px;
    color: #475569;
    margin: 0;
}

.btn-promo {
    background: #0b4dbb;
    color: #ffffff;
    padding: 10px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
}

/* SECTION HEADERS */
.app-section {
    margin-bottom: 24px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.section-header h3 {
    font-size: 16px;
    color: #06296b;
    margin: 0;
}

.see-all {
    font-size: 12px;
    color: #0b4dbb;
    text-decoration: none;
    font-weight: 600;
}

/* SERVICES QUICK GRID FIX */
.services-quick-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.quick-service-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: #334155;
    transition: transform 0.2s, background 0.2s;
}

.quick-service-card:hover {
    background: #f0f5ff;
    transform: translateY(-2px);
}

.q-icon {
    font-size: 22px;
    margin-bottom: 6px;
}

.quick-service-card span:last-child {
    font-size: 11px;
    font-weight: 500;
    line-height: 1.2;
}

/* BOTTOM NAV FIXED BAR */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    box-sizing: border-box;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #94a3b8;
    font-size: 10px;
    gap: 3px;
}

.nav-item.active {
    color: #0b4dbb;
    font-weight: 600;
}

.nav-icon {
    font-size: 18px;
}


/* ==========================================
   BOOKING DETAILS PAGE STYLES
========================================== */

/* LINK CONTAINER FIX */
.booking-item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* STATUS BANNER CARD */
.status-banner-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 18px;
    border: 1px solid #e2e8f0;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.status-banner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.booking-id-tag {
    font-size: 14px;
    font-weight: 700;
    color: #06296b;
}

.status-description {
    font-size: 12px;
    color: #475569;
    line-height: 1.5;
    margin: 0;
}

/* STATUS CANCELLED BADGE */
.status-cancelled {
    background: #f8d7da;
    color: #721c24;
}

/* DETAIL GROUPS */
.detail-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px dashed #f1f5f9;
}

.detail-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.detail-label {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 2px;
}

.detail-value {
    font-size: 13px;
    color: #06296b;
}

.detail-notes {
    font-size: 12px;
    color: #334155;
    background: #f8fafc;
    padding: 8px 12px;
    border-radius: 6px;
    margin-top: 4px;
}

/* CANCEL BUTTON */
.btn-cancel-block {
    width: 100%;
    background: #ffffff;
    color: #dc3545;
    border: 1px solid #dc3545;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.btn-cancel-block:hover {
    background: #dc3545;
    color: #ffffff;
}


/* ==========================================
   ADMIN PANEL STYLES
========================================== */

.admin-body {
    background-color: #f1f5f9;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 30px 20px;
    color: #1e293b;
}

.admin-container {
    max-width: 1200px;
    margin: 0 auto;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 24px 30px;
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.admin-header h2 {
    margin: 0;
    color: #06296b;
    font-size: 22px;
}

.admin-header p {
    margin: 4px 0 0 0;
    color: #64748b;
    font-size: 13px;
}

.btn-admin-nav {
    background: #0b4dbb;
    color: #ffffff;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* STAT CARDS */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.admin-stat-card {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    border-top: 4px solid #0b4dbb;
}

.admin-stat-card.pending { border-top-color: #ff6b00; }
.admin-stat-card.confirmed { border-top-color: #0284c7; }
.admin-stat-card.completed { border-top-color: #22c55e; }

.admin-stat-card small {
    font-size: 11px;
    color: #64748b;
    text-transform: uppercase;
    font-weight: 600;
}

.admin-stat-card h3 {
    font-size: 28px;
    color: #06296b;
    margin: 6px 0 0 0;
}

/* TABLE SECTION */
.admin-card {
    background: #ffffff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.admin-card h3 {
    margin: 0 0 18px 0;
    color: #06296b;
    font-size: 18px;
}

.table-responsive {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

.admin-table th, .admin-table td {
    padding: 12px 14px;
    text-align: left;
    border-bottom: 1px solid #f1f5f9;
}

.admin-table th {
    background: #f8fafc;
    color: #475569;
    font-weight: 600;
}

.price-highlight {
    color: #ff6b00;
}

.admin-status-form {
    display: flex;
    gap: 6px;
}

.admin-select {
    padding: 6px 8px;
    border-radius: 6px;
    border: 1px solid #cbd5e1;
    font-size: 12px;
    outline: none;
}

.btn-update {
    background: #0b4dbb;
    color: #ffffff;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    cursor: pointer;
    font-weight: 600;
}

.btn-update:hover {
    background: #06296b;
}


/* ==========================================
   AUTHENTICATION & LOGIN FORM STYLES
========================================== */

/* HEADER LAYOUT */
.booking-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    margin-bottom: 20px;
}

.booking-header h2 {
    font-size: 20px;
    font-weight: 700;
    color: #06296b;
    margin: 0;
}

.back-btn {
    text-decoration: none;
    font-size: 20px;
    color: #06296b;
    font-weight: 600;
}

/* AUTH CONTAINER & FORM */
.auth-container {
    padding: 10px 5px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: #334155;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    background-color: #edf4ff;
    border-radius: 10px;
    font-size: 14px;
    color: #1e293b;
    box-sizing: border-box;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus {
    border-color: #0b4dbb;
    background-color: #ffffff;
}

/* BUTTON STYLES */
.btn-primary-block {
    width: 100%;
    background: #ff6b00;
    color: #ffffff;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s ease;
}

.btn-primary-block:hover {
    background: #e05d00;
}

/* ALERT MESSAGES */
.auth-alert {
    padding: 12px;
    border-radius: 10px;
    font-size: 13px;
    text-align: center;
    margin-bottom: 15px;
    font-weight: 500;
}

.auth-alert.success {
    background: #d1e7dd;
    color: #0f5132;
    border: 1px solid #badbcc;
}

.auth-alert.error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

/* FOOTER REGISTRATION LINK */
.auth-footer-link {
    text-align: center;
    margin-top: 24px;
    font-size: 13px;
    color: #64748b;
}

.auth-footer-link a {
    color: #0b4dbb;
    font-weight: 600;
    text-decoration: none;
}


.logout-btn {
    padding: 8px 14px;
    background-color: #ef4444;
    color: #ffffff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: background-color 0.2s ease;
}

.logout-btn:hover {
    background-color: #dc2626;
}


