/* Millennium Otomotiv - Public Website Styles */
/* Color Scheme: Dark Blue (#1e3a5f) & Silver Gray (#a8b2c1) */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Space+Grotesk:wght@400;500;600;700&display=swap');

:root {
    --primary-dark: #1e3a5f;
    --primary: #2c4a6e;
    --primary-light: #3d5a80;
    --silver: #a8b2c1;
    --silver-light: #c9d1dc;
    --silver-dark: #7a8594;
    --dark: #0f1c2e;
    --dark-gray: #1a2942;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #1a1a1a;
    background: #ffffff;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Navigation */
.navbar {
    background: linear-gradient(180deg, rgba(15, 28, 46, 0.98) 0%, rgba(15, 28, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(168, 178, 193, 0.1);
    overflow: visible;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
}

.navbar-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    height: 100%;
    position: relative;
}

.logo-container {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 15px 60px 15px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 150px;
    margin-left: -24px;
    margin-top: -40px;
    clip-path: polygon(0 0, 100% 0, 80% 100%, 0 100%);
    box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    z-index: 10;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.navbar-logo:hover .logo-container {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.navbar-logo .logo-img {
    height: 100px;
    width: auto;
    position: relative;
    z-index: 1;
    margin-top: 40px;
}

.navbar-logo span {
    color: var(--silver);
}

.navbar-menu {
    display: flex;
    gap: 32px;
    align-items: center;
}

.navbar-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 8px 0;
    position: relative;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--silver) 0%, var(--silver-light) 100%);
    transition: width 0.3s ease;
}

.navbar-link:hover,
.navbar-link.active {
    color: white;
}

.navbar-link:hover::after,
.navbar-link.active::after {
    width: 100%;
}

.navbar-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    padding: 12px 28px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border-radius: 4px;
    box-shadow: 0 4px 15px rgba(44, 74, 110, 0.3);
}

.navbar-cta:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(44, 74, 110, 0.4);
}

/* Navbar Dropdown */
.navbar-dropdown {
    position: relative;
}

.navbar-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

.dropdown-arrow {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.navbar-dropdown:hover .dropdown-arrow,
.navbar-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.navbar-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: linear-gradient(180deg, rgba(15, 28, 46, 0.98) 0%, rgba(15, 28, 46, 0.95) 100%);
    backdrop-filter: blur(20px);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(168, 178, 193, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-dropdown:hover .navbar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.navbar-dropdown-item {
    display: block;
    padding: 12px 20px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.navbar-dropdown-item:hover,
.navbar-dropdown-item.active {
    background: rgba(168, 178, 193, 0.1);
    color: white;
    padding-left: 24px;
}

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* ============================================
   PREMIUM HERO SECTION
   ============================================ */

.hero-premium {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    margin-top: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background Slider */
.hero-slider-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide-premium.active {
    opacity: 1;
}

.hero-slide-premium .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1);
    transition: transform 8s ease-out;
}

.hero-slide-premium.active .slide-image {
    transform: scale(1.08);
}

.hero-slide-premium .slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 28, 46, 0.95) 0%,
        rgba(30, 58, 95, 0.85) 50%,
        rgba(44, 74, 110, 0.75) 100%
    );
}

/* Animated Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}

.particle-line {
    position: absolute;
    width: 1px;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(168, 178, 193, 0.3), transparent);
    animation: particleMove 8s infinite linear;
}

.particle-line:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.particle-line:nth-child(2) {
    left: 50%;
    animation-delay: 2s;
}

.particle-line:nth-child(3) {
    left: 80%;
    animation-delay: 4s;
}

@keyframes particleMove {
    0% {
        transform: translateY(-100px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh);
        opacity: 0;
    }
}

/* Main Content */
.hero-content-premium {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 120px 0 80px;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 80px;
    align-items: center;
}

/* Left Text Section */
.hero-text-section {
    max-width: 700px;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(168, 178, 193, 0.15);
    border: 1px solid rgba(168, 178, 193, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(20px);
    margin-bottom: 32px;
}

.badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-light) 100%);
    border-radius: 50%;
    color: var(--dark);
}

.badge-text {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--silver-light);
}

/* Slide Content */
.hero-slide-content {
    position: relative;
    min-height: 280px;
}

.slide-text {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.slide-text.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--silver);
    margin-bottom: 20px;
}

.hero-headline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 72px;
    font-weight: 700;
    line-height: 1.05;
    color: white;
    margin-bottom: 28px;
    letter-spacing: -2px;
}

.hero-headline .text-gradient {
    display: inline-block;
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-light) 50%, #ffffff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 540px;
}

/* CTA Buttons */
.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    margin-bottom: 48px;
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-light) 100%);
    color: var(--dark);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(168, 178, 193, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.hero-btn-primary:hover::before {
    left: 100%;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(168, 178, 193, 0.4);
}

.hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    color: white;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 2px solid rgba(168, 178, 193, 0.4);
    border-radius: 4px;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.hero-btn-secondary:hover {
    background: rgba(168, 178, 193, 0.15);
    border-color: var(--silver);
    transform: translateY(-3px);
}

/* Trust Indicators */
.hero-trust {
    display: flex;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(168, 178, 193, 0.1);
    border: 1px solid rgba(168, 178, 193, 0.2);
    border-radius: 10px;
    color: var(--silver);
}

.trust-icon svg {
    width: 20px;
    height: 20px;
}

.trust-item span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

/* Right Stats Card */
.hero-stats-card {
    background: rgba(15, 28, 46, 0.6);
    border: 1px solid rgba(168, 178, 193, 0.2);
    border-radius: 20px;
    padding: 36px;
    backdrop-filter: blur(30px);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.stats-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(168, 178, 193, 0.15);
}

.stats-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    color: var(--silver-light);
}

.stats-icon svg {
    width: 24px;
    height: 24px;
}

.stats-card-header span {
    font-size: 16px;
    font-weight: 600;
    color: white;
    letter-spacing: 0.5px;
}

