/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-blue: #2563EB;
    --text-dark: #1F2937;
    --text-medium: #374151;
    --text-light: #6B7280;
    --bg-white: #FFFFFF;
    --bg-light: #F3F4F6;
    --bg-grey: #E5E7EB;
    --border-color: #E5E7EB;
    --star-yellow: #FBBF24;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    gap: 1.5rem;
    min-height: 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo-image {
    width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 12px;
    transition: transform 0.3s ease;
}



.logo-text h2 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.logo-text .tagline {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu li {
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 8px;
    position: relative;
    white-space: nowrap;
}

.nav-link span {
    display: inline-block;
}

.nav-link .nav-icon {
    width: 18px;
    height: 18px;
    stroke-width: 2;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.05);
}

.nav-link:hover .nav-icon {
    transform: translateY(-1px);
}

.nav-link.active {
    color: var(--primary-blue);
    background: rgba(37, 99, 235, 0.1);
}

.login-btn {
    padding: 10px 24px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
    flex-shrink: 0;
}

.login-btn .btn-icon {
    width: 18px;
    height: 18px;
    stroke-width: 1.5;
}

.login-btn:hover {
    background: #1D4ED8;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transform: translateY(-1px);
}

.login-btn:active {
    transform: translateY(0);
}

/* Login in toggle menu: hide on desktop, show only in mobile menu - 2025-02-21 */
.nav-menu-login-item {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    padding: 8px;
    border-radius: 6px;
    transition: var(--transition);
}

.hamburger:hover {
    background: rgba(37, 99, 235, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Hero Section */
.hero {
    padding: 140px 0 10px;
    background: linear-gradient(135deg, #F8FAFC 0%, #FFFFFF 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    padding-right: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.hero-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Web: buttons in one row; mobile stacks via media query - 2025-02-21 */
.hero-buttons-stacked {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.hero-buttons-stacked .btn-cta {
    min-width: 200px;
    justify-content: center;
    padding: 14px 24px;
}

.btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

a.btn {
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--text-dark);
}

.btn-outline:hover {
    background: var(--bg-light);
}

.btn-dark {
    background: var(--text-dark);
    color: white;
}

.btn-dark:hover {
    background: var(--text-medium);
}

/* Hero Carousel */
.hero-right {
    position: relative;
}

.hero-carousel {
    position: relative;
}

.carousel-slide {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
}

.car-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--bg-light);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.car-image:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.car-img:hover {
    transform: scale(1.08);
}

/* Image loading effect */
.car-img {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.carousel-slide {
    display: none;
}

.carousel-slide.active {
    display: block;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-grey);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-blue);
}

/* About Company Section */
.about-company {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
    position: relative;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.van-carousel {
    position: relative;
}

.van-slide {
    display: none;
    width: 100%;
}

.van-slide.active {
    display: block;
}

.van-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.van-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--bg-grey);
    cursor: pointer;
    transition: var(--transition);
}

.van-dot.active {
    background: var(--primary-blue);
    transform: scale(1.2);
}

.company-image {
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.company-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.company-image:hover::before {
    opacity: 1;
}

.company-image:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

.about-car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 24px;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.about-car-img:hover {
    transform: scale(1.08);
}

/* Image loading effect */
.about-car-img {
    animation: fadeIn 0.5s ease-in;
}

.about-text .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.about-text p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Services Section */
.services-section {
   
    background: var(--bg-white);
}

/* .services-container {
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 50px 40px;
    background: var(--bg-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
} */

.agencies-content{
    border-radius: 40px;
    border: 0px solid #d0d6e4;
    border-color: #3e4958;
}
.start-journey {
    padding: 60px 0;
    background: var(--bg-white);
    border-radius: 50%;
}
/* .services-container {
    padding: 60px 50px; 
    background: #ffffff;
    border-radius: 32px;
    border-top: 4px solid #2563EB;
    border-right: 4px solid #2563EB;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
} */

.services-container {
    padding: 30px 50px;
    background: #ffffff;
    border-radius: 32px;
    border: 2px solid #d0d6e4;
    /* border-right: 4px solid #2563EB; */
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}
.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 45px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    align-items: start;
}

.service-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
    padding: 20px;
}

.service-item:hover {
    transform: translateY(-5px);
}

.service-icon-box {
    width: 90px;
    height: 90px;
    background: var(--bg-white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 15px;
}

.service-icon-box:hover {
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.15);
    transform: translateY(-5px);
}

.service-icon-box svg,
.service-icon-box .service-icon-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    display: block;
}

.service-item p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    max-width: 160px;
    transition: color 0.3s ease;
}

.service-item:hover p {
    color: var(--primary-blue);
}

/* Feedback Section */
.feedback-section {
    padding: 80px 0;
    /* background: var(--bg-light); */
}

.feedback-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.feedback-left .section-title {
    margin-bottom: 1rem;
}

.feedback-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #2563eb;
    background: white;
    color :white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(245, 158, 11, 0.2);
}

.carousel-btn.next-btn {
    background-color: #2563eb;
    color: white;
    border: none;
   
}

.carousel-btn:hover {
    
    border-color: #2563eb;
    color: white;
  
   
}

.carousel-btn.next-btn:hover {
    background: #2563eb;
   
    
}

.testimonial-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 20px;
}

