/* Color Variables */
:root {
    --primary-blue: #223A5E;
    --primary-blue-dark: #1A2940;
    --accent-black: #000000;
    --white: #ffffff;
    --gray-bg: #f5f7fa;
    --gray-text: #64748b;
    --highlight-yellow: #fbbf24;
}

/* Contact Links */
.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.contact-link:hover {
    color: var(--highlight-yellow);
    text-decoration: underline;
}

/* Footer Contact Links - White */
.footer .contact-link {
    color: white;
}

.footer .contact-link:hover {
    color: var(--highlight-yellow);
    text-decoration: underline;
}

.contact-link:active {
    transform: scale(0.98);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--accent-black);
    background: var(--white);
    overflow-x: hidden;
    transition: opacity 0.3s ease;
}

body.page-transitioning {
    opacity: 0.8;
}

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

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-blue);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader {
    text-align: center;
    color: var(--white);
}

.loader img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

.loading-text {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 2px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--primary-blue);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(34, 58, 94, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
    color: var(--white);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--highlight-yellow);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--white);
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-blue);
    color: var(--white);
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--white);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

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

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--primary-blue);
    color: var(--white);
}

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

.btn-primary:hover {
    background: var(--highlight-yellow);
    color: var(--accent-black);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
}

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

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.hero-stat .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--highlight-yellow);
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image i {
    font-size: 15rem;
    opacity: 0.8;
}

/* Overview Section */
.overview {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.overview h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.overview-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    color: var(--accent-black);
}

.overview-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.overview-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.overview-icon i {
    font-size: 2rem;
    color: var(--white);
}

.overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.overview-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Fleet Gallery */
.fleet-gallery {
    padding: 5rem 0;
    background: var(--white);
}

.fleet-gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.fleet-gallery > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-item {
    background: #f8fafd;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(34, 58, 94, 0.05);
    text-align: center;
    color: var(--primary-blue-dark);
    transition: all 0.3s ease;
}

.fleet-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 58, 94, 0.1);
}

.fleet-icon {
    font-size: 3rem;
    color: var(--primary-blue);
    margin: 0 auto 1.5rem;
    width: 100px;
    height: 100px;
    background: var(--white);
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.fleet-item:hover .fleet-icon {
    background: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.fleet-item h4 {
    color: var(--primary-blue-dark);
    margin-top: 1rem;
    font-size: 1.2rem;
}

.fleet-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.testimonials h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.testimonials-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    color: var(--accent-black);
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.stars {
    margin-bottom: 1.5rem;
}

.stars i {
    color: var(--highlight-yellow);
    font-size: 1.2rem;
    margin: 0 0.1rem;
}

.testimonial-content p {
    font-size: 1.1rem;
    color: var(--gray-text);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    justify-content: center;
    align-items: center;
}

.author-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-blue);
    margin-bottom: 0.25rem;
}

.author-info span {
    color: var(--gray-text);
    font-size: 0.9rem;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-bg);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--highlight-yellow);
    transform: scale(1.2);
}

/* Tracking Demo */
.tracking-demo {
    padding: 5rem 0;
    background: #f0f4f8;
}

.tracking-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tracking-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
}

.tracking-info p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.tracking-features {
    list-style: none;
    margin-bottom: 2rem;
}

.tracking-features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--gray-text);
}

.tracking-features li i {
    color: var(--primary-blue);
    margin-right: 0.75rem;
    font-size: 1rem;
}