.stats-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.stat-box {
    text-align: center;
    padding: 20px 16px;
    background: rgba(168, 178, 193, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(168, 178, 193, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(168, 178, 193, 0.12);
    border-color: rgba(168, 178, 193, 0.2);
    transform: translateY(-2px);
}

.stat-box .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--silver-light);
    line-height: 1;
}

.stat-plus {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--silver);
}

.stat-box .stat-label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stats-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.4s ease;
    box-shadow: 0 8px 30px rgba(44, 74, 110, 0.3);
}

.stats-card-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(44, 74, 110, 0.4);
}

/* Slider Navigation */
.hero-slider-nav {
    position: absolute;
    bottom: 60px;
    left: 0;
    right: 0;
    z-index: 20;
}

.slider-nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Progress Bar */
.slider-progress {
    flex: 1;
    height: 3px;
    background: rgba(168, 178, 193, 0.2);
    border-radius: 2px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--silver), var(--silver-light));
    border-radius: 2px;
    transition: width 0.1s linear;
}

/* Dots */
.slider-dots-premium {
    display: flex;
    gap: 12px;
}

.dot-premium {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: 2px solid rgba(168, 178, 193, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
}

.dot-premium:hover {
    border-color: var(--silver);
}

.dot-premium.active {
    background: var(--silver);
    border-color: var(--silver);
}

.dot-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.dot-premium.active .dot-number {
    color: var(--dark);
}

/* Arrows */
.slider-arrows {
    display: flex;
    gap: 12px;
}

.arrow-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(30, 58, 95, 0.5);
    border: 2px solid rgba(168, 178, 193, 0.3);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.arrow-btn:hover {
    background: var(--silver);
    border-color: var(--silver);
    color: var(--dark);
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 20;
    opacity: 0.7;
    animation: scrollBounce 2s infinite;
}

.scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(168, 178, 193, 0.5);
    border-radius: 15px;
    position: relative;
}

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

.scroll-indicator span {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

/* Decorative Elements */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.deco-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(168, 178, 193, 0.1);
}

.deco-1 {
    width: 600px;
    height: 600px;
    top: -200px;
    right: -200px;
    animation: decoFloat 15s infinite ease-in-out;
}

.deco-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: decoFloat 12s infinite ease-in-out reverse;
}

.deco-line {
    position: absolute;
    background: linear-gradient(180deg, transparent, rgba(168, 178, 193, 0.1), transparent);
}

.deco-3 {
    width: 1px;
    height: 200px;
    top: 20%;
    right: 15%;
}

@keyframes decoFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(20px, 20px) rotate(5deg); }
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s forwards;
}

.animate-fade-left {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeLeft 0.8s 0.3s forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Legacy Hero - Keep for backwards compatibility */
.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Buttons */
.btn-primary {
    padding: 20px 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: 2px solid var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(30, 58, 95, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(30, 58, 95, 0.6);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.btn-secondary {
    padding: 20px 56px;
    background: rgba(168, 178, 193, 0.1);
    color: white;
    border: 2px solid var(--silver);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--silver);
    color: var(--dark);
    border-color: var(--silver);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(168, 178, 193, 0.3);
}

/* Sections */
.section {
    padding: 140px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 24px;
}

.section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-title strong {
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Services/Cards Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.service-card {
    background: white;
    padding: 0;
    border: 1px solid #e5e5e5;
    transition: all 0.4s ease;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.2);
}

.service-card-image {
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #f5f5f5;
}

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

.service-card-body {
    padding: 24px;
}

.service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.service-description {
    font-size: 15px;
    color: #666;
    line-height: 1.9;
}

/* Fleet Types Grid */
/* Why Fleet Management Section */
.why-fleet-section {
    position: relative;
    min-height: 700px;
    height: 80vh;
    max-height: 850px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.why-fleet-background {
    position: absolute;
    inset: -50px;
    z-index: 0;
    will-change: transform;
}

.why-fleet-background img {
    width: 100%;
    height: calc(100% + 100px);
    object-fit: cover;
    object-position: center;
}

.why-fleet-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg,
            rgba(15, 28, 46, 0.92) 0%,
            rgba(15, 28, 46, 0.8) 40%,
            rgba(15, 28, 46, 0.5) 70%,
            rgba(15, 28, 46, 0.4) 100%
        );
    z-index: 1;
}

.why-fleet-content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
    width: 100%;
}

.why-fleet-text {
    max-width: 520px;
}

.why-fleet-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

.why-fleet-title span {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-fleet-description {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.why-fleet-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-fleet-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 20px rgba(30, 58, 95, 0.4);
}

.btn-fleet-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(30, 58, 95, 0.5);
}

.btn-fleet-primary svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.btn-fleet-primary:hover svg {
    transform: translateX(4px);
}

.btn-fleet-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-fleet-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

/* Fleet Features */
.why-fleet-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.fleet-feature-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(15, 28, 46, 0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fleet-feature-card:hover {
    background: rgba(30, 58, 95, 0.95);
    border-color: rgba(168, 178, 193, 0.4);
    transform: translateX(12px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.fleet-feature-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, rgba(168, 178, 193, 0.2) 0%, rgba(168, 178, 193, 0.1) 100%);
    border: 1px solid rgba(168, 178, 193, 0.3);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.fleet-feature-card:hover .fleet-feature-icon {
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-dark) 100%);
    border-color: transparent;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 10px 30px rgba(168, 178, 193, 0.3);
}

.fleet-feature-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--silver);
    transition: stroke 0.3s ease;
}

.fleet-feature-card:hover .fleet-feature-icon svg {
    stroke: var(--dark);
}

.fleet-feature-content {
    flex: 1;
}

.fleet-feature-label {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver);
    margin-bottom: 8px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.fleet-feature-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.fleet-feature-title span {
    color: var(--silver);
}

