/* Placeholder Images */
.logo-placeholder {
    width: 50px;
    height: 50px;
    background-image: url('images/hut-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

.logo-placeholder span {
    display: none; /* Hide text when logo image is used */
}

.footer .logo-placeholder span {
    display: none; /* Hide text in footer, show only image */
}

.vehicle-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vehicle-image::before {
    content: "🚛";
    font-size: 3rem;
    position: absolute;
    opacity: 0.3;
}

.cert-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    position: relative;
    margin: 0 auto 20px;
}

.cert-image::before {
    content: "📜";
    font-size: 2rem;
}

.author-image {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.author-image::before {
    content: "👤";
    font-size: 1.5rem;
}

.about-main-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.fleet-image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Hero background placeholder */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                url('images/truck-hero.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Navigation - Mobile First Approach */

/* Base Mobile Styles (320px+) */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 64px;
    position: relative;
}

/* Logo - Mobile First */
.nav-logo {
    z-index: 1002;
}

.nav-logo .logo {
    height: 36px;
    width: auto;
    transition: height 0.3s ease;
}

/* Mobile Menu Toggle */
.hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
    z-index: 1002;
    padding: 4px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hamburger:hover {
    background: rgba(14, 165, 233, 0.1);
}

.hamburger span {
    width: 100%;
    height: 2px;
    background: #1e293b;
    border-radius: 1px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Mobile Navigation Menu */
.nav-menu {
    position: fixed;
    top: 64px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 64px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    padding: 20px 0;
    list-style: none;
    margin: 0;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

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

.nav-menu li {
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-menu li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    padding: 16px 24px;
    text-decoration: none;
    color: #1e293b;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid transparent;
}

.nav-link:hover,
.nav-link:focus {
    background: rgba(14, 165, 233, 0.08);
    color: #0ea5e9;
    border-left-color: #0ea5e9;
    transform: translateX(4px);
}

.nav-link:active {
    background: rgba(14, 165, 233, 0.12);
}

.nav-link::after {
    display: none;
}

/* Mobile Contact Button */
.contact-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white !important;
    margin: 20px 24px;
    padding: 16px 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 16px;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    border: none;
    border-left: 4px solid transparent !important;
    transform: none !important;
}

.contact-btn:hover,
.contact-btn:focus {
    background: linear-gradient(135deg, #0284c7, #0369a1) !important;
    color: white !important;
    box-shadow: 0 6px 16px rgba(14, 165, 233, 0.4);
    transform: translateY(-2px) !important;
    border-left-color: transparent !important;
}

/* Overlay for mobile menu */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Prevent body scroll when menu is open */
body.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* Tablet Portrait (600px+) */
@media (min-width: 600px) {
    .nav-container {
        padding: 0 24px;
        height: 70px;
    }
    
    .nav-logo .logo {
        height: 40px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding: 24px 0;
    }
    
    .nav-link {
        padding: 18px 32px;
        font-size: 17px;
    }
    
    .contact-btn {
        margin: 24px 32px;
        padding: 18px 32px;
        font-size: 17px;
        border-radius: 14px;
    }
}

/* Tablet Landscape (768px+) */
@media (min-width: 768px) {
    .nav-container {
        height: 76px;
        padding: 0 32px;
    }
    
    .nav-logo .logo {
        height: 44px;
    }
    
    .hamburger {
        width: 30px;
        height: 22px;
    }
    
    .nav-menu {
        top: 76px;
        height: calc(100vh - 76px);
        padding: 28px 0;
    }
    
    .nav-link {
        padding: 20px 40px;
        font-size: 18px;
    }
    
    .contact-btn {
        margin: 28px 40px;
        padding: 20px 40px;
        font-size: 18px;
        border-radius: 16px;
    }
}

/* Desktop Small (1024px+) */
@media (min-width: 1024px) {
    .hamburger {
        display: none;
    }
    
    .nav-container {
        height: 80px;
        padding: 0 40px;
    }
    
    .nav-logo .logo {
        height: 48px;
    }
    
    .nav-menu {
        position: static;
        top: auto;
        left: auto;
        width: auto;
        height: auto;
        background: transparent;
        backdrop-filter: none;
        flex-direction: row;
        align-items: center;
        gap: 24px;
        padding: 0;
        margin: 0;
        box-shadow: none;
        overflow: visible;
    }
    
    .nav-menu li {
        border-bottom: none;
    }
    
    .nav-link {
        padding: 8px 12px;
        font-size: 15px;
        font-weight: 500;
        color: #334155;
        border-left: none;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-link:hover,
    .nav-link:focus {
        background: transparent;
        color: #0ea5e9;
        transform: none;
        border-left: none;
    }
    
    .nav-link::after {
        display: block;
        content: '';
        position: absolute;
        width: 0;
        height: 2px;
        bottom: -2px;
        left: 50%;
        background: linear-gradient(90deg, #0ea5e9, #0284c7);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after,
    .nav-link:focus::after {
        width: 100%;
    }
    
    .contact-btn {
        margin: 0;
        padding: 12px 24px;
        font-size: 15px;
        font-weight: 600;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(14, 165, 233, 0.2);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .contact-btn:hover,
    .contact-btn:focus {
        background: linear-gradient(135deg, #0284c7, #0369a1) !important;
        color: white !important;
        transform: translateY(-1px);
        box-shadow: 0 4px 16px rgba(14, 165, 233, 0.3);
    }
    
    .nav-overlay {
        display: none;
    }
    
    /* Footer Desktop Layout */
    .footer-content {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 32px;
    }
    
    .footer-section {
        margin-bottom: 0;
    }
}

/* Desktop Large (1200px+) */
@media (min-width: 1200px) {
    .nav-container {
        padding: 0 48px;
    }
    
    .nav-menu {
        gap: 32px;
    }
    
    .nav-link {
        padding: 10px 16px;
        font-size: 16px;
    }
    
    .contact-btn {
        padding: 14px 28px;
        font-size: 16px;
    }
}

/* Desktop Extra Large (1440px+) */
@media (min-width: 1440px) {
    .nav-container {
        padding: 0 60px;
    }
    
    .nav-menu {
        gap: 36px;
    }
}

/* Accessibility & Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    .navbar,
    .nav-menu,
    .nav-link,
    .contact-btn,
    .hamburger,
    .hamburger span {
        transition: none;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .navbar {
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
    }
}

/* Styles moved to mobile-first section above */

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    margin-bottom: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-subtitle {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 1.5rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 15px 35px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 20px;
}

.cta-button:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(14, 165, 233, 0.4);
}

/* Anniversary Banner */
.anniversary-banner {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 60px 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.anniversary-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 15px;
    font-weight: 600;
}

.anniversary-content p {
    font-size: 1.5rem;
    color: #64748b;
}

.anniversary-content strong {
    color: #0ea5e9;
    font-weight: 700;
}

/* Services Section */
.services {
    padding: 0 0 100px 0;
    background: white;
    margin-top: -50px;
    position: relative;
    z-index: 1;
}

.custom-requests {
    margin-top: 60px;
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.custom-requests-content h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.custom-requests-content p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 24px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.custom-requests-btn {
    display: inline-block;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 12px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.custom-requests-btn:hover {
    background: linear-gradient(135deg, #0284c7, #0369a1);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(14, 165, 233, 0.4);
}

.services-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    padding-top: 130px;
}

.section-subtitle {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #0ea5e9 !important;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 30px;
}

.section-description {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 20px;
    line-height: 1.7;
}

.tagline {
    font-size: 1.2rem;
    color: #1e293b;
    margin-top: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid #e2e8f0;
}

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

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-icon .material-icons {
    font-size: 40px;
    color: white;
    transition: all 0.3s ease;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.service-card p {
    color: #64748b;
    font-size: 1rem;
    margin-bottom: 15px;
}

.service-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #0284c7;
}

.special-requests .service-link {
    color: rgba(255, 255, 255, 0.9);
}

.special-requests .service-link:hover {
    color: white;
}

.new-service {
    position: relative;
}

.new-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.special-requests {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
}

.special-requests h3,
.special-requests p {
    color: white;
}

.special-requests .service-icon {
    background: rgba(255, 255, 255, 0.2);
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

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

.about-image {
    position: relative;
}

.fleet-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    z-index: -1;
}

.about-text p {
    margin-bottom: 20px;
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.7;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 40px;
}

/* Footer */
/* Footer - Classic Tailwind/Bootstrap Style */

.footer {
    background-color: #1f2937;
    color: white;
    padding: 48px 0 16px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-section {
    margin-bottom: 16px;
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f9fafb;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    space-y: 8px;
}

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.footer-section a:hover {
    color: #3b82f6;
}

.footer .logo-placeholder {
    width: 50px;
    height: 50px;
    background-image: url('images/hut-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-brand p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 0;
}

.footer-section p {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

.business-hours {
    color: #d1d5db;
    font-size: 0.875rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4px;
}

.hours-note {
    margin-top: 8px;
    font-style: italic;
    color: #9ca3af;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 16px;
    text-align: center;
}

.footer-bottom p {
    color: #9ca3af;
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom a {
    color: #3b82f6;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design - Mobile Navigation */
@media (max-width: 768px) {
    .hamburger {
        display: flex !important;
    }
    
    .nav-menu {
        position: fixed !important;
        left: -100% !important;
        top: 80px !important;
        flex-direction: column !important;
        background-color: white !important;
        width: 100% !important;
        text-align: center !important;
        transition: all 0.3s ease !important;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1) !important;
        padding: 20px 0 !important;
        gap: 8px !important;
        z-index: 999 !important;
        border-radius: 0 0 15px 15px !important;
    }
    
    .nav-menu.active {
        left: 0 !important;
    }
    
    .nav-menu li {
        margin: 8px 0 !important;
        border-bottom: none !important;
    }
    
    .nav-link {
        display: block !important;
        padding: 12px 20px !important;
        border-radius: 8px !important;
        margin: 0 20px !important;
        transition: all 0.3s ease !important;
    }
    
    .nav-link:hover {
        background: rgba(37, 99, 235, 0.1) !important;
        color: #2563eb !important;
    }
    
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .anniversary-content h2 {
        font-size: 1.8rem;
    }
    
    .anniversary-content p {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image::before {
        display: none;
    }
    
    /* Footer Mobile Responsiveness */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-section {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .hero-content {
        padding: 0 15px;
    }
}

/* Animation keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card {
    animation: fadeInUp 0.6s ease forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #0ea5e9;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0284c7;
}

/* Services Page Specific Styles */
.services-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.services-hero-content p {
    font-size: 1.3rem;
    opacity: 0.8;
}

.detailed-services {
    padding: 100px 0;
    background: white;
}

.service-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px 0;
}

.service-detail.reverse {
    grid-template-columns: 1fr 1fr;
}

.service-detail.reverse .service-detail-content {
    order: 2;
}

.service-detail.reverse .service-detail-image {
    order: 1;
}

.service-detail:nth-child(even) {
    background: #f8fafc;
    margin-left: -20px;
    margin-right: -20px;
    padding-left: 20px;
    padding-right: 20px;
    border-radius: 20px;
}

.service-detail h2 {
    font-size: 2.5rem;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.service-detail h3 {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 30px;
}

.service-detail h4 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 30px 0 15px 0;
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.service-detail ul {
    list-style: none;
    padding: 0;
}

.service-detail li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    color: #64748b;
    font-size: 1rem;
}

.service-detail li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

/* Mobile responsiveness for services page */
@media (max-width: 768px) {
    .services-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .detailed-services {
        padding: 60px 0;
    }
    
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 80px;
    }
    
    .service-detail.reverse .service-detail-content,
    .service-detail.reverse .service-detail-image {
        order: unset;
    }
    
    .service-detail h2 {
        font-size: 2rem;
    }
    
    .service-detail-image img {
        height: 250px;
    }
}

/* Fleet Section */
.fleet {
    padding: 100px 0;
    background: white;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #64748b;
    font-weight: 500;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
    max-width: 100%;
}

/* Compact Fleet Grid */
.fleet-grid-compact {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.vehicle-card-compact {
    background: white;
    border-radius: 16px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 232, 240, 0.6);
}

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

.vehicle-icon-compact {
    width: 48px;
    height: 48px;
    background: #0ea5e9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.3);
}

.vehicle-icon-compact .material-icons {
    color: white;
    font-size: 24px;
}

.vehicle-card-compact h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1e293b;
}

.vehicle-card-compact p {
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 12px;
    line-height: 1.4;
}

.vehicle-features {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.vehicle-features span {
    font-size: 0.75rem;
    color: #475569;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 12px;
    display: inline-block;
}

/* Responsive Fleet Grid */
@media (max-width: 1024px) {
    .fleet-grid-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .fleet-grid-compact {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 30px;
    }
    
    .vehicle-card-compact {
        padding: 20px;
    }
    
    .vehicle-features {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 6px;
        justify-content: center;
    }
}

.vehicle-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 50%;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.vehicle-icon .material-icons {
    font-size: 40px;
    color: white;
}

.vehicle-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f5f9;
}

.vehicle-info {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.vehicle-info h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.vehicle-info p {
    color: #374151;
    margin-bottom: 20px;
    font-weight: 500;
}

.vehicle-info ul {
    list-style: none;
    padding: 0;
}

.vehicle-info li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
}

.vehicle-info li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

/* Gallery Preview Section */
.gallery-preview {
    padding: 100px 0;
    background: #f8fafc;
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(14, 165, 233, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay .material-icons {
    font-size: 3rem;
    color: white;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

.gallery-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Certifications Section */
.certifications {
    padding: 100px 0;
    background: #f8fafc;
}

.certification-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.certification-main-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.cert-card {
    background: white;
    padding: 30px 20px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.cert-image {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 20px;
    background: #f8fafc;
    border-radius: 10px;
    padding: 15px;
}

.cert-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 10px;
}

.cert-card p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border-left: 5px solid #0ea5e9;
}

.quote-icon {
    font-size: 4rem;
    color: #0ea5e9;
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    right: 30px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #1e293b;
    margin-bottom: 30px;
    font-style: italic;
}

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

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #e2e8f0;
}

.author-info h4 {
    color: #1e293b;
    margin-bottom: 5px;
}

.author-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.rating {
    color: #fbbf24;
    font-size: 1.2rem;
}

.review-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

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

.review-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

.review-stat .stat-label {
    color: #fbbf24;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.review-stat .stat-description {
    color: #64748b;
    font-size: 0.9rem;
}

/* News Section */
.news {
    padding: 100px 0;
    background: #f8fafc;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.news-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: #f1f5f9;
}

.news-content {
    padding: 30px;
}

.news-date {
    color: #0ea5e9;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 10px;
}

.news-content h3 {
    color: #1e293b;
    font-size: 1.3rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.read-more {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #0284c7;
}

/* Careers CTA Section */
/* Modern Careers Section */
.careers-modern {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

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

.careers-content {
    max-width: 500px;
}

.careers-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #0ea5e9;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.careers-badge .material-icons {
    font-size: 18px;
}

.careers-content h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.careers-content p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 32px;
}

.careers-highlights {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-weight: 500;
}

.highlight-item .material-icons {
    color: #0ea5e9;
    font-size: 20px;
    background: #eff6ff;
    padding: 8px;
    border-radius: 8px;
}

.careers-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.careers-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.careers-btn .material-icons {
    font-size: 20px;
}

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

.career-image-placeholder {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.career-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.career-image:hover {
    transform: scale(1.05);
}


.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #1e293b;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.card-header .material-icons {
    color: #0ea5e9;
    font-size: 24px;
}

.job-preview {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.job-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    background: #f8fafc;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.job-item:hover {
    background: #eff6ff;
    transform: translateX(4px);
}

.job-item .job-icon {
    font-size: 20px;
    margin-right: 12px;
}

.job-item span:nth-child(2) {
    color: #475569;
    font-weight: 500;
    flex-grow: 1;
}

.job-count {
    background: #0ea5e9;
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 24px;
    text-align: center;
}

.career-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
}

.benefit-card {
    text-align: center;
    padding: 40px 20px;
    background: #f8fafc;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.benefit-icon svg {
    width: 30px;
    height: 30px;
}

.benefit-card h3 {
    color: #1e293b;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.benefit-card p {
    color: #64748b;
    font-size: 0.95rem;
}

.job-listings {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid #e2e8f0;
}

.job-listings h3 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

/* Job Section Styles */
.job-section {
    margin-bottom: 50px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e2e8f0;
}

.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 20px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 20px;
    border-left: 4px solid #e2e8f0;
    cursor: pointer;
}

.job-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.job-icon .material-icons {
    color: white;
    font-size: 20px;
}

.job-content {
    flex: 1;
}

.job-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1e293b;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.job-link {
    color: #0ea5e9;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.job-link:hover {
    color: #0284c7;
}

.job-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
}

.job-location,
.job-level,
.job-payment {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}

.job-location .material-icons,
.job-level .material-icons,
.job-payment .material-icons {
    font-size: 16px;
    color: #94a3b8;
}

.job-meta strong {
    color: #1e293b;
    font-weight: 600;
    margin-left: auto;
}

.job-card:hover {
    background: #f8fafc;
    box-shadow: 0 4px 15px rgba(14, 165, 233, 0.08);
    transform: translateY(-1px);
    border-color: #0ea5e9;
    border-left-color: #0ea5e9;
}

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

.job-header h4 {
    color: #1e293b;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.job-type {
    background: #0ea5e9;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.job-details p {
    color: #64748b;
    margin-bottom: 15px;
}

.job-details strong {
    color: #1e293b;
}

.job-details ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.job-details li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
    color: #64748b;
}

.job-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

.apply-button {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    display: inline-block;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.apply-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(14, 165, 233, 0.4);
}

.application-info {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin-top: 50px;
}

.application-info h3 {
    color: #1e293b;
    margin-bottom: 15px;
}

.application-info p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    color: white;
    text-align: center;
}

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

.contact-hero h2 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    margin-bottom: 60px;
}

.contact-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-action-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    text-align: center;
}

.contact-action-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
}

.contact-action-card.primary {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.action-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.action-icon .material-icons {
    color: white;
    font-size: 40px;
}

.action-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 8px;
}

.action-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    font-size: 1rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.action-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.action-btn.primary {
    background: white;
    color: #0ea5e9;
}

.action-btn.primary:hover {
    background: #f8fafc;
    color: #0284c7;
}

.action-btn .material-icons {
    font-size: 18px;
}


.map-container {
    margin-top: 60px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certification-image-container {
        margin-top: 40px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .career-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .job-header {
        flex-direction: column;
        gap: 10px;
        align-items: start;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-cta-container {
        padding: 30px;
    }
    
    .primary-contact-card {
        padding: 30px 15px;
    }
}

/* Services Overview Grid */
.services-grid-section {
    padding: 100px 0;
    background: white;
}

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

.service-overview-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
    position: relative;
}

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

.service-overview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.service-overview-icon svg {
    width: 40px;
    height: 40px;
}

.service-overview-icon .material-icons {
    font-size: 40px;
    color: white;
}

.service-overview-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 15px;
}

.service-overview-card p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-detail-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.service-detail-link:hover {
    color: #0284c7;
}

.service-overview-card.new-service .service-detail-link {
    color: #0ea5e9;
}

/* Service Stats */
.service-stats {
    padding: 80px 0;
    background: #f8fafc;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.stat-item .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 10px;
}

.stat-item .stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

/* Mobile Responsiveness for Services Overview */
@media (max-width: 768px) {
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .service-overview-card {
        padding: 30px 20px;
    }
}

/* Individual Service Page Styles */
.service-page-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.service-page-hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.service-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.service-hero-icon svg {
    width: 50px;
    height: 50px;
}

.service-page-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-page-hero p {
    font-size: 1.3rem;
    opacity: 0.8;
}

.new-badge-hero {
    background: linear-gradient(135deg, #ef4444, #dc2626);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 15px;
    vertical-align: middle;
}

.service-detail-content {
    padding: 100px 0;
    background: white;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.service-main-content h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    line-height: 1.3;
}

.service-main-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 30px;
}

.content-section {
    margin: 50px 0;
}

.content-section h3 {
    font-size: 1.5rem;
    color: #1e293b;
    margin-bottom: 25px;
}

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

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
    transition: all 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.feature-item:hover {
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item span:last-child {
    flex: 1;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
}

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

.airport-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.airport-item:hover {
    border-color: #0ea5e9;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

.airport-icon {
    font-size: 2rem;
}

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

.airport-info strong {
    color: #1e293b;
    font-size: 1.1rem;
}

.airport-info span {
    color: #64748b;
    font-size: 0.9rem;
}

.service-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: sticky;
    top: 100px;
    align-self: start;
    max-height: calc(100vh - 150px);
    overflow-y: auto;
}

.service-image-placeholder {
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    font-weight: 500;
    font-size: 1.1rem;
}

.service-image {
    width: 100%;
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 15px;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.view-gallery-cta {
    margin-bottom: 20px;
}

.view-gallery-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #0ea5e9;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.view-gallery-btn:hover {
    background: #0284c7;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.view-gallery-btn .material-icons {
    font-size: 18px;
}

.quick-contact {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
}

.quick-contact h4 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.quick-contact p {
    margin-bottom: 20px;
    opacity: 0.9;
}

.contact-btn-small {
    background: white;
    color: #0ea5e9;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.contact-btn-small:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.service-features {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e2e8f0;
}

.service-features h4 {
    color: #1e293b;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #64748b;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    font-weight: bold;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: #f8fafc;
}

.related-services h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
}

.related-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.related-service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

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

.related-service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.related-service-icon svg {
    width: 35px;
    height: 35px;
}
.related-service-icon .material-icons {
    color: white;
    font-size: 35px;
}

.related-service-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 10px;
}

.related-service-card p {
    color: #64748b;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.related-service-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.related-service-link:hover {
    color: #0284c7;
}

/* Mobile Responsiveness for Service Pages */
@media (max-width: 768px) {
    .service-page-hero h1 {
        font-size: 2.5rem;
    }
    
    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .service-sidebar {
        position: static;
        order: -1;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
    
    .airport-list {
        grid-template-columns: 1fr;
    }
    
    .related-services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-main-content h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .fleet-stats {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .certification-image-container {
        margin-top: 30px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .vehicle-info,
    .cert-card,
    .news-content,
    .job-card {
        padding: 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .job-meta {
        min-width: auto;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .job-location,
    .job-level,
    .job-payment {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* Gallery Full Page Styles */
.gallery-full {
    padding: 60px 0 100px;
    background: white;
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Gallery Modal Styles */
.gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
}

.gallery-modal-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.gallery-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: white;
    font-size: 3rem;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 10001;
}

.gallery-close:hover {
    opacity: 0.7;
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 20px;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
}

.gallery-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 40px;
}

.gallery-next {
    right: 40px;
}

.gallery-nav .material-icons {
    font-size: 2rem;
}

.gallery-counter {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: 500;
    z-index: 10001;
}

.page-hero-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    backdrop-filter: blur(10px);
}

.page-hero-icon .material-icons {
    font-size: 50px;
    color: white;
}

/* Legal Page Styles */
.legal-content {
    padding: 60px 0 100px;
    background: white;
}

.legal-nav {
    display: flex;
    gap: 10px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.legal-tab {
    background: #f1f5f9;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    font-weight: 500;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.legal-tab:hover {
    background: #e2e8f0;
    color: #475569;
}

.legal-tab.active {
    background: #0ea5e9;
    color: white;
}

.legal-section {
    display: none;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.legal-section.active {
    display: block;
}

.legal-section h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 30px;
    border-bottom: 3px solid #0ea5e9;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 1.5rem;
    color: #0ea5e9;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-section h4 {
    font-size: 1.2rem;
    color: #374151;
    margin: 20px 0 10px;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 15px;
    color: #4b5563;
}

.legal-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.legal-section li {
    margin-bottom: 8px;
    color: #4b5563;
}

.legal-section a {
    color: #0ea5e9;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

.impressum-content {
    background: #f8fafc;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #0ea5e9;
    margin-bottom: 30px;
}

.back-to-home {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.back-to-home .btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* Footer link styles */
.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer a:hover {
    color: #0ea5e9;
    transform: translateX(3px);
}

.footer ul li {
    position: relative;
    padding-left: 15px;
    transition: all 0.3s ease;
}

.footer ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #0ea5e9;
    transition: all 0.3s ease;
}

.footer ul li:hover::before {
    transform: translateX(3px);
}

/* Page Hero Styles */
.page-hero {
    background: linear-gradient(135deg, #1e293b, #0f172a);
    color: white;
    padding: 140px 0 80px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Careers Main Section */
.careers-main {
    padding: 100px 0;
    background: white;
}


/* Modern Benefits Layout */
.benefits-modern {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .benefits-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.benefit-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(14, 165, 233, 0.15);
    border-color: #0ea5e9;
}

.benefit-item .material-icons {
    font-size: 32px;
    color: #0ea5e9;
    background: #eff6ff;
    padding: 12px;
    border-radius: 12px;
    flex-shrink: 0;
}

.benefit-item h3 {
    color: #1e293b;
    margin-bottom: 4px;
    font-size: 1.1rem;
    font-weight: 600;
}

.benefit-item p {
    color: #64748b;
    font-size: 0.9rem;
    margin: 0;
}

/* Job Tabs */
.job-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 40px;
    padding: 6px;
    background: #f8fafc;
    border-radius: 12px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    border: none;
    background: transparent;
    color: #64748b;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 0.95rem;
}

.tab-btn:hover {
    color: #0ea5e9;
    background: rgba(14, 165, 233, 0.1);
}

.tab-btn.active {
    background: white;
    color: #0ea5e9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Modern Job Cards */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    justify-content: start;
    align-items: stretch;
}

/* Mobile Responsive for Job Pages - Standard Breakpoints */
@media (max-width: 1024px) {
    .jobs-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .jobs-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    
    .job-card {
        padding: 16px;
        min-height: 120px;
        border-radius: 16px;
    }
    
    .job-header {
        gap: 12px;
        margin-bottom: 12px;
    }
    
    .job-icon {
        width: 36px;
        height: 36px;
        font-size: 18px;
        padding: 6px;
        border-radius: 10px;
    }
    
    .job-card h4 {
        font-size: 1.05rem;
        margin-bottom: 10px;
        line-height: 1.2;
    }
    
    .job-category {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    
    .job-salary {
        font-size: 0.9rem;
    }
    
    .job-link {
        font-size: 0.9rem;
        padding: 6px 0;
    }
    
    /* Page Hero Mobile */
    .page-hero {
        padding: 60px 0 40px;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .page-hero p {
        font-size: 1rem;
    }
    
    .page-hero-icon .material-icons {
        font-size: 32px;
    }
    
    /* Career Benefits Mobile */
    .benefits-modern {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .benefit-item {
        padding: 16px;
    }
    
    .benefit-item h3 {
        font-size: 1.1rem;
    }
    
    .benefit-item p {
        font-size: 0.9rem;
    }
    
    /* Tab Navigation Mobile */
    .job-tabs {
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 20px;
    }
    
    .tab-btn {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

@media (max-width: 480px) {
    .job-card {
        padding: 14px;
        min-height: 110px;
        border-radius: 12px;
    }
    
    .job-header {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .job-icon {
        width: 32px;
        height: 32px;
        font-size: 16px;
        padding: 4px;
        border-radius: 8px;
    }
    
    .job-card h4 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .job-category {
        font-size: 0.6rem;
        padding: 3px 6px;
    }
    
    .job-salary {
        font-size: 0.85rem;
    }
    
    .job-link {
        font-size: 0.85rem;
        padding: 4px 0;
    }
    
    .jobs-grid {
        gap: 12px;
    }
    
    /* Page Hero Extra Small Mobile */
    .page-hero {
        padding: 50px 0 30px;
    }
    
    .page-hero h1 {
        font-size: 1.5rem;
    }
    
    .page-hero p {
        font-size: 0.9rem;
    }
    
    .page-hero-icon .material-icons {
        font-size: 28px;
    }
    
    .tab-btn {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
}

/* Job Detail Pages Mobile Responsiveness */
@media (max-width: 768px) {
    .job-content-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .job-sidebar {
        order: -1;
    }
}
    
    .job-meta-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 768px) {
    /* Job Detail Hero Mobile */
    .job-detail-hero {
        padding: 80px 0 50px;
    }
    
    .job-hero-content h1 {
        font-size: 2rem;
        margin-bottom: 30px;
        line-height: 1.2;
    }
    
    .job-category-badge {
        font-size: 0.8rem;
        padding: 6px 12px;
        margin-bottom: 16px;
    }
    
    .job-meta-grid {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-top: 30px;
    }
    
    .job-meta-item {
        padding: 16px;
        border-radius: 12px;
        gap: 10px;
    }
    
    .job-meta-item .material-icons {
        font-size: 20px;
    }
    
    .job-meta-item h4 {
        font-size: 0.8rem;
    }
    
    .job-meta-item p {
        font-size: 0.9rem;
    }
    
    /* Job Detail Content Mobile */
    .job-detail-content {
        padding: 50px 0;
    }
    
    .job-content-grid {
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .job-main-content {
        padding: 24px;
        border-radius: 16px;
    }
    
    .job-sidebar {
        order: -1;
    }
    
    .content-section {
        margin-bottom: 30px;
    }
    
    .content-section h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .content-section p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
    
    .benefits-list .benefit,
    .requirements-list .requirement {
        font-size: 0.9rem;
        margin-bottom: 8px;
        line-height: 1.5;
    }
    
    /* Job Sidebar Mobile */
    .application-card-job {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .application-card-job h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    
    .contact-method {
        padding: 12px 16px;
        font-size: 0.85rem;
    }
    
    .apply-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .more-jobs-card {
        padding: 20px;
    }
    
    .more-jobs-card h3 {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .related-job {
        padding: 8px 0;
        font-size: 0.85rem;
    }
    
    .company-info h2 {
        font-size: 1.4rem;
        margin-bottom: 16px;
    }
    
    .company-info p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 12px;
    }
}

@media (max-width: 480px) {
    /* Job Detail Hero Extra Small Mobile */
    .job-detail-hero {
        padding: 60px 0 40px;
    }
    
    .job-hero-content h1 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
    
    .job-category-badge {
        font-size: 0.75rem;
        padding: 5px 10px;
        margin-bottom: 12px;
    }
    
    .job-meta-grid {
        gap: 10px;
        margin-top: 20px;
    }
    
    .job-meta-item {
        padding: 12px;
        border-radius: 10px;
    }
    
    .job-meta-item .material-icons {
        font-size: 18px;
    }
    
    .job-meta-item h4 {
        font-size: 0.75rem;
    }
    
    .job-meta-item p {
        font-size: 0.85rem;
    }
    
    /* Job Detail Content Extra Small Mobile */
    .job-detail-content {
        padding: 40px 0;
    }
    
    .job-main-content {
        padding: 20px;
        border-radius: 12px;
    }
    
    .content-section {
        margin-bottom: 24px;
    }
    
    .content-section h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .content-section p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .benefits-list .benefit,
    .requirements-list .requirement {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    
    .application-card-job {
        padding: 16px;
    }
    
    .application-card-job h3 {
        font-size: 1rem;
    }
    
    .contact-method {
        padding: 10px 12px;
        font-size: 0.8rem;
    }
    
    .apply-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .more-jobs-card {
        padding: 16px;
    }
    
    .company-info h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }
    
    .company-info p {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
}

.job-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-decoration: none;
    color: #1e293b;
    min-height: 70px;
    text-align: left;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.job-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.1);
    border-color: #0ea5e9;
    background: #fefefe;
}

.job-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    width: 100%;
}

.job-icon {
    font-size: 20px;
    color: white;
    background: linear-gradient(135deg, #10b981, #059669);
    padding: 10px;
    border-radius: 12px;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
}

.job-card:hover .job-icon {
    transform: scale(1.02);
    box-shadow: 0 3px 10px rgba(14, 165, 233, 0.2);
}

.job-meta-top {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
}

.job-category {
    background: #0ea5e9;
    color: white;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.job-category.ausbildung { background: #0ea5e9; }
.job-category.fahrpersonal { background: #0ea5e9; }
.job-category.lager { background: #0ea5e9; }
.job-category.verwaltung { background: #0ea5e9; }

.job-salary {
    color: #059669;
    font-weight: 700;
    font-size: 1rem;
}

.job-card h4 {
    color: #1e293b;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.job-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.job-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 500;
}

.job-detail .material-icons {
    font-size: 20px;
    color: #94a3b8;
}

.job-link {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    margin-top: auto;
    padding: 8px 0;
}

.job-link:hover {
    color: #0284c7;
    gap: 8px;
}

/* Tab Content */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Modern Application Section */
.application-modern {
    margin-top: 80px;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 24px;
}

.application-hero {
    text-align: center;
    margin-bottom: 40px;
}

.application-hero h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 12px;
}

.application-hero p {
    color: #64748b;
    font-size: 1.2rem;
}

/* Modern Application Section */
.application-section {
    padding: 80px 0;
}

.application-header {
    text-align: center;
    margin-bottom: 60px;
}

.application-header h2 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 16px;
    font-weight: 700;
}

.application-header p {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

.application-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: start;
}

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

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-item .material-icons {
    color: #0ea5e9;
    font-size: 32px;
    margin-top: 4px;
}

.info-item h4 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.info-item p {
    color: #64748b;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    position: sticky;
    top: 120px;
}

.contact-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 12px;
    border-radius: 12px;
    font-size: 24px;
}

.contact-card h3 {
    color: #1e293b;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.contact-card > p {
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.6;
}

.email-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 32px;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #0ea5e9;
}

.email-label {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

.email-link {
    color: #0ea5e9;
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.email-link:hover {
    text-decoration: underline;
}

.cta-button-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
    transition: all 0.3s ease;
    width: 100%;
    justify-content: center;
}

.cta-button-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(14, 165, 233, 0.4);
}

.cta-button-modern .material-icons {
    font-size: 20px;
}

@media (max-width: 768px) {
    .application-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .application-header h2 {
        font-size: 2rem;
    }
    
    .contact-card {
        position: static;
        padding: 30px 20px;
    }
}

.app-contact {
    display: flex;
    align-items: center;
    gap: 24px;
    text-align: left;
}

.app-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.app-icon .material-icons {
    color: white;
    font-size: 36px;
}

.app-content h3 {
    color: #1e293b;
    font-size: 1.6rem;
    margin-bottom: 12px;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981, #059669);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.app-content p {
    color: #64748b;
    margin-bottom: 20px;
}

.app-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #f8fafc;
    color: #0ea5e9;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.app-btn.primary {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: transparent;
    font-weight: 600;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.app-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

.app-btn .material-icons {
    font-size: 18px;
}

/* Job Detail Pages */
.job-detail-hero {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    color: white;
    padding: 120px 0 80px;
}

.job-category-badge {
    background: #0ea5e9;
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.job-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.2;
}

.job-meta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.job-meta-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.job-meta-item .material-icons {
    color: #0ea5e9;
    font-size: 24px;
    margin-top: 2px;
}

.job-meta-item h4 {
    color: #e2e8f0;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.job-meta-item p {
    color: white;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

.job-meta-item small {
    font-size: 0.8rem;
    opacity: 0.8;
}

.job-detail-content {
    padding: 80px 0;
    background: #f8fafc;
}

.job-content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.job-main-content {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.content-section {
    margin-bottom: 40px;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    color: #1e293b;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 20px;
}

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

.benefits-list,
.requirements-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit,
.requirement {
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
}

.benefit:last-child,
.requirement:last-child {
    border-bottom: none;
}

.job-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.application-card-job {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid #0ea5e9;
}

.application-card-job h3 {
    color: #1e293b;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 12px;
    background: #f8fafc;
    color: #475569;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s ease;
}

.contact-method.primary {
    background: #eff6ff;
    color: #0ea5e9;
    border: 1px solid #bfdbfe;
}

.contact-method:hover {
    background: #e2e8f0;
}

.contact-method.primary:hover {
    background: #dbeafe;
}

.contact-method .material-icons {
    font-size: 18px;
}

.apply-section {
    border-top: 1px solid #e2e8f0;
    padding-top: 20px;
    text-align: center;
}

.apply-section p {
    color: #64748b;
    margin-bottom: 16px;
}

.apply-btn {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.4);
}

.more-jobs-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.more-jobs-card h3 {
    color: #1e293b;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.related-jobs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.related-job {
    color: #475569;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #e2e8f0;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.related-job:hover {
    color: #0ea5e9;
}

.related-job:last-child {
    border-bottom: none;
}

.view-all-jobs {
    color: #0ea5e9;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.view-all-jobs:hover {
    gap: 8px;
}

.view-all-jobs::after {
    content: "→";
}

.jobs-and-company-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
}

.company-info {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
}

.company-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.company-logo .logo-placeholder {
    width: 80px;
    height: 80px;
    background-image: url('images/hut-logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 768px) {
    .jobs-and-company-grid {
        gap: 30px;
    }
}

.company-info h2 {
    color: #1e293b;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.company-info p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.job-listings h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 60px;
}

/* Application Section */
.application-section {
    background: #f8fafc;
    border-radius: 20px;
    padding: 60px;
    margin-top: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.application-info h2 {
    color: #1e293b;
    font-size: 2rem;
    margin-bottom: 20px;
}

.application-info p {
    color: #64748b;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

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

.contact-item {
    padding: 20px;
    background: white;
    border-radius: 10px;
    border-left: 4px solid #0ea5e9;
}

.contact-item strong {
    color: #1e293b;
}

.application-form h3 {
    color: #1e293b;
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.career-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-form .form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed #e2e8f0;
    background: #f8fafc;
}

.career-form .form-group input[type="file"]:focus {
    border-color: #0ea5e9;
}

/* ==================== MEDIA QUERIES ==================== */

/* Tablet Landscape (1024px and down) */
@media (max-width: 1024px) {
    .services-overview-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .gallery-grid-preview {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* Tablet Portrait (768px and down) */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    /* Page Heroes */
    .page-hero-content h1,
    .service-page-hero h1,
    .services-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .page-hero-content p,
    .service-page-hero p,
    .services-hero-content p {
        font-size: 1rem;
    }
    
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        z-index: 1000;
    }

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

    .nav-menu li {
        margin: 15px 0;
    }

    
    /* Services Grid */
    .services-overview-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    /* Fleet Section */
    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    /* About Section */
    .about-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    /* Gallery */
    .gallery-grid-preview {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .gallery-grid-full {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Careers */
    .careers-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .careers-content {
        max-width: none;
        text-align: center;
    }
    
    .careers-content h2 {
        font-size: 2.2rem;
    }
    
    /* Contact */
    .contact-hero h2 {
        font-size: 2.5rem;
    }
    
    .contact-actions {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-action-card {
        padding: 30px 20px;
    }
    
    /* Career Pages */
    .page-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .application-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px;
    }
    
    .career-form {
        padding: 30px;
    }
}

/* Mobile (480px and down) */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero-content p {
        font-size: 0.9rem;
    }
    
    /* Page Heroes Mobile */
    .page-hero-content h1,
    .service-page-hero h1,
    .services-hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .page-hero-content p,
    .service-page-hero p,
    .services-hero-content p {
        font-size: 0.9rem;
    }
    
    /* Fleet Section */
    .fleet-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    /* Gallery */
    .gallery-grid-preview,
    .gallery-grid-full {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    /* Careers */
    .careers-content h2 {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .careers-content p {
        font-size: 1rem;
    }
    
    .careers-highlights {
        align-items: center;
    }
    
    .careers-card {
        min-width: 280px;
        padding: 24px;
    }
    
    /* Contact Mobile */
    .contact-hero h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-action-card {
        padding: 25px 20px;
    }
    
    .action-btn {
        font-size: 0.9rem;
        padding: 12px 20px;
    }
    
    /* Cards and Content */
    .vehicle-info,
    .service-overview-card,
    .testimonial-card {
        padding: 20px;
    }
}

/* Partners Section */
.partners {
    padding: 100px 0;
    background: white;
}

.partners-hero {
    text-align: center;
    margin-bottom: 60px;
}

.partners-hero h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 20px;
}

.partners-hero p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.partner-testimonial {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.partner-testimonial:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.partner-testimonial img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.partner-testimonial:hover img {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .partners {
        padding: 60px 0;
    }
    
    .partners-hero h2 {
        font-size: 2.2rem;
    }
    
    .partners-hero p {
        font-size: 1rem;
    }
    
    .partners-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .partner-testimonial {
        border-radius: 15px;
    }
}