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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

html {
    scroll-behavior: smooth;
}

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

/* Colors */
:root {
    --primary-blue: #0D3B8E;
    --accent-red: #E63946;
    --dark-blue: #082659;
    --text-gray: #333333;
    --light-gray: #f8f9fa;
    --white: #ffffff;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.nav-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.logo {
    height: 48px;
    width: auto;
    object-fit: contain;
}

.company-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    white-space: nowrap;
    /* Logo ismini her zaman göster */
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--primary-blue);
}

.nav-link.active {
    color: var(--primary-blue);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--accent-red);
}

.nav-contact {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-gray);
    white-space: nowrap;
}

.phone-icon {
    font-size: 12px;
}

.cta-button {
    background: var(--accent-red);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-shrink: 0;
}

.hamburger {
    width: 24px;
    height: 3px;
    background: var(--text-gray);
    display: block;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger::before,
.hamburger::after {
    content: '';
    width: 24px;
    height: 3px;
    background: var(--text-gray);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.hamburger::before {
    top: -8px;
}

.hamburger::after {
    top: 8px;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0;
    border-top: 1px solid #eee;
    margin-top: 15px;
    width: 100%;
}

.mobile-menu a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    padding: 8px 0;
}

.mobile-menu.show {
    display: flex;
}

.mobile-contact {
    padding-top: 16px;
    border-top: 1px solid #eee;
    margin-top: 16px;
}

/* Responsive Design - Navbar */
@media (max-width: 1200px) {
    .nav-contact .phone-numbers {
        display: none;
    }
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }

    .nav-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 12px 0;
    }
    
    .company-name {
        font-size: 18px;
    }
    
    .logo {
        height: 40px;
    }
    
    .nav-brand {
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .company-name {
        font-size: 16px;
    }
    
    .logo {
        height: 36px;
    }
    
    .nav-brand {
        gap: 8px;
    }
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    min-width: 120px;
}

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

.btn-red:hover {
    background: #d32f2f;
    transform: scale(1.05);
}

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

.btn-blue:hover {
    background: #0a2d6b;
    transform: scale(1.05);
}

.btn.large {
    padding: 16px 32px;
    font-size: 18px;
}

.btn.full-width {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://images.pexels.com/photos/18290480/pexels-photo-18290480.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-logo {
    margin-bottom: 32px;
}

.hero-logo-img {
    height: 80px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.hero-badge {
    background: var(--primary-blue);
    color: white;
    padding: 8px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    display: inline-block;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--accent-red);
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    text-align: center;
    animation: bounce 2s infinite;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 12px;
    margin: 0 auto 8px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Sections */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
    position: relative;
}

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

.section-title.white {
    color: white;
}

.title-underline {
    display: block;
    width: 60px;
    height: 4px;
    background: var(--accent-red);
    margin-top: 8px;
}

.section-title.centered .title-underline {
    margin: 8px auto 0;
}