.fleet-feature-arrow {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.fleet-feature-card:hover .fleet-feature-arrow {
    opacity: 1;
    transform: translateX(0);
}

.fleet-feature-arrow svg {
    width: 18px;
    height: 18px;
    stroke: white;
}

/* Floating Badge */
.fleet-floating-badge {
    position: absolute;
    bottom: 60px;
    right: 60px;
    z-index: 3;
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(30, 58, 95, 0.5),
        inset 0 -4px 20px rgba(0, 0, 0, 0.2);
    animation: floatBadge 4s ease-in-out infinite;
    cursor: pointer;
    transition: transform 0.3s ease;
    text-decoration: none;
}

.fleet-floating-badge:hover {
    transform: scale(1.1);
}

.fleet-floating-badge::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 2px dashed rgba(255, 255, 255, 0.3);
    animation: rotateBadge 20s linear infinite;
}

.fleet-badge-text {
    font-size: 13px;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

@keyframes rotateBadge {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}


/* Fleet Feature Animations */
.fleet-feature-card {
    opacity: 0;
    animation: fadeInRight 0.6s ease forwards;
}

.fleet-feature-card:nth-child(1) { animation-delay: 0.3s; }
.fleet-feature-card:nth-child(2) { animation-delay: 0.5s; }
.fleet-feature-card:nth-child(3) { animation-delay: 0.7s; }

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section Modern */
.stats-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fb 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.stats-section-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--silver), var(--primary));
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.stat-card {
    background: white;
    border-radius: 24px;
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.1);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

.stat-card:hover .stat-icon svg {
    stroke: white;
}

.stat-card:hover .stat-bar {
    width: 60%;
    opacity: 1;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.08) 0%, rgba(30, 58, 95, 0.04) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all 0.4s ease;
}

.stat-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--primary);
    transition: all 0.3s ease;
}

.stat-content {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 12px;
}

.stat-number-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 56px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.stat-suffix {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label-modern {
    font-size: 15px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.stat-bar {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--silver));
    border-radius: 4px 4px 0 0;
    opacity: 0.5;
    transition: all 0.4s ease;
}

/* CTA Section Modern */
.cta-section-modern {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 50%, var(--dark) 100%);
}

