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

:root {
    --primary-color: #1a8a99;
    --secondary-color: #2ba4b5;
    --accent-color: #1a6b77;
    --text-dark: #2c3e50;
    --text-light: #5a6c7d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

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

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 40px;
}

/* Header Styles */
header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover {
    color: var(--primary-color);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

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

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 8px;
}

.lang-btn {
    background-color: transparent;
    border: 2px solid var(--text-light);
    color: var(--text-dark);
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.lang-btn.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--white);
}

/* Hero Section */
.hero {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: var(--white);
    padding: 200px 20px 100px;
    text-align: center;
    margin-top: 90px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Background Image - Only on Desktop */
@media (min-width: 769px) {
    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url('background-01.jpg');
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        opacity: 0.3;
        z-index: 0;
    }
    
    .hero-content {
        position: relative;
        z-index: 1;
    }
}

.hero-content {
    max-width: 1200px;
    width: 100%;
}

.hero-title {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 40px;
    color: white;
}

.highlight-word {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight-word::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

/* Hero Search Box */
.hero-search-box {
    background: white;
    border-radius: 15px;
    padding: 15px;
    display: flex;
    gap: 15px;
    max-width: 900px;
    margin: 0 auto 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.hero-select {
    flex: 1;
    padding: 18px 20px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    background-color: #f8f9fa;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-select:hover {
    background-color: #e9ecef;
}

.hero-select:focus {
    outline: none;
    background-color: #e9ecef;
    box-shadow: 0 0 0 3px rgba(26, 138, 153, 0.1);
}

.hero-search-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 18px 35px;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-search-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(26, 138, 153, 0.4);
}

/* Vehicle Types */
.vehicle-types {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.vehicle-type-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.vehicle-type-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: white;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.05);
}

.vehicle-type-item:hover .vehicle-type-icon {
    border-color: var(--primary-color);
    background: rgba(26, 138, 153, 0.2);
    box-shadow: 0 0 20px rgba(26, 138, 153, 0.5);
}

.vehicle-type-item span {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.btn {
    display: inline-block;
    background-color: var(--white);
    color: var(--primary-color);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid var(--white);
}

.btn:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Trust Section */
.trust-section {
    background-color: var(--white);
    padding: 30px 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
}

.trust-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    font-size: 36px;
    color: var(--primary-color);
}

.trust-item h4 {
    color: var(--text-dark);
    font-size: 16px;
    font-weight: 600;
}

/* About Section */
.about {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.about h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    margin-top: 50px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
}

.about-values {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: var(--shadow);
}

.about-values h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 22px;
}

.value-item {
    display: flex;
    gap: 15px;
    align-items: start;
    margin-bottom: 20px;
}

.value-item:last-child {
    margin-bottom: 0;
}

.value-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.value-item h4 {
    color: var(--text-dark);
    margin-bottom: 5px;
    font-size: 18px;
}

.value-item p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow);
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature i {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.feature h3 {
    color: var(--text-dark);
    margin-bottom: 12px;
    font-size: 20px;
}

.feature p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 80px 20px;
    background-color: var(--white);
}

.services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.services-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-top: 30px;
}

.service-card-full {
    max-width: 100%;
}

.service-card {
    background-color: var(--bg-light);
    padding: 40px 30px;
    border-radius: 10px;
    text-align: left;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.service-card i {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 22px;
}

.service-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-dark);
    font-size: 14px;
}

.service-features li i {
    font-size: 18px;
    color: var(--primary-color);
    margin-top: 2px;
}

/* Why Us Section */
.why-us {
    padding: 80px 20px;
    background-color: var(--bg-light);
}

.why-us h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.why-card {
    background-color: var(--white);
    padding: 35px 30px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.why-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    display: block;
}

.why-card h3 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-size: 20px;
}

.why-card p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* Contact Section */
.contact {
    padding: 80px 20px;
    background-color: var(--white);
}

.contact h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info h3,
.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 24px;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.info-item i {
    font-size: 28px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 5px;
}

.info-item strong {
    color: var(--text-dark);
    display: block;
    margin-bottom: 8px;
    font-size: 16px;
}

.info-item p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Contact Form */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    width: 100%;
}

.contact-form .btn:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

