/* Import Poppins font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

/* Global styles */
body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #F3F4F6;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #003087;
}

a {
    color: #F5A623;
    text-decoration: none;
}

a:hover {
    color: #E69512;
}

/* Header */
.navbar {
    background: linear-gradient(90deg, #003087 0%, #4A90E2 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand span:nth-child(1) {
    color: #E69512; /* "YB" in Darker Orange */
}

.navbar-brand span:nth-child(2) {
    color: #4A90E2; /* "Transit" in Lighter Blue */
}

.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-link {
    color: #FFFFFF !important;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    margin: 0 5px;
    transition: background-color 0.3s, color 0.3s;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    background-color: #F5A623;
    color: #FFFFFF !important;
}

/* Mobile Menu */
.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-collapse {
    transition: all 0.3s ease;
}

@media (max-width: 991px) {
    .navbar-nav {
        padding: 15px;
        background-color: #003087;
        border-radius: 10px;
        margin-top: 10px;
    }
    .navbar-nav .nav-link {
        margin: 5px 0;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/light-paper-fibers.png');
    opacity: 0.1;
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease-in-out;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-in-out 0.3s;
    animation-fill-mode: both;
}

.hero .btn {
    margin: 0 10px;
    animation: fadeInUp 1s ease-in-out 0.6s;
    animation-fill-mode: both;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-primary {
    background-color: #F5A623;
    border-color: #F5A623;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #E69512;
    border-color: #E69512;
}

.btn-secondary {
    background-color: #FFFFFF;
    color: #003087;
    border-color: #FFFFFF;
    padding: 12px 25px;
    font-weight: 600;
}

.btn-secondary:hover {
    background-color: #F3F4F6;
    color: #003087;
    border-color: #F3F4F6;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section h2 {
    text-align: center;
    margin-bottom: 40px;
}

/* Service Cards */
.service-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.service-card i {
    color: #F5A623;
    font-size: 3rem;
    margin-bottom: 15px;
}

.service-card h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1rem;
    color: #666;
}

/* Services Section Background */
.services-section {
    background-color: #F9FAFB;
}

/* How It Works Section */
.how-it-works-section {
    background-color: #FFFFFF;
}

.how-it-works-step {
    padding: 20px;
    position: relative;
}

.how-it-works-step i {
    font-size: 3rem;
    color: #F5A623;
    margin-bottom: 15px;
}

.how-it-works-step h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.how-it-works-step p {
    font-size: 0.95rem;
    color: #666;
}

@media (min-width: 768px) {
    .how-it-works-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 40px;
        right: -20px;
        width: 40px;
        height: 2px;
        background-color: #F5A623;
    }
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
}

.feature-card {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-card i {
    color: #F5A623;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 0.95rem;
    color: #666;
}

/* Featured Destinations Section */
.destinations-section {
    background-color: #F9FAFB;
}

.destination-card {
    background-color: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
    transition: transform 0.3s ease;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-card img {
    border-radius: 10px;
    margin-bottom: 15px;
    height: 200px;
    object-fit: cover;
}

.destination-card h4 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.destination-card p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 15px;
}

/* Testimonials Section */
.testimonials-section {
    background-color: #FFFFFF;
    padding: 60px 0;
}

.testimonial-card {
    background-color: #F9FAFB;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '\f10d';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #F5A623;
    font-size: 2rem;
    position: absolute;
    top: 20px;
    left: 20px;
    opacity: 0.2;
}

.testimonial-card p {
    font-size: 1rem;
    color: #333;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-size: 1.1rem;
    color: #003087;
    margin-bottom: 5px;
}

.testimonial-card span {
    font-size: 0.9rem;
    color: #666;
}

/* Testimonial Slider */
.testimonial-slider {
    padding-bottom: 40px;
}

.swiper-slide {
    display: flex;
}

.swiper-pagination-bullet {
    background-color: #F5A623;
}

/* Statistics Section */
.stats-section {
    background: linear-gradient(90deg, #003087 0%, #4A90E2 100%);
    color: #FFFFFF;
    padding: 40px 0;
    text-align: center;
}

.stats-section .stat-item {
    margin-bottom: 20px;
}

.stats-section .stat-item h3 {
    font-size: 2.5rem;
    color: #FFFFFF;
    margin-bottom: 10px;
}

.stats-section .stat-item p {
    font-size: 1rem;
    color: #F3F4F6;
}

/* Trust Badges */
.trust-badge {
    max-height: 60px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(90deg, #F5A623 0%, #E69512 100%);
    color: #FFFFFF;
    padding: 50px 0;
    text-align: center;
    border-radius: 15px;
    margin: 40px 0;
}

.cta-banner h2 {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.cta-banner .btn-primary {
    background-color: #FFFFFF;
    color: #003087;
    border-color: #FFFFFF;
}

.cta-banner .btn-primary:hover {
    background-color: #F3F4F6;
    color: #003087;
    border-color: #F3F4F6;
}

/* Quote Form Section */
.quote-section {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.quote-section h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #003087;
}

.quote-section .form-label {
    font-weight: 500;
    color: #003087;
}

.quote-section .form-control {
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    padding: 10px;
    transition: border-color 0.3s;
}

.quote-section .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
}

.quote-section textarea.form-control {
    resize: vertical;
}

.quote-section .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

/* Contact Info */
.contact-info {
    margin-top: 40px;
}

.contact-info h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.contact-info p i {
    color: #F5A623;
    margin-right: 10px;
}

.contact-info a {
    color: #F5A623;
}

.contact-info a:hover {
    color: #E69512;
}

/* About Page Specific Styles */
.about-section {
    background-color: #F9FAFB;
}

.team-card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #FFFFFF;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-8px);
}

.team-card img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

.team-card h4 {
    font-size: 1.25rem;
    margin-bottom: 5px;
}

.team-card p {
    font-size: 0.9rem;
    color: #666;
}

.mission-section {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mission-section p {
    font-size: 1.1rem;
    color: #333;
}

/* Map Section */
.map-section {
    background-color: #F9FAFB;
    padding: 60px 0;
}

.map-container {
    height: 400px;
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
}

.map-description {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, #F9FAFB 0%, #E5E7EB 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/light-paper-fibers.png');
    opacity: 0.1;
    z-index: 0;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-item {
    background-color: #FFFFFF;
    border-radius: 15px;
    margin-bottom: 20px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.faq-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0;
    color: #003087;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item h4 i {
    color: #F5A623;
    margin-right: 10px;
    font-size: 1.5rem;
}

.faq-toggle {
    font-size: 1rem;
    color: #F5A623;
}

.faq-answer {
    display: none;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid #E5E7EB;
}

.faq-answer p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
}

.faq-answer p a {
    color: #F5A623;
    font-weight: 500;
}

.faq-answer p a:hover {
    color: #E69512;
}

/* Contact Prompt */
.contact-prompt {
    text-align: center;
    margin-top: 40px;
    background-color: #003087;
    color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-prompt p {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.contact-prompt .btn-primary {
    background-color: #F5A623;
    border-color: #F5A623;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.contact-prompt .btn-primary:hover {
    background-color: #E69512;
    border-color: #E69512;
}

/* Contact Page Specific Styles */
.contact-section {
    background-color: #F9FAFB;
}

.contact-form-container {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-container .form-label {
    font-weight: 500;
    color: #003087;
}

.contact-form-container .form-control {
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    padding: 10px;
    transition: border-color 0.3s;
}

.contact-form-container .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
}

.contact-form-container textarea.form-control {
    resize: vertical;
}

.contact-form-container .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1.1rem;
}

.contact-details {
    margin-top: 40px;
}

.contact-details h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
}

.contact-details p i {
    color: #F5A623;
    margin-right: 10px;
    font-size: 1.25rem;
}

.contact-details .social-icons {
    margin-top: 20px;
}

.contact-details .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

/* Track Shipment Page Specific Styles */
.track-section {
    background-color: #F9FAFB;
}

.track-form-container {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.track-form-container .form-label {
    font-weight: 500;
    color: #003087;
}

.track-form-container .form-control {
    border: 1px solid #E5E7EB;
    border-radius: 5px;
    padding: 10px;
    transition: border-color 0.3s;
    max-width: 500px;
    margin: 0 auto;
}

.track-form-container .form-control:focus {
    border-color: #F5A623;
    box-shadow: 0 0 5px rgba(245, 166, 35, 0.3);
}

.track-form-container .btn-primary {
    margin-top: 20px;
    padding: 12px 30px;
    font-size: 1.1rem;
}

.tracking-results {
    margin-top: 40px;
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.tracking-results h4 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.tracking-results .status-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    padding: 10px;
    border-left: 4px solid #F5A623;
    background-color: #F9FAFB;
    border-radius: 5px;
}

.tracking-results .status-item i {
    color: #F5A623;
    font-size: 1.5rem;
    margin-right: 15px;
}

.tracking-results .status-item p {
    margin: 0;
    font-size: 1rem;
    color: #333;
}

.tracking-results .status-item p span {
    font-weight: 500;
    color: #003087;
}

/* Footer */
footer {
    background-color: #003087;
    color: #FFFFFF;
    padding: 40px 0;
}

footer a {
    color: #F5A623;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #E69512;
}

footer h5 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

footer p {
    font-size: 1rem;
}

footer .row {
    margin-bottom: 20px;
}

footer .col-md-4 {
    margin-bottom: 20px;
}

footer .list-unstyled li {
    margin-bottom: 8px;
}

footer .social-icons {
    margin-top: 10px;
}

footer .social-icons a {
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: #FFFFFF;
}

footer .text-center {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #FFFFFF;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.whatsapp-float:hover {
    background-color: #20BB57;
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero .btn {
        display: block;
        margin: 10px auto;
        width: 80%;
    }
    .service-card {
        margin-bottom: 20px;
    }
    .quote-section {
        padding: 20px;
    }
    .team-card {
        margin-bottom: 20px;
    }
    .mission-section {
        padding: 20px;
    }
    .map-container {
        height: 300px;
    }
    .faq-item h4 {
        font-size: 1.1rem;
    }
    .faq-item p {
        font-size: 0.95rem;
    }
    .contact-prompt {
        padding: 20px;
    }
    .contact-prompt p {
        font-size: 1.1rem;
    }
    .contact-form-container {
        padding: 20px;
    }
    .contact-details h4 {
        font-size: 1.25rem;
    }
    .contact-details p {
        font-size: 1rem;
    }
    .track-form-container {
        padding: 20px;
    }
    .tracking-results {
        padding: 20px;
    }
    .tracking-results h4 {
        font-size: 1.25rem;
    }
    .tracking-results .status-item p {
        font-size: 0.95rem;
    }
    .feature-card {
        margin-bottom: 20px;
    }
    .testimonial-card {
        margin-bottom: 20px;
    }
    .stats-section .stat-item h3 {
        font-size: 2rem;
    }
    .cta-banner {
        padding: 30px 0;
    }
    .cta-banner h2 {
        font-size: 1.5rem;
    }
    .destination-card {
        margin-bottom: 20px;
    }
}