.cta-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-container-modern {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.cta-content {
    color: white;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(168, 178, 193, 0.15);
    border: 1px solid rgba(168, 178, 193, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    color: var(--silver);
    margin-bottom: 24px;
}

.cta-badge svg {
    color: var(--silver);
}

.cta-title-modern {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.cta-title-modern span {
    display: block;
    background: linear-gradient(135deg, var(--silver) 0%, var(--silver-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-description-modern {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-features-modern {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cta-feature-icon-modern {
    width: 48px;
    height: 48px;
    background: rgba(168, 178, 193, 0.1);
    border: 1px solid rgba(168, 178, 193, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cta-feature-icon-modern svg {
    width: 24px;
    height: 24px;
    stroke: var(--silver);
}

.cta-feature-text strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 2px;
}

.cta-feature-text span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.cta-phone-box {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.cta-phone-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.cta-phone-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-phone-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.cta-phone-content span {
    display: block;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 4px;
}

.cta-phone-content a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.cta-phone-content a:hover {
    color: var(--silver);
}

/* CTA Form Modern */
.cta-form-wrapper {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.cta-form-modern {
    color: #1a1a1a;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.form-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.form-header p {
    font-size: 14px;
    color: #666;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group-modern {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-modern.full-width {
    grid-column: span 2;
}

.form-group-modern label {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.form-group-modern input,
.form-group-modern select,
.form-group-modern textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group-modern input:focus,
.form-group-modern select:focus,
.form-group-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.form-group-modern input::placeholder,
.form-group-modern textarea::placeholder {
    color: #aaa;
}

.form-submit-modern {
    width: 100%;
    margin-top: 24px;
    padding: 18px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.form-submit-modern svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.form-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(30, 58, 95, 0.4);
}

.form-submit-modern:hover svg {
    transform: translateX(4px);
}

.form-privacy-modern {
    font-size: 12px;
    color: #888;
    text-align: center;
    margin-top: 16px;
}

.form-privacy-modern a {
    color: var(--primary);
    text-decoration: none;
}

.form-privacy-modern a:hover {
    text-decoration: underline;
}

/* Footer Modern */
.footer-modern {
    background: var(--dark);
    color: white;
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
}

.footer-brand-section {
    flex: 0 0 320px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 110px;
    width: auto;
}

.footer-tagline {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.footer-links-section {
    flex: 1;
    display: flex;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

.footer-heading {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver);
    margin-bottom: 24px;
}

.footer-nav {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 14px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact svg {
    width: 20px;
    height: 20px;
    stroke: var(--silver);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact a,
.footer-contact span {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom-modern {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-modern .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-modern p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

.footer-credit {
    display: flex;
    align-items: center;
    gap: 8px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
    position: relative;
}

.footer-credit:hover {
    opacity: 1;
}

.footer-credit img {
    height: 24px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-credit::before {
    content: attr(title);
    position: absolute;
    bottom: 100%;
    right: 0;
    margin-bottom: 8px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    font-size: 12px;
    white-space: nowrap;
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.footer-credit:hover::before {
    opacity: 1;
    visibility: visible;
}

/* ==================== PAGE HEADER MODERN ==================== */
.page-header {
    margin-top: 70px;
    padding: 80px 0 60px;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 50%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.page-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(30, 58, 95, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--silver);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.page-header-badge svg {
    width: 16px;
    height: 16px;
}

.page-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

.page-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-breadcrumb a:hover {
    color: var(--silver);
}

.page-breadcrumb span {
    color: rgba(255, 255, 255, 0.4);
}

.page-breadcrumb .current {
    color: var(--silver);
    font-weight: 500;
}

@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 50px;
    }

    .page-title {
        font-size: 32px;
    }

    .page-subtitle {
        font-size: 16px;
    }
}

/* Vehicle Cards */
.vehicle-card {
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.2);
}

.vehicle-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

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

.vehicle-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vehicle-card-body {
    padding: 24px;
}

.vehicle-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vehicle-card-category {
    font-size: 13px;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 16px;
}

.vehicle-card-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.vehicle-card-spec {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.vehicle-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vehicle-card-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark);
}

.vehicle-card-price span {
    font-size: 14px;
    font-weight: 400;
    color: #999;
}

.vehicle-card-link {
    padding: 12px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.vehicle-card-link:hover {
    background: var(--primary-dark);
}

/* Responsive */
@media (max-width: 1100px) {
    .why-fleet-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-fleet-text {
        max-width: 100%;
        text-align: center;
    }

    .why-fleet-buttons {
        justify-content: center;
    }

    .fleet-feature-card:hover {
        transform: translateX(0) translateY(-5px);
    }

    .fleet-floating-badge {
        display: none;
    }
}

@media (max-width: 1024px) {
    /* Premium Hero - Tablet */
    .hero-container {
        grid-template-columns: 1fr 360px;
        gap: 50px;
        padding: 0 40px;
    }

    .hero-headline {
        font-size: 56px;
    }

    .hero-stats-card {
        padding: 28px;
    }

    .stat-box .stat-number {
        font-size: 28px;
    }

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

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

    .cta-container-modern {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .footer-container {
        flex-direction: column;
        gap: 48px;
    }

    .footer-brand-section {
        flex: none;
    }

    .footer-links-section {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 0 20px;
        height: 70px;
    }

    .logo-container {
        height: 120px;
        margin-left: -20px;
        padding: 10px 40px 10px 20px;
    }

    .navbar-logo .logo-img {
        height: 70px;
        margin-top: 30px;
    }

    .navbar-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: linear-gradient(180deg, var(--primary-dark) 0%, var(--primary) 100%);
        padding: 20px 0;
        flex-direction: column;
        align-items: stretch !important;
        gap: 0;
        z-index: 999;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    }

    .navbar-menu.active {
        display: flex;
    }

    .navbar-menu .navbar-link {
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        font-size: 16px;
        text-align: left;
        justify-content: flex-start;
    }

    .navbar-menu .navbar-link:last-child {
        border-bottom: none;
    }

    .navbar-menu .navbar-dropdown {
        width: 100%;
    }

    .navbar-menu .navbar-dropdown-toggle {
        text-align: left;
        justify-content: flex-start;
        width: 100%;
        padding: 16px 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .navbar-menu .navbar-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0, 0, 0, 0.2);
        box-shadow: none;
        padding: 0;
        display: none;
        border-radius: 0;
    }

    .navbar-menu .navbar-dropdown.active .navbar-dropdown-menu {
        display: block;
    }

    .navbar-menu .navbar-dropdown-menu a {
        padding: 14px 20px 14px 40px;
        font-size: 14px;
        text-align: left;
    }

    .navbar-toggle {
        display: block;
    }

    /* Premium Hero Responsive */
    .hero-premium {
        min-height: 100vh;
        height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 24px;
    }

    .hero-content-premium {
        padding: 100px 0 160px;
    }

    .hero-stats-card {
        display: none;
    }

    .hero-headline {
        font-size: 42px;
        line-height: 1.15;
    }

    .hero-tagline {
        font-size: 12px;
        letter-spacing: 3px;
    }

    .hero-desc {
        font-size: 16px;
    }

    .hero-badge {
        padding: 8px 16px;
        margin-bottom: 24px;
    }

    .badge-text {
        font-size: 10px;
    }

    .hero-cta-group {
        flex-direction: column;
        gap: 16px;
        margin-top: 32px;
        margin-bottom: 40px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 16px 28px;
    }

    .hero-trust {
        flex-wrap: wrap;
        gap: 20px;
    }

    .trust-item {
        flex: 0 0 calc(50% - 10px);
    }

    .slider-nav-container {
        padding: 0 24px;
        flex-wrap: wrap;
        gap: 20px;
    }

    .slider-progress {
        order: 3;
        flex: 0 0 100%;
    }

    .slider-dots-premium {
        order: 1;
    }

    .slider-arrows {
        order: 2;
        margin-left: auto;
    }

    .dot-premium {
        width: 36px;
        height: 36px;
    }

    .arrow-btn {
        width: 42px;
        height: 42px;
    }

    .scroll-indicator {
        display: none;
    }

    .hero-slider-nav {
        bottom: 30px;
    }

    .slider-controls {
        padding: 0 16px;
    }

    .slider-control {
        width: 44px;
        height: 44px;
    }

    .slider-dots {
        bottom: 30px;
        gap: 12px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-container {
        padding: 0 20px;
    }

    .stat-card {
        padding: 32px 24px;
    }

    .stat-number-modern {
        font-size: 48px;
    }

    .stat-suffix {
        font-size: 28px;
    }

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

    .form-group-modern.full-width {
        grid-column: span 1;
    }

    .cta-container-modern {
        padding: 0 20px;
    }

    .cta-form-wrapper {
        padding: 28px 20px;
    }

    .footer-container {
        padding: 0 20px;
    }

    .footer-links-section {
        flex-direction: column;
        gap: 32px;
    }

    .footer-bottom-modern .footer-container {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .footer-credit::before {
        right: 50%;
        transform: translateX(50%);
    }

    .page-title {
        font-size: 36px;
    }

    /* Why Fleet Section Mobile */
    .why-fleet-section {
        min-height: 600px;
        height: auto;
        max-height: none;
    }

    .why-fleet-content {
        padding: 60px 20px 120px;
    }

    .fleet-feature-card {
        padding: 20px;
        gap: 16px;
    }

    .fleet-feature-icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
    }

    .fleet-feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .fleet-feature-title {
        font-size: 18px;
    }

}

@media (max-width: 500px) {
    .why-fleet-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-fleet-primary,
    .btn-fleet-secondary {
        width: 100%;
    }
}

/* Solutions Section */
.solutions-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.solutions-container {
    max-width: 1400px;
    margin: 0 auto;
}

.solutions-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.solutions-title-wrapper {
    position: relative;
}

.solutions-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.solutions-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.solutions-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solutions-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 540px;
}

/* Solutions Cards Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

/* Solution Card Styles */
.solution-card {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0) 0%, rgba(220, 38, 38, 0) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
    pointer-events: none;
}

.solution-card:hover::after {
    background: linear-gradient(135deg, rgba(44, 74, 110, 0.4) 0%, rgba(30, 58, 95, 0.5) 100%);
    opacity: 1;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.35);
}

.solution-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-bg {
    transform: scale(1.1);
}

.solution-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.1) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.5) 60%,
        rgba(0, 0, 0, 0.85) 100%
    );
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(1px);
    transition: all 0.4s ease;
    z-index: 1;
}

.solution-card:hover .solution-card-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.15) 0%,
        rgba(0, 0, 0, 0.25) 20%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.9) 100%
    );
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.solution-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px 20px;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 3;
}

.solution-card:hover .solution-card-content {
    transform: translateY(0);
}

.solution-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.solution-card:hover .solution-card-icon {
    opacity: 1;
    transform: translateY(0);
}

.solution-card-icon svg {
    width: 24px;
    height: 24px;
    stroke: white;
}

.solution-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    line-height: 1.3;
}

.solution-card-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-desc {
    opacity: 1;
    max-height: 80px;
    margin-bottom: 16px;
}

.solution-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    padding: 10px 0;
    transition: all 0.3s ease;
}

.solution-card-arrow {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.solution-card:hover .solution-card-arrow {
    background: var(--silver-light);
    transform: translateX(4px);
}

.solution-card-arrow svg {
    width: 16px;
    height: 16px;
    stroke: white;
    transition: stroke 0.3s ease;
}

.solution-card:hover .solution-card-arrow svg {
    stroke: var(--primary-dark);
}

/* Card Number Badge */
.solution-card-number {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: white;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.solution-card:hover .solution-card-number {
    opacity: 1;
    transform: scale(1);
}

/* Solutions Section Animations */
@keyframes solutionFadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.solutions-header {
    animation: solutionFadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Solutions Responsive */
@media (max-width: 1200px) {
    .solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .solutions-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .solutions-subtitle::before {
        display: none;
    }
    
    .solutions-description {
        max-width: 100%;
    }
    
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .solutions-section {
        padding: 60px 16px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-card {
        aspect-ratio: 4 / 3;
    }
}

/* Vehicles Section */
.vehicles-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.vehicles-container {
    max-width: 1400px;
    margin: 0 auto;
}

.vehicles-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.vehicles-title-wrapper {
    position: relative;
}

.vehicles-subtitle {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.vehicles-subtitle::before {
    content: '';
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 2px;
}

.vehicles-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: #111827;
    line-height: 1.1;
}

.vehicles-description {
    font-size: 18px;
    line-height: 1.7;
    color: #4b5563;
    max-width: 540px;
}

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

/* Vehicle Card */
.vehicle-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vehicle-card-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.vehicle-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 220px;
    background: linear-gradient(180deg, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.vehicle-card:hover .vehicle-card-overlay {
    opacity: 1;
}

.vehicle-card-content {
    padding: 24px;
}

.vehicle-card-badge {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 20px;
    margin-bottom: 14px;
}

.vehicle-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 4px;
}

.vehicle-card-model {
    font-size: 15px;
    color: #6b7280;
    margin-bottom: 16px;
}

.vehicle-rental-badge {
    display: inline-block;
    padding: 6px 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 6px;
    margin-bottom: 12px;
}

.vehicle-card-specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.vehicle-card-specs span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #6b7280;
}

.vehicle-card-specs svg {
    color: var(--primary);
}

.vehicle-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 24px;
    background: var(--dark);
    color: white;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vehicle-card-btn:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.vehicle-card-btn svg {
    transition: transform 0.3s ease;
}

.vehicle-card-btn:hover svg {
    transform: translateX(4px);
}

/* Vehicles Empty State */
.vehicles-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    color: #6b7280;
    background: #f9fafb;
    border-radius: 20px;
}

/* Vehicles Action Button */
.vehicles-action {
    text-align: center;
}

.vehicles-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.vehicles-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.4);
}

.vehicles-btn svg {
    transition: transform 0.3s ease;
}

.vehicles-btn:hover svg {
    transform: translateX(5px);
}

/* Vehicles Responsive */
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .vehicles-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vehicles-subtitle::before {
        display: none;
    }
    
    .vehicles-description {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .vehicles-section {
        padding: 60px 16px;
    }

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

    .vehicle-card-image {
        height: 200px;
    }
}

/* ==================== VEHICLES PAGE STYLES ==================== */
.vehicles-filter-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
    border-bottom: 1px solid #e2e8f0;
}

.vehicles-filter-form {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.filter-input-group {
    flex: 1;
    min-width: 220px;
    position: relative;
}

.filter-input-group svg {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #94a3b8;
}

.filter-input {
    width: 100%;
    padding: 14px 16px 14px 48px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
}

.filter-input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.filter-select-group {
    min-width: 160px;
}

.filter-select {
    width: 100%;
    padding: 14px 40px 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7' /%3E%3C/svg%3E") no-repeat right 12px center;
    background-size: 20px;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.filter-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.filter-submit-btn svg {
    width: 18px;
    height: 18px;
}

.filter-clear-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 14px 20px;
    color: #dc2626;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border: 2px solid #dc2626;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.filter-clear-btn:hover {
    background: #dc2626;
    color: white;
}

.filter-clear-btn svg {
    width: 16px;
    height: 16px;
}

/* Vehicles Grid Section */
.vehicles-grid-section {
    padding: 80px 0;
    background: white;
}

.vehicles-grid-section .vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicles-grid-section .vehicle-card {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.vehicles-grid-section .vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 58, 95, 0.15);
    border-color: rgba(30, 58, 95, 0.2);
}

.vehicles-grid-section .vehicle-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    background: #f5f5f5;
    position: relative;
}

.vehicles-grid-section .vehicle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicles-grid-section .vehicle-card:hover .vehicle-card-image img {
    transform: scale(1.05);
}

.vehicles-grid-section .vehicle-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.vehicles-grid-section .vehicle-card-body {
    padding: 24px;
}

.vehicles-grid-section .vehicle-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.vehicles-grid-section .vehicle-card-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.vehicles-grid-section .spec-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #64748b;
}

.vehicles-grid-section .spec-item svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.vehicle-card-actions {
    display: flex;
    gap: 12px;
}

.vehicle-btn-secondary {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
    border: 2px solid #1a1a1a;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vehicle-btn-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.vehicle-btn-primary {
    flex: 1;
    text-align: center;
    padding: 14px 20px;
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-decoration: none;
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vehicle-btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Vehicles Pagination */
.vehicles-pagination {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.vehicles-pagination nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vehicles-pagination a,
.vehicles-pagination span {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.vehicles-pagination a {
    color: #64748b;
    background: #f1f5f9;
    text-decoration: none;
}

.vehicles-pagination a:hover {
    background: var(--primary);
    color: white;
}

.vehicles-pagination span[aria-current="page"] span {
    background: var(--primary);
    color: white;
    padding: 10px 16px;
    border-radius: 8px;
}

/* Vehicles Empty State */
.vehicles-empty {
    text-align: center;
    padding: 100px 20px;
}

.vehicles-empty .empty-icon {
    width: 80px;
    height: 80px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.vehicles-empty .empty-icon svg {
    width: 40px;
    height: 40px;
    color: #94a3b8;
}

.vehicles-empty h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.vehicles-empty p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 24px;
}

.empty-reset-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.empty-reset-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Vehicles Page Responsive */
@media (max-width: 1200px) {
    .vehicles-grid-section .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .vehicles-filter-form {
        flex-direction: column;
    }

    .filter-input-group,
    .filter-select-group {
        width: 100%;
        min-width: 100%;
    }

    .filter-submit-btn,
    .filter-clear-btn {
        width: 100%;
        justify-content: center;
    }

    .vehicles-grid-section .vehicles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vehicles-grid-section {
        padding: 60px 0;
    }
}

/* ==================== VEHICLE DETAIL PAGE ==================== */
.vehicle-detail-section {
    padding: 80px 0;
    background: white;
}

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

/* Vehicle Gallery */
.vehicle-gallery {
    position: sticky;
    top: 100px;
}

.vehicle-main-image {
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
}

.vehicle-main-image img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.vehicle-thumbnails {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.vehicle-thumbnail {
    background: #f5f5f5;
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.3s ease;
}

.vehicle-thumbnail:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.vehicle-thumbnail img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
}

/* Vehicle Info */
.vehicle-info {
    padding-left: 20px;
}

.vehicle-info-header {
    margin-bottom: 24px;
}

.vehicle-category-badge {
    display: inline-block;
    background: rgba(30, 58, 95, 0.1);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 16px;
}

.vehicle-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.vehicle-info-year {
    font-size: 18px;
    color: #64748b;
}

.vehicle-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 32px;
}

/* Specs Card */
.vehicle-specs-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 32px;
    border-radius: 16px;
    margin-bottom: 32px;
    border: 1px solid #e2e8f0;
}

.specs-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
}

.specs-title svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.spec-label {
    font-size: 14px;
    color: #64748b;
}

.spec-value {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

/* CTA Buttons */
.vehicle-cta-buttons {
    display: flex;
    gap: 16px;
}

.vehicle-cta-primary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vehicle-cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.vehicle-cta-primary svg {
    width: 20px;
    height: 20px;
}

.vehicle-cta-secondary {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: white;
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.vehicle-cta-secondary:hover {
    background: #1a1a1a;
    color: white;
}

.vehicle-cta-secondary svg {
    width: 20px;
    height: 20px;
}

/* Related Vehicles Section */
.related-vehicles-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.related-header {
    text-align: center;
    margin-bottom: 50px;
}

.related-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.related-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
}

.related-title strong {
    color: var(--primary);
}

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

.related-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.related-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(30, 58, 95, 0.15);
}

.related-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative;
}