/* Footer */
footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 50px 20px 20px;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-section p {
    color: #bdc3c7;
    font-size: 14px;
    line-height: 1.7;
}

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

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

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 20px;
    }
    
    .hero-title {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 15px;
        padding: 12px 15px;
    }

    .logo img {
        height: 80px;
    }

    nav {
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        font-size: 14px;
    }
    
    .nav-menu li a {
        font-size: 14px;
        padding: 8px 12px;
    }

    .language-switcher {
        justify-content: center;
        gap: 6px;
    }
    
    .lang-btn {
        padding: 6px 10px;
        font-size: 13px;
    }

    /* Hero Mobile */
    .hero {
        padding: 140px 15px 60px;
        min-height: 500px;
    }
    
    .hero-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-search-box {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    
    .hero-select {
        width: 100%;
        padding: 16px;
        font-size: 15px;
    }
    
    .hero-search-btn {
        width: 100%;
        padding: 16px;
    }
    
    .vehicle-types {
        gap: 20px;
    }
    
    .vehicle-type-icon {
        width: 70px;
        height: 70px;
        font-size: 32px;
    }
    
    .vehicle-type-item span {
        font-size: 13px;
    }

    .hero-content > p {
        font-size: 16px;
    }

    .hero-stats {
        gap: 30px;
    }

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

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

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

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

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

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

@media (max-width: 480px) {
    .logo img {
        height: 80px;
    }

    .hero {
        padding: 120px 10px 50px;
        min-height: 450px;
    }

    .hero-title {
        font-size: 26px;
        margin-bottom: 25px;
        line-height: 1.3;
    }
    
    .highlight-word::after {
        height: 3px;
        bottom: -3px;
    }
    
    .hero-search-box {
        padding: 15px;
    }
    
    .vehicle-types {
        gap: 15px;
    }
    
    .vehicle-type-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-width: 2px;
    }
    
    .vehicle-type-item span {
        font-size: 12px;
    }

    h2 {
        font-size: 30px !important;
    }

    .stat-number {
        font-size: 32px;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

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

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(26, 138, 153, 0.9) 0%, rgba(43, 164, 181, 0.9) 100%), 
                url('background2.jpg') center/cover no-repeat;
    color: white;
    padding: 150px 20px 80px;
    text-align: center;
    margin-top: 90px;
    position: relative;
}

/* Page-specific backgrounds */
.page-header.fleet-header {
    background-image: linear-gradient(135deg, rgba(26, 138, 153, 0.9) 0%, rgba(43, 164, 181, 0.9) 100%), 
                      url('background3.jpg');
}

.page-header.tire-header {
    background-image: linear-gradient(135deg, rgba(26, 138, 153, 0.9) 0%, rgba(43, 164, 181, 0.9) 100%), 
                      url('background4.jpg');
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header i {
    font-size: 48px;
    margin-right: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.95;
}

/* Appointment Page */
.appointment-section {
    padding: 80px 20px;
}

.appointment-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.appointment-info h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-list {
    list-style: none;
    margin: 25px 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-size: 16px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 20px;
}

.price-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 30px 0;
}

.price-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

.price-amount {
    font-size: 48px;
    font-weight: 700;
    margin: 10px 0;
}

.price-note {
    font-size: 14px;
    opacity: 0.9;
}

.info-box {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    gap: 15px;
    align-items: start;
}

.info-box i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.appointment-form-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
}

.appointment-form-container h3 {
    color: var(--text-dark);
    margin-bottom: 25px;
    font-size: 24px;
}

.btn-large {
    padding: 18px 40px;
    font-size: 18px;
    width: 100%;
}

.btn-large i {
    margin-right: 10px;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 14px;
    margin-top: 15px;
}

/* Fleet Page */
.filter-section {
    padding: 40px 20px;
    background-color: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.filter-container {
    display: flex;
    gap: 20px;
    align-items: end;
    flex-wrap: wrap;
}

.filter-item {
    flex: 1;
    min-width: 200px;
}

.filter-item label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 14px;
}

.filter-item select {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e0e0e0;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
}

.fleet-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
}

.vehicles-count {
    color: var(--text-light);
    margin-bottom: 25px;
    font-size: 16px;
    font-weight: 500;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 30px;
}

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

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

.vehicle-image-public {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 64px;
}

.vehicle-image-public img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-content {
    padding: 25px;
}

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