.tracking-demo-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.demo-map {
    width: 300px;
    height: 300px;
    background: var(--gray-bg);
    border-radius: 12px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.demo-map i {
    font-size: 4rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

.tracking-points {
    position: absolute;
    width: 100%;
    height: 100%;
}

.point {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.8rem;
    color: var(--gray-text);
}

.point.origin {
    top: 20%;
    left: 20%;
}

.point.destination {
    bottom: 20%;
    right: 20%;
}

.point.vehicle {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.point i {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.point.origin i {
    color: var(--primary-blue);
}

.point.destination i {
    color: var(--primary-blue);
}

.point.vehicle i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: var(--white);
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.service-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Services Page */
.services-page {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.service-card-detailed {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    text-align: center;
    margin-bottom: 2rem;
}

.service-card-detailed:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

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

.service-features li {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}

.service-features li i {
    color: var(--primary-blue);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

/* Additional Services */
.additional-services {
    padding: 5rem 0;
    background: var(--white);
}

.additional-services h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--gray-bg);
    transition: all 0.3s ease;
}

.additional-card:hover {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.additional-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.additional-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.additional-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat p {
    color: var(--gray-text);
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-image i {
    font-size: 10rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Company Story */
.company-story {
    padding: 5rem 0;
    background: var(--white);
}

.story-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.story-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.story-image i {
    font-size: 10rem;
    color: var(--primary-blue);
    opacity: 0.3;
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mvv-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.mvv-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

.values-list {
    list-style: none;
    text-align: left;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.5rem 0;
    color: var(--gray-text);
    border-bottom: 1px solid var(--gray-bg);
}

.values-list li:last-child {
    border-bottom: none;
}

/* Statistics Section */
.stats-section {
    padding: 5rem 0;
    background: var(--white);
}

.stats-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

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

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--gray-bg);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.stat-number h3 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--gray-text);
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.team-section > .container > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray-text);
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.team-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 100px;
    height: 100px;
    background: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.team-photo i {
    font-size: 2.5rem;
    color: var(--white);
}

.team-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.team-role {
    color: var(--primary-blue);
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-description {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Certifications */
.certifications {
    padding: 5rem 0;
    background: var(--white);
}

.certifications h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.cert-card {
    text-align: center;
    padding: 2rem;
    border-radius: 12px;
    background: var(--gray-bg);
    transition: all 0.3s ease;
}

.cert-card:hover {
    background: var(--white);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cert-card i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.cert-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.cert-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.contact-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    color: var(--accent-black);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--highlight-yellow);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--gray-text);
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.5rem;
}

/* Contact Page */
.contact-page {
    padding: 5rem 0;
    background: var(--gray-bg);
}

/* Location Section */
.location-section {
    padding: 5rem 0;
    background: var(--white);
}

.location-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch;
}

.location-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.location-item {
    display: flex;
    align-items: flex-start;
}

.location-item i {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.location-item h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-blue);
}

.location-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

.location-map {
    border-radius: 12px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 4px 15px rgba(34, 58, 94, 0.15);
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 400px;
    background: #e9ecef;
    border-radius: 12px;
    color: var(--gray-text);
    cursor: pointer;
    transition: background 0.3s;
}

.map-placeholder i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    font-size: 0.9rem;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: var(--gray-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--primary-blue);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.faq-item p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Call to Action Section */
.cta-section {
    padding: 5rem 0;
    background: var(--primary-blue-dark);
    color: var(--white);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Enhanced Footer */
.footer {
    background: var(--primary-blue-dark);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-logo i {
    margin-right: 0.5rem;
    color: var(--white);
}

.footer-contact {
    margin-top: 1rem;
}

.footer-contact p {
    margin-bottom: 0.5rem;
    color: var(--gray-text);
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 0.5rem;
    color: var(--highlight-yellow);
}

.footer-section h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--highlight-yellow);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--highlight-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    justify-content: flex-start;
}

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

.social-links a:hover {
    background: var(--highlight-yellow);
    transform: translateY(-2px);
}

.footer-certifications h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--highlight-yellow);
}

.cert-badges {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: flex-start;
}

.cert-badges i {
    font-size: 20px;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cert-badges i:hover {
    background: var(--highlight-yellow);
    color: var(--primary-blue-dark);
}

.footer-certifications img {
    display: none;
}

.footer-bottom {
    border-top: 1px solid var(--primary-blue);
    padding-top: 2rem;
}

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

.footer-bottom p {
    color: var(--gray-text);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: var(--gray-text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--highlight-yellow);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.back-to-top:hover {
    background: var(--highlight-yellow);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.back-to-top.show {
    display: flex;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-blue-dark);
    backdrop-filter: blur(10px);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--highlight-yellow);
    text-decoration: none;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-buttons .btn {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

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

    .nav-menu .nav-link {
        color: var(--primary-blue);
        padding: 1rem 0;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu .nav-link:hover {
        color: var(--highlight-yellow);
        background-color: #f8f9fa;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-image i {
        font-size: 8rem;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    .about-content,
    .story-content,
    .tracking-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

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

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

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

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

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

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

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

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }

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

    .btn {
        text-align: center;
    }

    .services h2,
    .about-text h2,
    .contact h2,
    .overview h2,
    .stats-section h2,
    .team-section h2,
    .certifications h2,
    .location-section h2,
    .faq-section h2,
    .fleet-gallery h2,
    .testimonials h2,
    .tracking-info h2 {
        font-size: 2rem;
    }

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

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

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

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

/* Imagens responsivas e com bordas arredondadas */
img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.fleet-gallery .fleet-grid,
.services-gallery .services-gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.fleet-gallery .fleet-item,
.services-gallery .services-gallery-grid img {
    background: #223a5e;
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(34,58,94,0.08);
    text-align: center;
    color: #fff;
    max-width: 260px;
}
.fleet-gallery .fleet-item h4,
.services-gallery .services-gallery-grid h4 {
    color: #fff;
    margin-top: 1rem;
}

.about-history {
    background: #f8fafd;
    padding: 3rem 0;
}
.about-history-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: center;
    justify-content: center;
}
.about-history-content img {
    box-shadow: 0 2px 12px rgba(34,58,94,0.08);
}
.about-history-text {
    max-width: 400px;
}

.footer-certifications {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    align-items: center;
    justify-content: center;
}
.footer-certifications img {
    background: #fff;
    border-radius: 50%;
    padding: 4px;
    box-shadow: 0 1px 6px rgba(34,58,94,0.10);
    height: 32px;
    width: auto;
}

.contact-header img {
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 1px 6px rgba(34,58,94,0.10);
}

@media (max-width: 900px) {
    .fleet-gallery .fleet-grid,
    .services-gallery .services-gallery-grid,
    .about-history-content {
        flex-direction: column;
        align-items: center;
    }
    .fleet-gallery .fleet-item,
    .services-gallery .services-gallery-grid img {
        max-width: 100%;
    }
}

.contact-content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-unit {
    background: #f8fafd;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-unit h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-page h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

/* =================================
   Trabalhe Conosco Page
   ================================= */

.jobs-section {
    padding: 4rem 0;
    background: #f8fafd;
}

.jobs-section h2,
.application-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-blue);
}

.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.job-card {
    background: var(--white);
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(34, 58, 94, 0.1);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.job-icon {
    font-size: 2rem;
    color: var(--primary-blue);
}

.job-title {
    font-size: 1.5rem;
    color: var(--primary-blue-dark);
}

.job-details {
    flex-grow: 1;
    color: var(--gray-text);
}

.job-details p {
    margin-bottom: 0.5rem;
}

.job-footer {
    margin-top: 1.5rem;
}

.job-card-empty {
    background: var(--white);
    border: 2px dashed #e2e8f0;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    color: var(--gray-text);
    display: flex;
    align-items: center;
    justify-content: center;
}

.application-form-section {
    padding: 4rem 0;
}

.application-form {
    max-width: 800px;
    margin: 2rem auto 0;
    background: #f8fafd;
    padding: 2.5rem;
    border-radius: 12px;
}

.application-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.application-form .form-group {
    margin-bottom: 1.5rem;
}

.application-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-blue-dark);
}

.application-form input[type="file"] {
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
} 

/* =================================
   Admin Message Styles
   ================================= */

.success-message {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #c3e6cb;
    font-weight: 500;
}

.success-message i {
    margin-right: 8px;
    color: #28a745;
}

.error-message {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: none;
    border: 1px solid #f5c6cb;
    font-weight: 500;
}

.error-message i {
    margin-right: 8px;
    color: #dc3545;
}

.success-message.show,
.error-message.show {
    display: block;
    animation: fadeIn 0.3s ease-in;
}

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