.related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.related-card:hover .related-card-image img {
    transform: scale(1.05);
}

.related-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: white;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    border-radius: 6px;
    text-transform: uppercase;
}

.related-card-body {
    padding: 24px;
}

.related-card-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.related-card-specs {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 13px;
    color: #64748b;
}

.related-card-specs span {
    display: inline-flex;
    align-items: center;
}

.related-card-specs span::after {
    content: '•';
    margin-left: 16px;
    color: #cbd5e1;
}

.related-card-specs span:last-child::after {
    display: none;
}

.related-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 8px;
    width: 100%;
    justify-content: center;
    transition: all 0.3s ease;
}

.related-card-btn:hover {
    background: var(--primary-dark);
}

.related-card-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.related-card-btn:hover svg {
    transform: translateX(4px);
}

/* Vehicle Detail Responsive */
@media (max-width: 1024px) {
    .vehicle-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .vehicle-gallery {
        position: static;
    }

    .vehicle-info {
        padding-left: 0;
    }

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

@media (max-width: 768px) {
    .vehicle-detail-section {
        padding: 60px 0;
    }

    .vehicle-info-title {
        font-size: 28px;
    }

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

    .vehicle-cta-buttons {
        flex-direction: column;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .related-title {
        font-size: 28px;
    }
}

/* ==================== FLEET PAGE STYLES ==================== */
.fleet-services-section {
    padding: 100px 0;
    background: white;
}

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

.fleet-services-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.fleet-services-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.fleet-services-title strong {
    color: var(--primary);
}

.fleet-services-description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

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

.fleet-service-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.fleet-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 58, 95, 0.12);
    border-color: rgba(30, 58, 95, 0.2);
}