.vehicle-header-public h3 {
    color: var(--text-dark);
    font-size: 24px;
    flex: 1;
}

.vehicle-price-public {
    color: var(--primary-color);
    font-size: 28px;
    font-weight: 700;
    white-space: nowrap;
}

.vehicle-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-size: 14px;
}

.spec-item i {
    color: var(--primary-color);
    font-size: 18px;
}

.vehicle-description {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.btn-full {
    width: 100%;
    text-align: center;
}

.no-vehicles {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 15px;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.no-vehicles i {
    font-size: 64px;
    color: var(--text-light);
}

.no-vehicles h3 {
    color: var(--text-dark);
    font-size: 24px;
}

.no-vehicles p {
    color: var(--text-light);
    max-width: 500px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Footer Developer Section */
.footer-developer {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-developer p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: 15px;
}

.developer-logo {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
    opacity: 0.8;
}

.developer-logo:hover {
    transform: scale(1.05);
    opacity: 1;
}

.developer-logo img {
    height: 40px;
    width: auto;
}

/* Responsive Updates */
@media (max-width: 968px) {
    /* ANGEPASSTER MOBILE HEADER */
    header {
        padding: 0;
    }
    
    header .container {
        padding: 10px 15px;
        position: relative;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        min-height: 60px;
    }
    
    /* Logo links positionieren und verkleinern */
    .logo {
        position: absolute;
        left: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
    }
    
    .logo img {
        height: 80px;
    }
    
    /* Hamburger-Menü rechts */
    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 15px;
        z-index: 1002;
        font-size: 26px;
        padding: 8px;
    }
    
    /* Navigation Overlay */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 80px 20px 40px;
        gap: 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li a {
        display: block;
        padding: 18px 20px;
        width: 100%;
        font-size: 18px;
    }
    
    .nav-menu li a::after {
        display: none;
    }
    
    .language-switcher {
        width: 100%;
        justify-content: center;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
    }
    
    /* Hero anpassen für mobile */
    .hero {
        margin-top: 60px;
        padding: 100px 20px 70px;
        min-height: 480px;
    }
    
    .hero-title {
        font-size: 30px;
        margin-bottom: 30px;
    }
    
    .hero-search-box {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }
    
    .hero-select,
    .hero-search-btn {
        width: 100%;
    }
    
    .vehicle-types {
        gap: 20px;
    }
    
    .vehicle-type-icon {
        width: 65px;
        height: 65px;
        font-size: 30px;
    }
    
    .vehicle-type-item span {
        font-size: 13px;
    }
    
    /* FOOTER ANPASSUNGEN - KOMPAKTER */
    footer {
        padding: 35px 20px 15px;
    }
    
    .footer-content {
        gap: 25px;
        margin-bottom: 20px;
    }
    
    .footer-section {
        padding: 0;
    }
    
    .footer-section h4 {
        font-size: 16px;
        margin-bottom: 12px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 13px;
    }
    
    .footer-section ul li {
        margin-bottom: 8px;
    }
    
    .footer-bottom {
        padding-top: 15px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
    
    .footer-developer {
        margin-top: 20px;
        padding-top: 20px;
    }
    
    .footer-developer p {
        font-size: 12px;
        margin-bottom: 10px;
    }
    
    .developer-logo img {
        height: 32px;
    }
}

@media (max-width: 768px) {
    .appointment-container {
        grid-template-columns: 1fr;
    }

    .filter-container {
        flex-direction: column;
    }

    .filter-item {
        width: 100%;
    }

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

@media (max-width: 480px) {
    /* Extra kleine Bildschirme */
    .logo img {
        height: 60px;
    }
    
    .mobile-menu-toggle {
        font-size: 24px;
    }
    
    .hero {
        padding: 90px 15px 60px;
        min-height: 420px;
    }
    
    .hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    
    .vehicle-type-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }
    
    .vehicle-type-item span {
        font-size: 12px;
    }
    
    /* Footer noch kompakter */
    footer {
        padding: 30px 15px 12px;
    }
    
    .footer-section h4 {
        font-size: 15px;
    }
    
    .footer-section p,
    .footer-section ul li a {
        font-size: 12px;
    }
    
    .footer-developer p {
        font-size: 11px;
    }
    
    .developer-logo img {
        height: 28px;
    }
}