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

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: #333;
}

/* Navigation */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.logo img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

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

.logo h1 {
    color: #2E3387;
    font-size: 1.8rem;
    margin: 0;
}

@media (max-width: 768px) {
    .logo {
        gap: 8px;
    }
    .logo img {
        width: 50px;
        height: 50px;
    }
    .logo h1 {
        font-size: 1.5rem;
    }
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    text-decoration: none;
    color: #2c3e50;
    padding: 0.5rem 1.5rem;
    transition: all 0.3s ease;
}

.nav-links li a:hover {
    color: #2E3387;
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translateX(-50%) translateY(-50%);
    object-fit: cover;
    z-index: 0;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2E3387;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Destinations Section */
.destinations {
    padding: 5rem 5%;
    background-color: #fff;
}

.destinations h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.destination-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
}

.destination-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
    background-color: #f0f0f0;
    min-height: 250px;
    max-width: 100%;
}

.destination-card:hover img {
    transform: scale(1.05);
}

.destination-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.8rem;
    color: #2c3e50;
}

.destination-type {
    padding: 0 1.5rem;
    color: #2E3387;
    font-weight: 500;
    margin-bottom: 1rem;
}

.destination-info {
    padding: 0 1.5rem 1.5rem;
}

.destination-info p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.destination-highlights {
    list-style: none;
    margin-bottom: 1.5rem;
}

.destination-highlights li {
    color: #666;
    margin: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.destination-highlights li:before {
    content: "•";
    color: #2E3387;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.explore-button {
    background-color: #2E3387;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    width: 100%;
}

.explore-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

/* Responsive adjustments for destinations */
@media (max-width: 768px) {
    .destination-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .destination-card {
        margin-bottom: 2rem;
    }
    
    .destination-card img {
        height: 200px;
    }
}

/* Debug outline to see if images are loading */
img {
    border: 1px solid transparent;
}

img[src$=".jpeg"] {
    border-color: #2E3387;
}

/* Packages Section */
.packages {
    padding: 5rem 5%;
}

.packages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.package-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.package-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: #2E3387;
    margin-bottom: 1.5rem;
}

.package-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.package-card ul li {
    margin: 0.5rem 0;
    color: #666;
}

.book-button {
    background-color: #2E3387;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.book-button:hover {
    background-color: #2980b9;
}

/* About Section */
.about {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.about-content {
    max-width: 1400px;
    margin: 0 auto;
}

.about-text {
    text-align: center;
    margin-bottom: 3rem;
}

.about-text p {
    margin-bottom: 1rem;
    color: #666;
}

.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #2E3387;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 5%;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

#contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-form input,
#contact-form select,
#contact-form textarea {
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

#contact-form textarea {
    height: 150px;
    resize: vertical;
}

.submit-button {
    background-color: #2E3387;
    color: white;
    border: none;
    padding: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-item i {
    font-size: 1.5rem;
    color: #2E3387;
}

/* Services Section */
.services {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(52, 152, 219, 0.2);
}

.service-card i {
    font-size: 3rem;
    color: #2E3387;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
    text-align: left;
    padding-left: 1rem;
}

.service-features li {
    margin: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    color: #2E3387;
    position: absolute;
    left: 0;
}

.service-button {
    background-color: #2E3387;
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.service-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.highlight-card {
    border: 2px solid #2E3387;
    position: relative;
    overflow: hidden;
}

.highlight-card:before {
    content: "Featured Service";
    position: absolute;
    top: 1rem;
    right: -2rem;
    background: #2E3387;
    color: white;
    padding: 0.3rem 3rem;
    transform: rotate(45deg);
    font-size: 0.8rem;
}

/* Responsive adjustments for services */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        margin: 1rem 0;
    }
}

/* Modal Styles */
.flight-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(8px);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.4s ease-in-out;
    overflow-y: auto;
    padding: 20px 0;
}

.flight-modal.show {
    display: block;
    opacity: 1;
}

.flight-modal .modal-content {
    position: relative;
    transform: translateY(-20px);
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    margin: auto;
    padding: 2.5rem 2.8rem;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25),
                0 0 50px rgba(255, 255, 255, 0.1);
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
}