.fleet-service-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.fleet-service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.fleet-service-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.fleet-service-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 20px;
}

.fleet-service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.fleet-service-features span {
    display: inline-block;
    padding: 6px 12px;
    background: #f1f5f9;
    color: #475569;
    font-size: 12px;
    font-weight: 500;
    border-radius: 20px;
}

/* Fleet CTA Section */
.fleet-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.fleet-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.fleet-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.fleet-cta-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    color: var(--silver);
    margin-bottom: 24px;
}

.fleet-cta-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    line-height: 1.2;
}

.fleet-cta-title strong {
    color: var(--silver);
}

.fleet-cta-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    line-height: 1.7;
}

.fleet-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.fleet-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: white;
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fleet-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.fleet-cta-primary svg {
    width: 20px;
    height: 20px;
}

.fleet-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.fleet-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.fleet-cta-secondary svg {
    width: 20px;
    height: 20px;
}

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

@media (max-width: 768px) {
    .fleet-services-section {
        padding: 60px 0;
    }

    .fleet-services-title {
        font-size: 32px;
    }

    .fleet-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .fleet-service-card {
        padding: 28px;
    }

    .fleet-cta-section {
        padding: 60px 0;
    }

    .fleet-cta-title {
        font-size: 28px;
    }

    .fleet-cta-buttons {
        flex-direction: column;
    }

    .fleet-cta-primary,
    .fleet-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== CORPORATE PAGE STYLES ==================== */
.corporate-about-section {
    padding: 100px 0;
    background: white;
}

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

.corporate-about-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.corporate-about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.corporate-about-title strong {
    color: var(--primary);
}

.corporate-about-text {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.corporate-about-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 32px;
}

.about-feature {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f1f5f9;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.about-feature svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.corporate-about-image {
    position: relative;
}

.corporate-about-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.about-image-badge {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--primary);
    color: white;
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(30, 58, 95, 0.3);
}

.about-image-badge .badge-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 1;
}