.testimonial-info {
    display: flex;
    gap: 15px;
    align-items: start;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-avatar svg circle:first-child {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.testimonial-card:hover .testimonial-avatar {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.testimonial-card:hover .testimonial-avatar svg circle:first-child {
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.testimonial-info h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.testimonial-info p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars .star {
    color: var(--star-yellow);
    font-size: 1.2rem;
}

.quote-icon {
    flex-shrink: 0;
    opacity: 1;
    filter: drop-shadow(0 2px 4px rgba(16, 185, 129, 0.3));
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1rem;
}

/* Why Choose Us Section */
.why-choose-us {
   
    background: var(--bg-white);
}


.why-choose-container {
    border-radius: 32px;
    padding: 30px 50px;
    background: #ffffff;
    border: 2px solid #d0d6e4;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
}




.features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    
}

.feature-card {
    background: transparent;
    padding: 20px;
    text-align: center;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 15px;
}

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

.feature-icon svg {
    width: 50px;
    height: 50px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
    line-height: 1.5;
    max-width: 160px;
    transition: color 0.3s ease;
}

.feature-card:hover p {
    color: var(--primary-blue);
}

/* Top Agencies Section */
.top-agencies {
    padding: 80px 0;
    background: var(--bg-white);
}

.agencies-header {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

.agencies-header .section-title {
    margin-bottom: 0;
    line-height: 1.2;
}

.agencies-header .verified-badge {
    flex-shrink: 0;
    display: block;
    align-self: center;
    vertical-align: middle;
}
.container{
    max-width: 1360px !important;
}

.agencies-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 24px;
}

.agency-card {
    background: var(--bg-white);
    padding: 14px 16px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.agency-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.agency-avatar {
    width: 64px;
    height: 64px;
    margin: 0 auto 8px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.agency-avatar svg {
    width: 100%;
    height: 100%;
    display: block;
}

.agency-card:hover .agency-avatar {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.agency-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.agency-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.agency-stars span {
    color: var(--star-yellow);
    font-size: 1.1rem;
}

.agency-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 6px;
    color: var(--text-medium);
    font-weight: 500;
}

.agency-stats {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Start Journey Section */
.start-journey {
    padding: 60px 0;
    background: var(--bg-white);
}

.journey-content {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
}

.journey-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    max-width: 600px;
}

.journey-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.journey-buttons .btn {
    padding: 12px 24px;
    min-width: 200px;
}

/* Footer */
.footer {
    background: var(--bg-white);
    padding: 60px 0 20px;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column:first-child {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    flex-shrink: 0;
}

.footer-logo-image {
      width: 100px;
    height: 100px;
    object-fit: contain;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

.footer-logo:hover .footer-logo-icon img {
    transform: scale(1.05);
}

.footer-logo-text h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.2;
}

.footer-logo-text .tagline {
    color: var(--text-light);
    font-size: 0.75rem;
    font-weight: 400;
    margin: 0;
}

.footer-description {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-icon:hover {
    background: #1D4ED8;
    transform: translateY(-3px);
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-blue);
    padding-left: 5px;
}

.footer-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.info-icon {
    flex-shrink: 0;
}

.footer-support {
    color: var(--text-light);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-legal a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

.separator {
    color: var(--text-light);
}

/* Error States */
.form-group input.error,
.form-group textarea.error,
.form-input.error {
    border-color: #EF4444;
}

.form-group input.error:focus,
.form-group textarea.error:focus,
.form-input.error:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.error-message {
    color: #EF4444;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .agencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* ========== Start: Mobile – Login in toggle menu, Logo left align - 2025-02-21 ========== */
@media (max-width: 768px) {
    /* Fix: full width layout, no content pushed left / right white space - 2025-02-21 */
    body {
        overflow-x: hidden;
        width: 100%;
    }

    section {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Hide Login from header on mobile; show only inside toggle menu - 2025-02-21 */
    .nav-wrapper > .login-btn {
        display: none !important;
    }

    .hamburger {
        display: flex;
        order: 2;
        margin-left: auto;
        min-width: 48px;
        justify-content: flex-end;
    }

    .nav-wrapper {
        gap: 0;
        min-height: 52px;
        padding: 6px 12px;
        position: relative;
        justify-content: space-between;
        align-items: center;
    }

    /* Logo left align on mobile (where Login was) - 2025-02-21 */
    .nav-wrapper .logo {
        order: 1;
        position: relative;
        left: auto;
        transform: none;
        z-index: 1;
    }

    /* Mobile logo size - 2025-02-21 */
    .logo-image {
        width: 72px;
        height: 72px;
    }

    .logo-text h2 {
        font-size: 1.55rem;
    }

    .logo-text .tagline {
        font-size: 0.88rem;
    }

    /* Show Login inside toggle menu – small button below Contact, left aligned - 2025-02-21 */
    .nav-menu .nav-menu-login-item {
        display: list-item;
        list-style: none;
        margin-top: 10px;
        padding-top: 12px;
        border-top: 1px solid var(--border-color, #e5e7eb);
        text-align: left;
    }

    .nav-menu .menu-login-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        padding: 8px 16px;
        background: var(--primary-blue);
        color: white;
        border-radius: 8px;
        font-weight: 600;
        font-size: 0.9rem;
        text-decoration: none;
        width: auto;
        justify-content: flex-start;
        box-sizing: border-box;
        transition: var(--transition);
    }

    .nav-menu .menu-login-btn .btn-icon {
        width: 18px;
        height: 18px;
    }

    .nav-menu .menu-login-btn:hover {
        background: #1D4ED8;
        color: white;
    }
    /* ========== End: Mobile – Login in toggle menu, Logo left align - 2025-02-21 ========== */

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        transition: var(--transition);
        align-items: flex-start;
        gap: 0.5rem;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
        justify-content: flex-start;
    }

    .nav-link .nav-icon {
        width: 20px;
        height: 20px;
    }

    .login-btn {
        padding: 8px 16px;
        font-size: 0.9rem;
    }

    .login-btn .btn-icon {
        width: 16px;
        height: 16px;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* Mobile: content & buttons on top, image below - 2025-02-21 */
    .hero-left {
        order: -1;
    }

    .hero-right {
        order: 1;
    }

    .car-image {
        aspect-ratio: 16/10;
        border-radius: 16px;
    }

    /* Your Journey, Our Responsibility – same as web (two lines), no side white space - 2025-02-21 */
    .hero-title {
        font-size: 1.85rem;
        line-height: 1.15;
    }

    /* Fix: content full width, no right white space on mobile - 2025-02-21 */
    .hero .container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-left {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }

    .hero-title,
    .hero-subtitle,
    .hero-description {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-buttons-stacked .btn-cta {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    /* Mobile: About section – content on top, image below - 2025-02-21 */
    .about-text {
        order: -1;
    }

    .about-image {
        order: 1;
    }

    /* About section: remove white space, one-line title, Learn more button - 2025-02-21 */
    .about-company {
        padding: 36px 0 44px;
    }

    .about-company .container {
        padding-left: 10px;
        padding-right: 10px;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
    }

    .about-wrapper {
        gap: 28px;
    }

    .about-text .section-title {
        font-size: 1.4rem;
        white-space: nowrap;
        margin-bottom: 0.75rem;
        margin-top: 0;
    }

    .about-text p {
        margin-bottom: 0.85rem;
    }

    .about-text .btn-primary,
    .about-text .btn.btn-primary {
        display: block;
        width: 100%;
        max-width: 100%;
        text-align: center;
        padding: 14px 24px;
        font-size: 1.05rem;
        margin-top: 0.5rem;
    }

    .company-image {
        aspect-ratio: 16/10;
        border-radius: 20px;
    }

    .services-container {
        padding: 40px 20px;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .service-icon-box {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-box svg {
        width: 45px;
        height: 45px;
    }
    
    .service-item p {
        font-size: 0.9rem;
        max-width: 120px;
    }

    .feedback-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-choose-container {
        padding: 40px 25px;
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .feature-icon {
        width: 75px;
        height: 75px;
        padding: 12px;
    }
    
    .feature-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .feature-card p {
        font-size: 0.9rem;
        max-width: 120px;
    }

    .agencies-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Content alignment mobile – full width, no right white space, even padding - 2025-02-21 */
    .container {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
        box-sizing: border-box;
    }

    .section-title.centered {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    section .container {
        display: block;
    }

    .journey-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .journey-buttons {
        width: 100%;
        justify-content: center;
    }

    .journey-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-column:first-child {
        max-width: 100%;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .hero .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-title {
        font-size: 1.55rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    /* About: one-line title, less padding - 2025-02-21 */
    .about-company {
        padding: 28px 0 36px;
    }

    .about-company .container {
        padding-left: 8px;
        padding-right: 8px;
    }

    .about-text .section-title {
        font-size: 1.35rem;
    }

    .about-text .btn-primary,
    .about-text .btn.btn-primary {
        padding: 16px 20px;
        font-size: 1.1rem;
    }

    .logo-image {
        width: 40px;
        height: 40px;
    }

    .nav-wrapper {
        min-height: 35px;
    }

    .footer-logo-image {
        width: 36px;
        height: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .service-icon-box {
        width: 75px;
        height: 75px;
        padding: 12px;
    }
    
    .service-icon-box svg {
        width: 45px;
        height: 45px;
    }
    
    .service-item p {
        font-size: 0.85rem;
        max-width: 100px;
    }

    .why-choose-container {
        padding: 35px 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .feature-icon {
        width: 65px;
        height: 65px;
    }
    
    .feature-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .feature-card p {
        font-size: 0.85rem;
        max-width: 100px;
    }

    .agencies-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        gap: 30px;
    }
}

/* ========================================
   LOGIN PAGE STYLES (from login.css)
   ======================================== */

/* Login Page Specific Styles */
.login-page {
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #FFFFFF;
    display: flex;
    flex-direction: column;
    position: relative;
}

.login-page .navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 10;
    padding: 0.5rem 0;
}

.login-page .nav-wrapper {
    padding: 0.5rem 0;
}

.back-home-btn {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 6px;
}

.back-home-btn:hover {
    background: var(--bg-light);
    color: var(--primary-blue);
}

/* Login Container */
.login-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    position: relative;
    z-index: 1;
    overflow-y: auto;
    max-height: calc(100vh - 70px);
}

.login-wrapper {
    width: 100%;
    max-width: 440px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 35px 35px 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Login Header */
.login-header {
    text-align: center;
    margin-bottom: 25px;
}

.login-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.login-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
    font-weight: 500;
}

/* User Type Selector */
.user-type-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 25px;
    background: var(--bg-light);
    padding: 4px;
    border-radius: 10px;
}

.user-type-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    color: var(--text-dark);
}

.user-type-btn svg {
    width: 18px;
    height: 18px;
}

.user-type-btn.active {
    background: var(--bg-white);
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    transform: scale(1.02);
}

.user-type-btn:not(.active) {
    background: var(--text-dark);
    color: var(--bg-white);
}

.user-type-btn:hover:not(.active) {
    background: var(--text-medium);
    transform: scale(1.02);
}

/* Login Form */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.2px;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.form-input {
    width: 100%;
    padding: 12px 42px 12px 14px;
    border: 1.5px solid var(--border-color);
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-input:hover {
    border-color: #D1D5DB;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-input.error {
    border-color: #EF4444;
}

.form-input.error:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.form-input::placeholder {
    color: var(--text-light);
}

.input-icon {
    position: absolute;
    right: 14px;
    pointer-events: none;
    opacity: 0.6;
}

.password-toggle {
    position: absolute;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: all 0.2s ease;
    border-radius: 4px;
}

.password-toggle:hover {
    color: var(--text-dark);
    background: var(--bg-light);
}

.eye-icon {
    pointer-events: none;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -3px;
    margin-bottom: 5px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.checkbox-input {
    display: none;
}

.checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    position: relative;
}

.checkbox-input:checked + .checkbox-custom {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
}

.checkbox-input:checked + .checkbox-custom::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.checkbox-text {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

.forgot-password-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.2s ease;
}

.forgot-password-link:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Login Submit Button */
.login-submit-btn {
    width: 100%;
    padding: 14px;
    background: var(--text-dark);
    color: var(--bg-white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 5px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.3px;
}

.login-submit-btn:hover {
    background: var(--text-medium);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.login-submit-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Sign Up Link */
.signup-link {
    text-align: center;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-color);
}

.signup-link p {
    color: var(--text-dark);
    font-size: 0.9rem;
    margin: 0;
}

.signup-text {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.2s ease;
}

.signup-text:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

/* Login Page Responsive Design */
@media (max-width: 768px) {
    .login-page {
        height: 100vh;
        overflow-y: auto;
    }

    .login-container {
        padding: 15px;
        max-height: calc(100vh - 60px);
        align-items: flex-start;
        padding-top: 30px;
    }

    .login-wrapper {
        padding: 30px 25px 25px;
        border-radius: 20px;
        max-width: 420px;
    }

    .login-title {
        font-size: 1.75rem;
    }

    .login-subtitle {
        font-size: 0.85rem;
    }

    .user-type-btn {
        padding: 9px 14px;
        font-size: 0.85rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .login-wrapper {
        padding: 28px 22px 22px;
        border-radius: 18px;
    }

    .login-title {
        font-size: 1.6rem;
    }

    .login-subtitle {
        font-size: 0.8rem;
    }

    .user-type-btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        gap: 5px;
    }

    .user-type-btn svg {
        width: 16px;
        height: 16px;
    }

    .form-input {
        padding: 11px 38px 11px 12px;
        font-size: 0.9rem;
    }

    .login-submit-btn {
        padding: 13px;
        font-size: 0.95rem;
    }

    .form-options {
        gap: 10px;
    }
}

@media (max-height: 700px) {
    .login-wrapper {
        padding: 25px 30px 20px;
    }

    .login-header {
        margin-bottom: 20px;
    }

    .login-title {
        font-size: 1.75rem;
        margin-bottom: 4px;
    }

    .login-subtitle {
        font-size: 0.85rem;
    }

    .user-type-selector {
        margin-bottom: 20px;
    }

    .login-form {
        gap: 15px;
    }

    .signup-link {
        margin-top: 15px;
        padding-top: 15px;
    }
}

/* ========================================
   REGISTRATION PAGE STYLES (from registration.css)
   ======================================== */

/* Registration Page Styles */
.registration-page {
    min-height: 100vh;
    padding-bottom: 2rem;
    position: relative;
    overflow-x: hidden;
}

.registration-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.registration-container {
    max-width: 1375px;
    margin: 5rem auto;
    padding: 0 1rem;
    position: relative;
    z-index: 1;
}

.registration-wrapper {
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 3rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.registration-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
}

/* Progress Bar */
.progress-bar {
    margin-bottom: 1rem;
    position: relative;
}

.progress-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
   
    gap: 0;
    position: relative;
    padding: 0;
}

.progress-step {
    flex: 1;
    min-width: 100px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    z-index: 1;
}

.progress-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 24px;
    left: 48px;
    width: calc(100% - 48px);
    height: 2px;
    background: #E5E7EB;
    z-index: 0;
}

.progress-step.completed:not(:last-child)::after {
    background: #2563EB;
}

.progress-step.active:not(:last-child)::after {
    background: #2563EB;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #9CA3AF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
    margin: 0 auto 0.75rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: 2px solid #E5E7EB;
}

.progress-step.active .step-number {
    background: white;
    border: 2px solid #2563EB;
    color: #2563EB;
}

.progress-step.completed .step-number {
    background: #2563EB;
    color: white;
    border: 2px solid #2563EB;
    font-size: 0;
}

.progress-step.completed .step-number::after {
    content: '✓';
    position: absolute;
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    line-height: 1;
}

.step-label {
    font-size: 0.8rem;
    color: #9CA3AF;
    font-weight: 500;
    transition: all 0.3s ease;
}

.progress-step.active .step-label {
    color: #1F2937;
    font-weight: 500;
}

.progress-step.completed .step-label {
    color: #2563EB;
    font-weight: 500;
}

.progress-line {
    display: none;
}

.progress-fill {
    display: none;
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeIn 0.3s ease;
    position: relative;
}

.form-step.active {
    display: block;
    animation: slideInUp 0.5s ease;
}

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

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

.form-step::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

/* .form-step::after {
    content: '';
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
} */

.form-section > * {
    position: relative;
    z-index: 1;
}

.step-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #F3F4F6;
    position: relative;
}

.step-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.step-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
}

.step-description {
    color: #6B7280;
    font-size: 1rem;
    line-height: 1.6;
}

/* Form Sections */
.form-section {
    margin-bottom: 1.5rem;
}

.section-label {
    display: block;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    letter-spacing: -0.2px;
    position: relative;
    padding-left: 1.5rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

/* Business Type Selector */
.business-type-selector {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.business-type-btn {
    flex: 1;
    padding: 1.25rem 1.5rem;
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 600;
    color: #6B7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.business-type-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.1), transparent);
    transition: left 0.5s ease;
}

.business-type-btn:hover::before {
    left: 100%;
}

.business-type-btn:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.15);
}

.business-type-btn.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    color: #667eea;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
    transform: translateY(-2px);
}

.business-type-btn svg {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.business-type-btn.active svg {
    transform: scale(1.1);
}

/* Vehicle Filter Tabs */
.vehicle-filter-tabs {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
    background: #F9FAFB;
    padding: 0.5rem;
    border-radius: 12px;
}

.filter-tab {
    padding: 0.875rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 10px;
    background: white;
    cursor: pointer;
    font-weight: 600;
    color: #6B7280;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.filter-tab:hover {
    border-color: #667eea;
    color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.2);
}

.filter-tab.active {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
    transform: translateY(-2px);
}

.info-icon {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.filter-tab.active .info-icon {
    opacity: 1;
}

/* Vehicle Cards Grid */
.vehicle-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.vehicle-card {
    border: 2px solid #E5E7EB;
    border-radius: 16px;
    padding: 1.5rem;
    background: white;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vehicle-card:hover::before {
    opacity: 1;
}

.vehicle-card:hover {
    border-color: #667eea;
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
    transform: translateY(-4px);
}

.vehicle-card.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.vehicle-card.selected::before {
    opacity: 1;
}

.vehicle-checkbox {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 28px;
    height: 28px;
    border: 2px solid #D1D5DB;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.vehicle-card:hover .vehicle-checkbox {
    border-color: #667eea;
}

.vehicle-card.selected .vehicle-checkbox {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
    transform: scale(1.1);
}

.vehicle-card.selected .vehicle-checkbox::after {
    content: '✓';
    color: white;
    font-weight: bold;
    font-size: 16px;
    animation: checkmark 0.3s ease;
}

@keyframes checkmark {
    0% { transform: scale(0) rotate(-180deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.vehicle-image {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    transition: transform 0.3s ease;
}

.vehicle-card:hover .vehicle-image {
    transform: scale(1.05);
}

.vehicle-name {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.vehicle-card.selected .vehicle-name {
    color: #667eea;
}

.vehicle-description {
    font-size: 0.875rem;
    color: #6B7280;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* Service Areas */
.service-areas-container,
.custom-destinations-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-areas-container input,
.custom-destinations-container input {
    flex: 1;
}

.btn-add {
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
    white-space: nowrap;
}

.btn-add:hover {
    box-shadow: 0 6px 18px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.service-areas-list,
.custom-destinations-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.area-tag,
.destination-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    color: #667eea;
    border-radius: 24px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.15);
    transition: all 0.3s ease;
}

.area-tag:hover,
.destination-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
}

.area-tag button,
.destination-tag button {
    background: none;
    border: none;
    color: #2563EB;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 0.5rem;
}

.destination-checkbox {
    display: flex;
    align-items: center;
    padding: 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.destination-checkbox:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
}

.destination-checkbox input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.destination-checkbox input[type="checkbox"]:checked + span {
    color: #2563EB;
    font-weight: 600;
}

.destination-checkbox:has(input[type="checkbox"]:checked) {
    border-color: #667eea;
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

/* Country Selection List */
.country-list-container {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.country-item {
    position: relative;
}

.country-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    user-select: none;
}

.country-checkbox-label:hover {
    background: #F9FAFB;
}

.country-checkbox {
    display: none;
}

.checkbox-custom-country {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    position: relative;
}

.country-checkbox:checked + .checkbox-custom-country {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.country-checkbox:checked + .checkbox-custom-country::after {
    content: '';
    width: 5px;
    height: 9px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.country-name {
    font-size: 0.95rem;
    color: #1F2937;
    font-weight: 500;
    transition: color 0.3s ease;
}

.country-checkbox:checked ~ .country-name {
    color: #667eea;
    font-weight: 600;
}

.country-checkbox-label:has(.country-checkbox:checked) {
    background: #F9FAFB;
}

/* Base Locations Container */
.base-locations-container {
    display: none;
    margin-top: 0.75rem;
    margin-left: 2.75rem;
    background: #F9FAFB;
    border-radius: 12px;
    padding: 1.25rem;
    border: 1px solid #E5E7EB;
    animation: fadeIn 0.3s ease;
}

.country-checkbox:checked ~ .base-locations-container,
.country-item:has(.country-checkbox:checked) .base-locations-container {
    display: block;
}

.base-locations-header {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.base-locations-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
}

.location-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 8px;
    user-select: none;
    background: transparent;
    white-space: nowrap;
}

.location-checkbox-label:hover {
    background: rgba(102, 126, 234, 0.05);
}

.location-checkbox {
    display: none;
}

.checkbox-custom-location {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    position: relative;
}

.location-checkbox:checked + .checkbox-custom-location {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.location-checkbox:checked + .checkbox-custom-location::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.location-name {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-checkbox:checked ~ .location-name {
    color: #667eea;
    font-weight: 600;
}

.location-checkbox-label:has(.location-checkbox:checked) {
    background: rgba(102, 126, 234, 0.1);
}

/* Destinations Countries Container */
.destinations-countries-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.no-countries-message {
    text-align: center;
    padding: 2rem;
    color: #6B7280;
    font-size: 0.95rem;
}

/* Destination Country Card */
.destination-country-card {
    background: white;
    border-radius: 12px;
    border: 1px solid #E5E7EB;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.destination-country-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #E5E7EB;
    background: #F9FAFB;
}

.destination-country-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
}

.destination-country-content {
    padding: 1.5rem;
}

.destinations-header {
    margin-bottom: 1rem;
}

.destinations-subtitle {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.destinations-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.select-all-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    cursor: pointer;
    user-select: none;
}

.select-all-checkbox {
    display: none;
}

.select-all-checkbox:checked + .checkbox-custom-destination {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.select-all-checkbox:checked + .checkbox-custom-destination::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.select-all-text {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
}

.select-all-checkbox-label:has(.select-all-checkbox:checked) .select-all-text {
    color: #667eea;
    font-weight: 600;
}

.destinations-search-wrapper {
    position: relative;
    flex: 1;
    max-width: 300px;
    min-width: 200px;
}

.destinations-search-input {
    width: 100%;
    padding: 0.625rem 2.5rem 0.625rem 0.875rem;
    border: 1px solid #D1D5DB;
    border-radius: 8px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    background: white;
    color: #1F2937;
}

.destinations-search-input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.destinations-search-input::placeholder {
    color: #9CA3AF;
}

.search-icon {
    position: absolute;
    right: 0.875rem;
    top: 50%;
    transform: translateY(-50%);
    color: #9CA3AF;
    pointer-events: none;
}

.destinations-counter {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 1rem;
}

.destinations-counter strong {
    color: #1F2937;
    font-weight: 600;
}

.destinations-list-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 0.5rem;
}

.destinations-list-container::-webkit-scrollbar {
    width: 6px;
}

.destinations-list-container::-webkit-scrollbar-track {
    background: #F3F4F6;
    border-radius: 3px;
}

.destinations-list-container::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 3px;
}

.destinations-list-container::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

.destinations-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 0.75rem;
}

.destination-checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.625rem 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    border-radius: 6px;
    user-select: none;
    background: transparent;
}

.destination-checkbox-label:hover {
    background: #F3F4F6;
}

.destination-checkbox {
    display: none;
}

.checkbox-custom-destination {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    position: relative;
}

.destination-checkbox:checked + .checkbox-custom-destination {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.destination-checkbox:checked + .checkbox-custom-destination::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.destination-name {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 400;
    transition: color 0.3s ease;
}

.destination-checkbox:checked ~ .destination-name {
    color: #667eea;
    font-weight: 500;
}

.destination-checkbox-label:has(.destination-checkbox:checked) {
    background: rgba(102, 126, 234, 0.05);
}

/* Working Days Container */
.working-days-container {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.day-checkbox {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    user-select: none;
    flex: 1;
    min-width: 100px;
    justify-content: center;
}

.day-checkbox:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.day-checkbox input[type="checkbox"] {
    display: none;
}

.checkbox-custom-day {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
    position: relative;
}

.day-checkbox input[type="checkbox"]:checked + .checkbox-custom-day {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.day-checkbox input[type="checkbox"]:checked + .checkbox-custom-day::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    position: absolute;
}

.day-checkbox:has(input[type="checkbox"]:checked) {
    border-color: #667eea;
    background: white;
    box-shadow: 0 0 0 2px rgba(102, 126, 234, 0.1);
}

.day-checkbox input[type="checkbox"]:checked ~ span {
    color: #374151;
    font-weight: 500;
}

.day-checkbox span:last-child {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 400;
    transition: color 0.3s ease;
}

/* Time Range */
.time-range-container {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.time-input-group {
    flex: 1;
}

.time-input-group label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: -0.1px;
}

/* Form Label (General) */
.registration-page .form-label {
    display: block;
    font-weight: 600;
    color: #374151;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    letter-spacing: -0.1px;
}

.required-asterisk {
    color: #EF4444;
}

/* Form Section Group */
.form-section-group {
    margin-bottom: 3rem;
}

.form-section-group:last-child {
    margin-bottom: 0;
}

.form-section {
    margin-bottom: 1.5rem;
}

.form-section:last-child {
    margin-bottom: 0;
}

.section-group-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #E5E7EB;
}

/* Form Select */
.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.875rem center;
    background-size: 12px;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-select:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
}

/* Form Hint */
.form-hint {
    font-size: 0.875rem;
    color: #6B7280;
    margin-top: 0.5rem;
    line-height: 1.5;
}

/* Checkbox Label Inline */
.checkbox-label-inline {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.checkbox-label-inline .checkbox-custom {
    width: 18px;
    height: 18px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    background: white;
}

.checkbox-label-inline input[type="checkbox"] {
    display: none;
}

.checkbox-label-inline input[type="checkbox"]:checked + .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 6px rgba(102, 126, 234, 0.3);
}

.checkbox-label-inline input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '';
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-label-inline .checkbox-text {
    font-size: 0.875rem;
    color: #374151;
    font-weight: 400;
}

/* Phone Input Group */
.phone-input-group {
    display: flex;
    gap: 0.75rem;
}

.phone-country-code {
    flex: 0 0 100px;
    padding-right: 2.5rem;
}

.phone-number-input {
    flex: 1;
}

/* Phone Input Wrapper (Dropdown on Left) */
.phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 0.5rem;
    width: 100%;
}

.phone-input-wrapper .phone-number-input {
    flex: 1;
    width: 100%;
    min-width: 0;
}

.country-code-dropdown-wrapper {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
    width: 160px;
}

.phone-country-code-dropdown {
    width: 100%;
    padding: 0.875rem 1.5rem 0.875rem 0.75rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    background: white;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23374151' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    cursor: pointer;
    color: #374151;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.phone-country-code-dropdown:hover {
    border-color: #667eea;
}

.phone-country-code-dropdown:focus {
    outline: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23667eea' d='M6 3L11 8H1z'/%3E%3C/svg%3E");
}

.phone-country-code-dropdown:hover {
    color: #667eea;
}

.phone-country-code-dropdown option {
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #1F2937;
    background: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.phone-country-code-dropdown option:hover {
    background: #F9FAFB;
}

/* File Upload Container */
.file-upload-container {
    position: relative;
}

.file-upload-area {
    border: 2px dashed #D1D5DB;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    background: #F9FAFB;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.file-upload-area:hover {
    border-color: #667eea;
    background: #F3F4F6;
}

.file-upload-area.drag-over {
    border-color: #667eea;
    background: #EEF2FF;
}

.upload-icon {
    color: #9CA3AF;
    width: 48px;
    height: 48px;
}

.file-upload-area:hover .upload-icon,
.file-upload-area.drag-over .upload-icon {
    color: #667eea;
}

.upload-text {
    font-size: 0.9rem;
    color: #374151;
    font-weight: 500;
    margin: 0;
}

.upload-hint {
    font-size: 0.75rem;
    color: #6B7280;
    margin: 0;
}

.file-input {
    display: none;
}

.btn-choose-file {
    margin-top: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: #374151;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-choose-file:hover {
    background: #1F2937;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(55, 65, 81, 0.3);
}

.file-upload-container {
    display: flex;
    flex-direction: column;
}

.file-name-display {
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: #10B981;
    font-weight: 500;
}

/* Contact Row */
.contact-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 0.5rem;
}

/* Form Row 2 Columns */
.form-row-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Form Row 3 Columns */
.form-row-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Form Separator */
.form-separator {
    height: 1px;
    background: #E5E7EB;
    margin: 2rem 0;
    width: 100%;
}

/* Confirmation Title */
.confirmation-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

/* Form Inputs */
.registration-page .form-input,
.registration-page .form-textarea {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #E5E7EB;
    border-radius: 12px;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    background: white;
    color: #1F2937;
}

.registration-page .form-input:hover,
.registration-page .form-textarea:hover {
    border-color: #D1D5DB;
}

.registration-page .form-input:focus,
.registration-page .form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    transform: translateY(-1px);
}

.registration-page .form-input::placeholder,
.registration-page .form-textarea::placeholder {
    color: #9CA3AF;
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Checkbox */
.registration-page .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
}

.registration-page .checkbox-input {
    display: none;
}

.registration-page .checkbox-custom {
    width: 20px;
    height: 20px;
    border: 2px solid #D1D5DB;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.registration-page .checkbox-input:checked + .checkbox-custom {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-color: #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

.registration-page .checkbox-input:checked + .checkbox-custom::after {
    content: '✓';
    color: white;
    font-size: 14px;
    font-weight: bold;
}

.registration-page .checkbox-text {
    color: #374151;
    font-size: 0.9rem;
}

.link-text {
    color: #667eea;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.link-text:hover {
    color: #764ba2;
}

/* Form Navigation */
.form-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #F3F4F6;
    flex-wrap: wrap;
    gap: 1rem;
    position: relative;
}

.form-navigation::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.nav-buttons-right {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Registration Buttons */
.registration-page .btn {
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.registration-page .btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.registration-page .btn:hover::before {
    width: 300px;
    height: 300px;
}

.registration-page .btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
}

.registration-page .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
    transform: translateY(-2px);
}

.registration-page .btn-primary:active {
    transform: translateY(0);
}

.registration-page .btn-secondary {
    background: linear-gradient(135deg, #6B7280 0%, #4B5563 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(107, 114, 128, 0.3);
}

.registration-page .btn-secondary:hover {
    box-shadow: 0 6px 18px rgba(107, 114, 128, 0.4);
    transform: translateY(-2px);
}

.registration-page .btn-outline {
    background: white;
    color: #667eea;
    border: 2px solid #667eea;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.1);
}

.registration-page .btn-outline:hover {
    background: linear-gradient(135deg, #EFF6FF 0%, #EDE9FE 100%);
    border-color: #764ba2;
    color: #764ba2;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.2);
}

.registration-page .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.registration-page .btn:disabled::before {
    display: none;
}

/* Registration Page Responsive – mobile - 2025-02-21 */
@media (max-width: 768px) {
    .registration-container {
        margin: 4rem 0 2rem;
        padding: 0 12px;
        max-width: 100%;
    }

    .registration-wrapper {
        padding: 1.25rem;
        border-radius: 16px;
    }

    .progress-bar {
        margin-bottom: 1.25rem;
    }

    .progress-steps {
        gap: 0.25rem;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .progress-step {
        min-width: 72px;
    }

    .progress-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }

    .step-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .step-header {
        margin-bottom: 1.25rem;
        padding-bottom: 1rem;
    }

    .step-title {
        font-size: 1.5rem;
        line-height: 1.2;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .form-section {
        margin-bottom: 1.25rem;
    }

    .section-label {
        font-size: 0.9rem;
    }

    .business-type-selector {
        flex-direction: column;
        gap: 0.75rem;
    }

    .business-type-btn {
        width: 100%;
        padding: 1rem 1rem;
        justify-content: flex-start;
    }

    .vehicle-filter-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }

    .filter-tab {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 1rem;
    }

    .vehicle-cards-grid {
        grid-template-columns: 1fr;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .working-days-container {
        gap: 0.625rem;
    }

    .day-checkbox {
        min-width: 90px;
        padding: 0.75rem 1rem;
    }

    .base-locations-container {
        margin-left: 1.5rem;
        padding: 1rem;
    }

    .time-range-container {
        flex-direction: column;
    }

    .contact-row {
        grid-template-columns: 1fr;
    }

    .form-navigation {
        flex-direction: column;
    }

    .nav-buttons-right {
        width: 100%;
        flex-direction: column;
    }

    .nav-buttons-right .btn {
        width: 100%;
    }

    .btn-secondary {
        width: 100%;
    }

    .registration-page .navbar .container {
        padding-left: 12px;
        padding-right: 12px;
    }

    .registration-page .nav-wrapper {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .back-home-btn {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .registration-container {
        margin: 3.5rem 0 1.5rem;
        padding: 0 10px;
        max-width: 100%;
    }

    .registration-wrapper {
        padding: 1rem;
        border-radius: 14px;
        padding-top: 30px;
    }

    .progress-bar {
        margin-bottom: 1rem;
    }

    .progress-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .progress-step {
        width: 100%;
        text-align: left;
        display: flex;
        align-items: center;
        gap: 0.75rem;
        min-width: 0;
        padding: 0.4rem 0;
    }

    .progress-step:not(:last-child)::after {
        display: none;
    }

    .step-number {
        margin: 0;
        flex-shrink: 0;
        width: 32px;
        height: 32px;
        font-size: 0.7rem;
    }

    .step-label {
        font-size: 0.8rem;
        flex: 1;
    }

    .step-title {
        font-size: 1.35rem;
    }

    .step-description {
        font-size: 0.85rem;
    }
    
    .section-label {
        padding-left: 1rem;
        font-size: 0.9rem;
    }
    
    .section-label::before {
        width: 3px;
        height: 16px;
    }

    .step-description {
        font-size: 0.85rem;
    }

    .destinations-grid,
    .working-days-container {
        flex-direction: column;
        gap: 0.625rem;
    }

    .day-checkbox {
        min-width: 100%;
        justify-content: flex-start;
    }

    .base-locations-container {
        margin-left: 1rem;
        padding: 1rem;
    }

    .country-checkbox-label {
        padding: 0.875rem 1rem;
    }

    .country-name {
        font-size: 0.9rem;
    }

    .base-locations-list {
        flex-direction: column;
        gap: 0.75rem;
    }

    .location-checkbox-label {
        padding: 0.75rem 0.875rem;
    }

    .location-name {
        font-size: 0.85rem;
    }

    .destinations-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .destinations-search-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .destinations-list {
        grid-template-columns: 1fr;
    }

    .destination-country-header {
        padding: 1rem;
    }

    .destination-country-content {
        padding: 1rem;
    }

    .destination-country-name {
        font-size: 1rem;
    }

    .registration-page .navbar .container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .back-home-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }
	
	.logoheight {
				height: 45px;
			}
	
	
	
}

/* ========================================
   DASHBOARD PAGE STYLES (from dashboard.css)
   ======================================== */

/* Dashboard Page Styles */
.dashboard-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    display: flex;
    flex-direction: column;
}

/* Header */
.dashboard-header {
    background: #FFFFFF;
    border-bottom: 1px solid #E5E7EB;
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.header-content {
    max-width: 100%;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: none;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #1F2937;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    transform: scale(1.05);
}

.mobile-menu-toggle.active {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.02);
}

.logo-icon-small {
    display: flex;
    align-items: center;
}

.logo-text-small {
    font-size: 1.25rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.header-icon-btn {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(135deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.header-icon-btn:hover {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.header-icon-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.profile-dropdown {
    position: relative;
}

.profile-btn {
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    overflow: visible;
    position: relative;
}

.profile-avatar-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #FFFFFF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.profile-avatar-icon {
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-status {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #10B981;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.profile-btn:hover .profile-avatar-wrapper {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
    border-color: #FBBF24;
}

.profile-btn:hover .profile-status {
    background: #059669;
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
}

.dashboard-page .dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.dashboard-page .dropdown-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dashboard-page .dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.25rem;
    color: #1F2937;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dashboard-page .dropdown-menu a:hover {
    background: linear-gradient(90deg, #F3F4F6 0%, #E5E7EB 100%);
    border-left-color: #2563EB;
    padding-left: 1.5rem;
}

.dashboard-page .dropdown-menu a:last-child {
    color: #EF4444;
}

.dashboard-page .dropdown-menu a:last-child:hover {
    background: linear-gradient(90deg, #FEF2F2 0%, #FEE2E2 100%);
    border-left-color: #EF4444;
}

/* Layout */
.dashboard-layout {
    display: flex;
    flex: 1;
    overflow: hidden;
}

/* Sidebar */
.sidebar {
    width: 260px;
    background: linear-gradient(180deg, #FFFFFF 0%, #F9FAFB 100%);
    border-right: 1px solid #E5E7EB;
    overflow-y: auto;
    flex-shrink: 0;
    height: calc(100vh - 73px);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.sidebar-overlay {
    display: none;
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 199;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.sidebar-overlay.active {
    display: block;
    opacity: 1;
}

.sidebar-nav {
    padding: 1.5rem 0;
}

.nav-section {
    margin-bottom: 2rem;
}

.nav-section:last-child {
    margin-bottom: 0;
}

.nav-section-title {
    font-size: 0.75rem;
    font-weight: 700;
    color: #9CA3AF;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0 1.5rem;
    margin-bottom: 0.75rem;
}

.nav-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-menu-list li {
    margin: 0;
}

.dashboard-page .nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    color: #6B7280;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    position: relative;
    margin: 0.25rem 0.75rem;
    border-radius: 10px;
}

.dashboard-page .nav-link:hover {
    background: linear-gradient(90deg, #F3F4F6 0%, #E5E7EB 100%);
    color: #1F2937;
    transform: translateX(4px);
    border-left-color: #2563EB;
}

.dashboard-page .nav-link.active {
    background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
    color: #FFFFFF;
    border-left-color: #1E40AF;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transform: translateX(4px);
}

.dashboard-page .nav-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.dashboard-page .nav-link:hover svg {
    transform: scale(1.1);
}

.dashboard-page .nav-link.active svg {
    transform: scale(1.1);
}

.dashboard-page .nav-link.logout-link {
    color: #EF4444;
}

.dashboard-page .nav-link.logout-link:hover {
    background: #FEF2F2;
    color: #DC2626;
}

.dashboard-page .nav-link.logout-link.active {
    background: #EF4444;
    color: #FFFFFF;
    border-left-color: #DC2626;
}

/* Main Content */
.main-content {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    background: linear-gradient(135deg, #F8FAFC 0%, #F1F5F9 100%);
    position: relative;
}

/* Welcome Banner */
.welcome-banner {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 0.7rem 2rem;
    margin-bottom: 1rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #1F2937;
}

.welcome-content {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.welcome-icon-box {
    width: 56px;
    height: 56px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.welcome-text {
    flex: 1;
}

.welcome-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1F2937;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.user-name {
    color: #1F2937;
    font-weight: 600;
}

.welcome-subtitle {
    display: none;
}

/* Metrics Grid */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.metric-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 0.8rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #F3F4F6;
    position: relative;
    overflow: hidden;
}

.metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #2563EB, #10B981, #F59E0B, #EF4444);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.metric-card:hover::before {
    opacity: 1;
}

.metric-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
    border-color: #E5E7EB;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.metric-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6B7280;
    margin: 0;
}

.metric-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.metric-card:hover .metric-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.metric-icon.green {
    background: #D1FAE5;
    color: #10B981;
}

.metric-icon.purple {
    background: #E9D5FF;
    color: #A855F7;
}

.metric-icon.yellow {
    background: #FEF3C7;
    color: #F59E0B;
}

.metric-icon.red {
    background: #FEE2E2;
    color: #EF4444;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 0.75rem;
}

.metric-trend {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.metric-trend.positive {
    color: #10B981;
}

.metric-trend.negative {
    color: #EF4444;
}

/* Booking Details Card */
.booking-details-card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid #F3F4F6;
    transition: all 0.3s ease;
}

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

.booking-header {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.booking-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1F2937;
    margin: 0;
}

.refresh-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: none;
    background: #F3F4F6;
    color: #6B7280;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.refresh-btn:hover {
    background: #2563EB;
    color: #FFFFFF;
    transform: rotate(180deg);
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.booking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.booking-text-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #6B7280;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 0.95rem;
    color: #1F2937;
    line-height: 1.6;
    margin: 0;
}

.booking-actions {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.action-btn {
    flex: 1;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.accept-btn {
    background: #10B981;
    color: #FFFFFF;
}

.accept-btn:hover:not(:disabled) {
    background: #059669;
    transform: translateY(-1px);
}

.action-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.reject-btn {
    background: #EF4444;
    color: #FFFFFF;
}

.reject-btn:hover {
    background: #DC2626;
    transform: translateY(-1px);
}

.pass-btn {
    background: #F59E0B;
    color: #FFFFFF;
}

.pass-btn:hover {
    background: #D97706;
    transform: translateY(-1px);
}

/* Map Container */
.booking-map {
    background: #F3F4F6;
    border-radius: 8px;
    overflow: hidden;
    min-height: 300px;
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 300px;
}

/* Dashboard Page Responsive Design */
@media (max-width: 1024px) {
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .booking-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .sidebar {
        position: fixed;
        left: -260px;
        z-index: 200;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        height: calc(100vh - 73px);
        top: 73px;
        box-shadow: 4px 0 16px rgba(0, 0, 0, 0.15);
    }

    .sidebar.open {
        transform: translateX(260px);
    }

    .sidebar-overlay.active {
        display: block;
    }

    .main-content {
        padding: 1rem;
    }

    .header-content {
        padding: 1rem;
        gap: 1rem;
    }

    .header-left {
        gap: 0.75rem;
    }

    .logo-text-small {
        font-size: 1.1rem;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
    }

    .welcome-title {
        font-size: 1.25rem;
    }

    .booking-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .metric-value {
        font-size: 1.5rem;
    }

    .booking-details-card {
        padding: 1.5rem;
    }
}

/* Dashboard Header Logo Styles */
.logo-image-small {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: 6px;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text-small {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* Updated Dashboard Header Logo Styles */
.logo-image-small {
    width: 60px !important;
    height: 60px !important;
    border-radius: 8px !important;
}

.header-logo {
    gap: 12px !important;
}

.logo-text-small {
    font-size: 1.3rem !important;
}