/* Flight Modal Scrollbar styling */
.flight-modal .modal-content::-webkit-scrollbar {
    width: 6px;
}

.flight-modal .modal-content::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    margin: 8px 0;
}

.flight-modal .modal-content::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.5);
    border-radius: 10px;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.flight-modal .modal-content::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.7);
    border: 2px solid transparent;
    background-clip: padding-box;
}

.flight-modal .close-modal {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
}

.flight-modal .close-modal:hover {
    color: #000;
    background: rgba(0, 0, 0, 0.1);
    transform: rotate(90deg);
}

.flight-modal h2 {
    margin-bottom: 1.8rem;
    font-size: 1.8rem;
    color: #1a1a1a;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 15px;
}

.flight-modal h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #2E3387, #2573a7);
    border-radius: 2px;
}

.flight-modal .form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.flight-modal .form-group label {
    display: block;
    margin-bottom: 0.8rem;
    color: #444;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    transition: color 0.3s ease;
}

.flight-modal .form-group:focus-within label {
    color: #2E3387;
}

.flight-modal .form-group input,
.flight-modal .form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #e1e1e1;
    border-radius: 12px;
    font-size: 1rem;
    background: #fff;
    transition: all 0.3s ease;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

.flight-modal .form-group input:hover,
.flight-modal .form-group select:hover {
    border-color: #d0d0d0;
}

.flight-modal .form-group input:focus,
.flight-modal .form-group select:focus {
    border-color: #2E3387;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
}