.about-image-badge .badge-text {
    display: block;
    font-size: 13px;
    margin-top: 4px;
    opacity: 0.9;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: #fff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.mission-card,
.vision-card {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(30, 58, 95, 0.1);
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(30, 58, 95, 0.1);
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.mv-icon svg {
    width: 28px;
    height: 28px;
    stroke: white;
}

.mv-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 16px;
}

.mv-description {
    font-size: 15px;
    line-height: 1.8;
    color: #64748b;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-card,
    .vision-card {
        padding: 30px;
    }

    .mv-title {
        font-size: 20px;
    }
}

/* Values Section */
.corporate-values-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

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

.corporate-values-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.corporate-values-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
}

.corporate-values-title strong {
    color: var(--primary);
}

.corporate-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.value-card {
    background: white;
    padding: 36px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(30, 58, 95, 0.12);
    border-color: rgba(30, 58, 95, 0.2);
}

.value-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.value-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    line-height: 1.7;
    color: #64748b;
}

/* Corporate Page Responsive */
@media (max-width: 1024px) {
    .corporate-about-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .corporate-about-image {
        order: -1;
    }

    .about-image-badge {
        bottom: -20px;
        left: 20px;
    }

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

@media (max-width: 768px) {
    .corporate-about-section {
        padding: 60px 0;
    }

    .corporate-about-title {
        font-size: 32px;
    }

    .corporate-values-section {
        padding: 60px 0;
    }

    .corporate-values-title {
        font-size: 32px;
    }

    .corporate-values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .value-card {
        padding: 28px;
    }
}

/* ==================== CONTACT PAGE STYLES ==================== */
.contact-section {
    padding: 100px 0;
    background: white;
}

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

.contact-info {
    padding-right: 40px;
}

.contact-info-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.contact-info-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}

.contact-info-title strong {
    color: var(--primary);
}

.contact-info-description {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 40px;
}

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

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

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.1) 0%, rgba(30, 58, 95, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

.contact-info-content h4 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.contact-info-content p,
.contact-info-content a {
    font-size: 15px;
    color: #64748b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: var(--primary);
}

/* Contact Form */
.contact-form-wrapper {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 48px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.contact-form-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 32px;
}

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

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.contact-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form-group.full-width {
    grid-column: span 2;
}

.contact-form-label {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.contact-form-input,
.contact-form-select,
.contact-form-textarea {
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 15px;
    background: white;
    transition: all 0.3s ease;
}

.contact-form-input:focus,
.contact-form-select:focus,
.contact-form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(30, 58, 95, 0.1);
}

.contact-form-textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-form-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
}

.contact-form-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(30, 58, 95, 0.3);
}

.contact-form-submit svg {
    width: 20px;
    height: 20px;
}

/* Map Section */
.contact-map-section {
    height: 400px;
    background: #f1f5f9;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Contact Page Responsive */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-info {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

    .contact-info-title {
        font-size: 28px;
    }

    .contact-form-wrapper {
        padding: 28px;
    }

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

    .contact-form-group.full-width {
        grid-column: span 1;
    }

    .contact-map-section {
        height: 300px;
    }
}

/* ============================================
   Quote Modal Styles
   ============================================ */

.quote-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 28, 46, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.quote-modal {
    background: #fff;
    border-radius: 16px;
    width: 100%;
    max-width: 560px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: all 0.3s ease;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
}

.quote-modal-overlay.active .quote-modal {
    transform: translateY(0) scale(1);
}

.quote-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border: none;
    background: #f1f5f9;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}

.quote-modal-close:hover {
    background: #e2e8f0;
    transform: rotate(90deg);
}

.quote-modal-close svg {
    width: 20px;
    height: 20px;
    color: #64748b;
}

.quote-modal-header {
    padding: 28px 28px 20px;
    border-bottom: 1px solid #e2e8f0;
    text-align: center;
}

.quote-modal-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.quote-modal-header p {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 500;
}

.quote-form {
    padding: 24px 28px 28px;
}

.quote-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

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

.quote-form-group.full-width {
    grid-column: span 2;
}

.quote-form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: 6px;
}