/* Page Headers */
.page-header {
    padding: 120px 0 80px;
    background: var(--light-gray);
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.feature-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.feature-card p {
    color: #666;
}

/* About Preview */
.about-preview {
    padding: 80px 0;
}

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

.about-content {
    margin: 24px 0 32px;
}

.about-content p {
    margin-bottom: 16px;
    color: #666;
    line-height: 1.7;
}

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

.stat-card {
    background: white;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 2rem;
    margin-bottom: 16px;
}

.stat-card h4 {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-card p {
    color: #666;
    font-size: 0.9rem;
}

/* Fleet Preview */
.fleet-preview {
    padding: 80px 0;
    background: var(--light-gray);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.vehicle-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.vehicle-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.vehicle-card:hover img {
    transform: scale(1.1);
}

.vehicle-info {
    padding: 24px;
}

.vehicle-info h3 {
    color: var(--primary-blue);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.vehicle-info p {
    color: #666;
}

/* CTA Banner */
.cta-banner {
    padding: 80px 0;
    background: var(--light-gray);
}

.cta-card {
    background: var(--primary-blue);
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 16px 48px rgba(13, 59, 142, 0.3);
}

.cta-card h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 32px;
}

/* Company Info */
.company-info {
    padding: 80px 0;
}

.company-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.company-brand {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 32px;
}

.about-logo {
    height: 96px;
    width: auto;
}

.company-brand h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 8px;
}

.company-slogan {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

.company-description p {
    margin-bottom: 20px;
    color: #666;
    line-height: 1.7;
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
}

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

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

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
}

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

.value-card {
    background: white;
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.value-card h3 {
    color: var(--text-gray);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
}

/* Fleet Types */
.fleet-types {
    padding: 80px 0;
}

.fleet-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.fleet-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.fleet-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover img {
    transform: scale(1.1);
}

.fleet-content {
    padding: 32px;
}

.fleet-content h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.fleet-subtitle {
    color: #666;
    font-weight: 600;
    margin-bottom: 16px;
}

.fleet-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
    font-size: 0.9rem;
}

.features-list h4 {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.features-list ul {
    list-style: none;
}

.features-list li {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Why Choose Us */
.why-choose {
    padding: 80px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 48px;
    margin-top: 48px;
}

.why-item {
    text-align: center;
    color: white;
}

.why-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.why-item h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.why-item p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Vehicle Gallery */
.vehicle-gallery {
    padding: 80px 0;
}

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

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-info {
    padding: 24px;
    text-align: center;
}

.gallery-brand {
    color: var(--primary-blue);
    font-size: 1.1rem;
    font-weight: 600;
}

/* Vehicle Stats */
.vehicle-stats {
    padding: 80px 0;
    background: var(--light-gray);
}

/* Vehicle Features */
.vehicle-features {
    padding: 80px 0;
}

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

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card, .form-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.contact-card h3, .form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.detail-icon {
    font-size: 1.5rem;
    margin-top: 4px;
    color: var(--primary-blue);
}

.contact-detail h4 {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
}

.contact-detail p {
    color: #666;
    margin: 2px 0;
}

.working-hours-card {
    background: var(--primary-blue);
    color: white;
    padding: 40px;
    border-radius: 16px;
}

.working-hours-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.working-hours-content .detail-icon {
    color: white;
}

.working-hours-content h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 16px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hour-item span:first-child {
    opacity: 0.9;
}

.hour-item span:last-child {
    font-weight: 600;
}

/* Contact Form */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(13, 59, 142, 0.1);
}

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

/* Map Section */
.map-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

/* Success Message */
.success-message {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.success-content {
    background: white;
    padding: 48px 64px;
    border-radius: 16px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
}

.success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #4caf50;
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 24px;
}

.success-content h3 {
    color: var(--text-gray);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.success-content p {
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--light-gray);
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-gray);
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.footer {
    background: var(--primary-blue);
    color: white;
    padding: 64px 0 0;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.footer-logo {
    height: 48px;
    filter: brightness(0) invert(1);
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.9rem;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.contact-icon {
    font-size: 1.2rem;
    margin-top: 2px;
}

.contact-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-bottom {
    background: var(--dark-blue);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links,
    .nav-contact {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .company-name {
        display: block;
    }

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

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

    .about-grid,
    .company-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

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

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

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

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

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

    .hero-description {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
    }

    .features-grid,
    .fleet-grid,
    .values-grid,
    .fleet-cards {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 24px;
    }

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

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

    .page-title {
        font-size: 2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .cta-card {
        padding: 48px 32px;
    }

    .cta-card h2 {
        font-size: 1.5rem;
    }

    .contact-card,
    .form-card {
        padding: 32px 24px;
    }

    .working-hours-card {
        padding: 32px 24px;
    }
}

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

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

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

    .page-title {
        font-size: 1.8rem;
    }

    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .feature-card,
    .value-card {
        padding: 32px 24px;
    }

    .fleet-content {
        padding: 24px;
    }

    .success-content {
        padding: 32px 24px;
        margin: 16px;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-menu,
    .scroll-indicator,
    .success-message {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .hero-bg,
    .hero-overlay {
        display: none;
    }

    .hero-content {
        color: var(--text-gray);
    }

    * {
        box-shadow: none !important;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .scroll-indicator {
        animation: none;
    }

    .wheel {
        animation: none;
    }
}

/* Focus styles for better accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid var(--primary-blue);
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .hero-overlay {
        background: rgba(0, 0, 0, 0.8);
    }

    .btn {
        border: 2px solid currentColor;
    }
}