.flight-modal .passenger-selector {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.flight-modal .passenger-selector select {
    width: 100%;
}

.flight-modal .submit-button {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, #2E3387 0%, #2980b9 100%);
    color: white;
    border: none;
    font-size: 1rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.flight-modal .submit-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    transform: translateX(-100%);
    transition: transform 0.5s ease;
}

.flight-modal .submit-button:hover {
    background: linear-gradient(135deg, #2980b9 0%, #2573a7 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
}

.flight-modal .submit-button:hover::before {
    transform: translateX(100%);
}

.flight-modal .submit-button:active {
    transform: translateY(1px);
}

/* Success Modal Styles */
.success-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
    justify-content: center;
    align-items: center;
}

.success-modal.show {
    display: flex;
    opacity: 1;
}

.success-modal .modal-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.success-modal.show .modal-content {
    transform: translateY(0);
}

.success-modal .modal-header {
    margin-bottom: 25px;
}

.success-modal .modal-header i {
    color: #4CAF50;
    font-size: 64px;
    margin-bottom: 20px;
    display: block;
}

.success-modal .modal-header h3 {
    color: #333;
    margin: 0;
    font-size: 28px;
    font-weight: 600;
}

.success-modal .modal-body {
    margin-bottom: 30px;
}

.success-modal .modal-body p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

.success-modal .modal-close {
    background: #2E3387;
    color: white;
    border: none;
    padding: 12px 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(46, 51, 135, 0.2);
}

.success-modal .modal-close:hover {
    background: #232968;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 51, 135, 0.3);
}

.success-modal .modal-close:active {
    transform: translateY(0);
}

@media (max-width: 480px) {
    .success-modal .modal-content {
        padding: 30px 20px;
    }
    
    .success-modal .modal-header i {
        font-size: 48px;
        margin-bottom: 15px;
    }
    
    .success-modal .modal-header h3 {
        font-size: 24px;
    }
}

/* Footer Styles */
footer {
    background: linear-gradient(135deg, #2E3387 0%, #1a1e4d 100%);
    color: white;
    padding: 60px 5% 20px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section.brand {
    padding-right: 40px;
}

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

.footer-logo img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.footer-logo h3 {
    font-size: 24px;
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: white;
}

.footer-section.brand p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 25px;
}

.footer-section.brand .contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-section.brand .info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-section.brand .info-item i {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.footer-section.brand .info-item span {
    font-size: 14px;
    opacity: 0.9;
}

.footer-section.links h3 {
    font-size: 18px;
    margin-bottom: 25px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.link-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.link-columns ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.link-columns ul li {
    margin-bottom: 12px;
}

.link-columns ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.link-columns ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.link-columns ul li a:hover {
    color: white;
    transform: translateX(3px);
}

.link-columns ul li a:hover::before {
    background: white;
}

.footer-bottom {
    margin-top: 50px;
    text-align: center;
}

.footer-line {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin-bottom: 20px;
}

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-section.brand {
        padding-right: 0;
    }

    .link-columns {
        gap: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .destination-grid,
    .package-grid {
        grid-template-columns: 1fr;
    }
}

/* Autocomplete styles */
.autocomplete-wrapper {
    position: relative;
    width: 100%;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 250px;
    overflow-y: auto;
    background: white;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    margin-top: 5px;
    display: none;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.2s ease;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: #f8f9fa;
}

.autocomplete-item.selected {
    background: #f0f4ff;
}

.city-info {
    display: flex;
    flex-direction: column;
}

.city-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px;
}

.city-name {
    font-weight: 500;
    color: #333;
}

.city-code {
    font-weight: 600;
    color: #2E3387;
    font-size: 0.9em;
}

.city-airport {
    font-size: 0.85em;
    color: #666;
}

.city-country {
    font-size: 0.8em;
    color: #888;
}

/* Quick Chat Styles */
.quick-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.chat-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2E3387 0%, #2980b9 100%);
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.chat-toggle:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(52, 152, 219, 0.4);
}

.notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 320px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: none;
    transition: all 0.3s ease;
    transform-origin: bottom right;
}

.chat-box.active {
    display: flex;
    flex-direction: column;
    animation: scaleUp 0.2s ease forwards;
}

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

.chat-header {
    padding: 15px 20px;
    background: linear-gradient(135deg, #2E3387 0%, #2980b9 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.chat-header h3 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.online-status {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 5px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background: #2ecc71;
    border-radius: 50%;
}

.minimize-chat {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.minimize-chat:hover {
    opacity: 1;
}

.chat-messages {
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    max-width: 80%;
}

.message.received {
    margin-right: auto;
}

.message.sent {
    margin-left: auto;
    flex-direction: row-reverse;
}

.message-content {
    background: #f8f9fa;
    padding: 10px 15px;
    border-radius: 15px;
    position: relative;
}

.message.sent .message-content {
    background: #2E3387;
    color: white;
}

.message-time {
    font-size: 10px;
    color: #95a5a6;
    margin-top: 5px;
    display: block;
}

.message.sent .message-time {
    color: #fff;
    opacity: 0.8;
}

.chat-input {
    padding: 15px;
    border-top: 1px solid #eee;
    display: flex;
    gap: 10px;
}

.chat-input input {
    flex: 1;
    padding: 10px;
    border: 1px solid #e1e1e1;
    border-radius: 20px;
    outline: none;
    transition: all 0.3s ease;
}

.chat-input input:focus {
    border-color: #2E3387;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.send-message {
    background: #2E3387;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.send-message:hover {
    background: #2980b9;
    transform: scale(1.05);
}

/* Custom Scrollbar for Chat Messages */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f8f9fa;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(52, 152, 219, 0.5);
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(52, 152, 219, 0.7);
}

/* Multi-step form styles */
.form-step {
    transition: all 0.3s ease;
}

.form-step h3 {
    color: #2E3387;
    margin-bottom: 20px;
}

.button-group {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.next-button,
.back-button,
.submit-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.next-button {
    background-color: #2E3387;
    color: white;
}

.back-button {
    background-color: #f0f0f0;
    color: #333;
}

.submit-button {
    background-color: #2E3387;
    color: white;
}

.next-button:hover,
.submit-button:hover {
    background-color: #1f2266;
}

.back-button:hover {
    background-color: #e0e0e0;
}

/* Passenger form styles */
.passenger-form {
    border: 1px solid #e0e0e0;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
}

.passenger-form h4 {
    color: #2E3387;
    margin-bottom: 15px;
}

/* Progress indicator */
.progress-indicator {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.step-indicator {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 20px;
    position: relative;
}

.step-indicator.active {
    background-color: #2E3387;
    color: white;
}

.step-indicator::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 2px;
    background-color: #f0f0f0;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
}

.step-indicator:last-child::after {
    display: none;
}

.step-indicator.completed {
    background-color: #4CAF50;
    color: white;
}