.quote-form-group input,
.quote-form-group select,
.quote-form-group textarea {
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.2s ease;
    background: #fff;
}

.quote-form-group input:focus,
.quote-form-group select:focus,
.quote-form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(44, 74, 110, 0.1);
}

.quote-form-group input::placeholder,
.quote-form-group textarea::placeholder {
    color: #9ca3af;
}

.quote-form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236b7280'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px;
    padding-right: 40px;
}

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

.quote-form-actions {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.quote-btn-cancel {
    flex: 1;
    padding: 14px 24px;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #64748b;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quote-btn-cancel:hover {
    background: #f8fafc;
    border-color: #cbd5e1;
}

.quote-btn-submit {
    flex: 2;
    padding: 14px 24px;
    border: none;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.quote-btn-submit:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

.quote-btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-loading .spinner {
    width: 18px;
    height: 18px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Success State */
.quote-success {
    padding: 48px 28px;
    text-align: center;
}

.quote-success svg {
    width: 64px;
    height: 64px;
    color: #10b981;
    margin-bottom: 20px;
}

.quote-success h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.quote-success p {
    color: #64748b;
    margin-bottom: 24px;
}

.quote-btn-close {
    padding: 12px 32px;
    border: none;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: #fff;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quote-btn-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* Responsive */
@media (max-width: 640px) {
    .quote-modal {
        max-height: 95vh;
        margin: 10px;
    }

    .quote-modal-header {
        padding: 24px 20px 16px;
    }

    .quote-form {
        padding: 20px;
    }

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

    .quote-form-group.full-width {
        grid-column: span 1;
    }

    .quote-form-actions {
        flex-direction: column-reverse;
    }

    .quote-btn-cancel,
    .quote-btn-submit {
        flex: none;
        width: 100%;
    }

    /* Mobile Dropdown */
    .navbar-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: transparent;
        padding: 0;
        margin-top: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .navbar-dropdown.active .navbar-dropdown-menu {
        max-height: 400px;
    }

    .navbar-dropdown-item {
        padding-left: 40px;
        font-size: 12px;
    }

    .navbar-dropdown-item:hover,
    .navbar-dropdown-item.active {
        padding-left: 44px;
    }
}

/* ============================================
   FAQ ACCORDION STYLES
   ============================================ */

.faq-section {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-dark);
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question-text {
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 28px 24px;
    color: #4b5563;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.faq-empty svg {
    margin: 0 auto 20px;
    color: #d1d5db;
}

.faq-empty p {
    font-size: 18px;
}

/* FAQ CTA Section */
.faq-cta-section {
    padding: 60px 0;
    background: white;
}

.faq-cta-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 50px 60px;
    display: flex;
    align-items: center;
    gap: 40px;
    color: white;
}

.faq-cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.faq-cta-content {
    flex: 1;
}

.faq-cta-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.faq-cta-content p {
    opacity: 0.9;
}

.faq-cta-buttons {
    display: flex;
    gap: 16px;
}

.faq-cta-btn-primary,
.faq-cta-btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.faq-cta-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.faq-cta-btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.faq-cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   SERVICES PAGE STYLES
   ============================================ */

.services-empty {
    text-align: center;
    padding: 60px 20px;
    color: #9ca3af;
}

.fleet-service-content {
    margin-top: 12px;
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
}

.services-cta-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-cta-card {
    background: white;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.services-cta-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--primary-dark);
}

.services-cta-content p {
    color: #64748b;
}

.services-cta-buttons {
    flex-shrink: 0;
}

.services-cta-btn {
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.services-cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* ============================================
   PAGE CONTENT STYLES
   ============================================ */

.page-content-section {
    padding: 80px 0;
    background: white;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-text-block {
    margin-bottom: 40px;
    line-height: 1.8;
    color: #374151;
}

.page-text-block h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.page-text-block h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-text-block p {
    margin-bottom: 16px;
}

.page-text-block ul,
.page-text-block ol {
    margin: 16px 0;
    padding-left: 24px;
}

.page-text-block li {
    margin-bottom: 8px;
}

.page-hero-block {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    margin-bottom: 40px;
}

.page-hero-block h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.page-hero-block p {
    font-size: 18px;
    opacity: 0.9;
}

.page-features-block {
    margin-bottom: 40px;
}

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

.feature-item {
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: center;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

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

.feature-item p {
    color: #64748b;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .faq-cta-card {
        flex-direction: column;
        text-align: center;
        padding: 40px 30px;
    }

    .faq-cta-buttons {
        flex-direction: column;
        width: 100%;
    }

    .faq-cta-btn-primary,
    .faq-cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .services-cta-card {
        flex-direction: column;
        text-align: center;
        gap: 24px;
    }

    .page-text-block h2 {
        font-size: 26px;
    }

    .page-text-block h3 {
        font-size: 20px;
    }

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

/* ========================================
   Services Section
   ======================================== */
.services-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--dark) 0%, #0a1628 50%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(168, 178, 193, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

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

.services-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--silver);
    margin-bottom: 12px;
}

.services-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(168, 178, 193, 0.15);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--silver), var(--silver-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 60px rgba(168, 178, 193, 0.15);
    border-color: rgba(168, 178, 193, 0.3);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(168, 178, 193, 0.15), rgba(168, 178, 193, 0.08));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-icon svg {
    width: 36px;
    height: 36px;
    color: var(--silver);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--silver), var(--silver-light));
    transform: scale(1.05);
}

.service-card:hover .service-icon svg {
    color: var(--dark);
    transform: scale(1.1);
}

.service-title {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 16px 0;
    line-height: 1.4;
}

.service-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }

    .services-container {
        padding: 0 20px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-title {
        font-size: 32px;
    }

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

    .service-card {
        padding: 30px 24px;
    }
}

/* ========================================
   WhatsApp Floating Button
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
    width: 32px;
    height: 32px;
    color: white;
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsappPulse 2s infinite;
}

@keyframes whatsappPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 28px;
        height: 28px;
    }
}
