/* Modern Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Modern Color Palette */
    --primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --dark: #1a1a2e;
    --darker: #0f0f1e;
    --light: #f8f9fa;
    --white: #ffffff;
    --gray: #6c757d;
    --success: #10b981;
    
    /* Gradients */
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-4: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--light);
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 24px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    top: 50%;
    right: -100px;
    animation-delay: -7s;
}

.shape-3 {
    width: 600px;
    height: 600px;
    background: var(--gradient-3);
    bottom: -150px;
    left: 30%;
    animation-delay: -14s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

/* Glass Effect */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Modern Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px 0;
    box-shadow: var(--shadow-md);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo-modern {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.logo-icon {
    width: 100px;
    height: 60px;
    /* background: var(--gradient-1); */
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.wh-bg {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-main {
    font-size: 20px;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-sub {
    font-size: 11px;
    font-weight: 500;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu ul {
    display: flex;
    gap: 8px;
}

.nav-link {
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 14px;
    color: var(--dark);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link i {
    font-size: 12px;
    opacity: 0.7;
}

.nav-link:hover, .nav-link.active {
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn-call {
    padding: 10px 20px;
    background: var(--gradient-1);
    color: var(--white);
    border-radius: 10px;
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-call i {
    font-size: 14px;
}

.btn-call:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-call-secondary {
    background: var(--gradient-3);
    padding: 10px 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Modern */
.hero-modern {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 50px;
    color: var(--success);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: pulse-badge 2s infinite;
}

@keyframes pulse-badge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4);
    }
    50% {
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--darker);
}

.gradient-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: var(--gradient-2);
    opacity: 0.3;
    z-index: -1;
    border-radius: 4px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-buttons-modern {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-modern {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-modern {
    background: var(--gradient-1);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary-modern:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary-modern {
    background: var(--white);
    color: var(--dark);
    box-shadow: var(--shadow-sm);
    border: 2px solid rgba(102, 126, 234, 0.2);
}

.btn-secondary-modern:hover {
    border-color: #667eea;
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 13px;
    color: var(--gray);
    font-weight: 500;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 500px;
}

.hero-card {
    position: absolute;
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.hero-card i {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.hero-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 8px;
}

.hero-card p {
    font-size: 13px;
    color: var(--gray);
}

.card-1 {
    top: 0;
    left: 0;
    width: 220px;
    animation: float-card 6s infinite ease-in-out;
}

.card-2 {
    top: 50%;
    right: 0;
    width: 200px;
    transform: translateY(-50%);
    animation: float-card 6s infinite ease-in-out;
    animation-delay: -2s;
}

.card-3 {
    bottom: 0;
    left: 50px;
    width: 240px;
    animation: float-card 6s infinite ease-in-out;
    animation-delay: -4s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    color: var(--gray);
    font-size: 13px;
    font-weight: 500;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray);
    border-radius: 12px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        opacity: 1;
        top: 8px;
    }
    100% {
        opacity: 0;
        top: 24px;
    }
}

/* Section Header Modern */
.section-header-modern {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(102, 126, 234, 0.1);
    color: #667eea;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header-modern h2 {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--darker);
    margin-bottom: 16px;
}

.section-header-modern p {
    font-size: 18px;
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

/* Services Modern */
.services-modern {
    padding: 100px 0;
    position: relative;
}

.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-1);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.featured-service {
    background: var(--gradient-1);
    color: var(--white);
}

.featured-service h3 {
    color: var(--white);
}

.featured-service > p {
    color: rgba(255, 255, 255, 0.9) !important;
}

.featured-service .service-features li {
    color: rgba(255, 255, 255, 0.9);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-2);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    margin-bottom: 24px;
}

.icon-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    border-radius: 20px;
    opacity: 0.1;
}

.service-icon-wrapper i {
    position: relative;
    font-size: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.featured-service .service-icon-wrapper i {
    -webkit-text-fill-color: var(--white);
}

.service-card-modern h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--darker);
}

.service-card-modern > p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.service-features i {
    font-size: 12px;
    color: var(--success);
    flex-shrink: 0;
}

.featured-service .service-features i {
    color: rgba(255, 255, 255, 0.9);
}

.btn-service-modern {
    width: 100%;
    padding: 14px;
    background: rgba(102, 126, 234, 0.1);
    border: 2px solid transparent;
    border-radius: 12px;
    color: #667eea;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-service-modern:hover {
    background: var(--gradient-1);
    color: var(--white);
    border-color: transparent;
}

.featured-service .btn-service-modern {
    background: var(--white);
    color: #667eea;
}

/* About Modern */
.about-modern {
    padding: 100px 0;
    position: relative;
}

.about-grid-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content-modern {
    position: relative;
}

.about-intro {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.8;
    margin: 24px 0 40px;
}

.about-features-modern {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 48px;
}

.about-feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-number {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.feature-content h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 6px;
}

.feature-content p {
    font-size: 14px;
    color: var(--gray);
    line-height: 1.6;
}

.about-achievement {
    display: flex;
    gap: 32px;
    padding: 32px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
}

.achievement-item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.achievement-item i {
    font-size: 32px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.achievement-item h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 4px;
}

.achievement-item p {
    font-size: 13px;
    color: var(--gray);
}

/* About Visual */
.about-visual-modern {
    position: relative;
    height: 600px;
}

.visual-card {
    position: relative;
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--light);
}

.visual-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.visual-card:hover .card-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 64px;
    margin-bottom: 16px;
    cursor: pointer;
    transition: var(--transition);
}

.overlay-content i:hover {
    transform: scale(1.1);
}

.overlay-content span {
    display: block;
    font-weight: 600;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 16px;
    animation: float-badge 3s infinite ease-in-out;
}

.floating-badge i {
    font-size: 28px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.floating-badge strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--darker);
}

.floating-badge span {
    display: block;
    font-size: 12px;
    color: var(--gray);
}

.badge-1 {
    top: 40px;
    right: -30px;
}

.badge-2 {
    bottom: 60px;
    left: -40px;
    animation-delay: -1.5s;
}

@keyframes float-badge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-12px);
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    margin-top: 50px;
}

.faq-image {
    position: sticky;
    top: 100px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.faq-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 20px;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    font-size: 20px;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 28px 24px 28px;
}

.faq-answer p {
    margin: 0;
    color: var(--text);
    line-height: 1.8;
    font-size: 15px;
}

/* Fleet Gallery Section */
.fleet-gallery-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.fleet-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.fleet-gallery-section .section-header-modern h2,
.fleet-gallery-section .section-header-modern p {
    color: var(--white);
}

.fleet-gallery-section .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
    position: relative;
    z-index: 1;
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition);
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.fleet-card-highlight {
    grid-column: span 2;
}

.fleet-image {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.fleet-card-highlight .fleet-image {
    height: 450px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
}

.fleet-badge.featured {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.fleet-badge i {
    font-size: 18px;
}

.fleet-info {
    padding: 28px;
}

.fleet-info h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.fleet-info p {
    color: var(--text);
    margin-bottom: 16px;
    font-size: 15px;
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text);
    background: var(--light);
    padding: 6px 12px;
    border-radius: 8px;
}

.fleet-features i {
    color: var(--success);
    font-size: 14px;
}

.fleet-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.fleet-stat-item {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.fleet-stat-item:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-5px);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 26px;
}

.stat-content h4 {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.stat-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* Service Areas Modern */
.service-areas-modern {
    padding: 100px 0;
    background: var(--white);
}

.areas-grid-modern {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.area-card-modern {
    background: var(--light);
    border-radius: 16px;
    padding: 28px 24px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
}

.area-card-modern:hover {
    background: var(--white);
    border-color: rgba(102, 126, 234, 0.3);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.area-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 20px;
}

.area-card-modern h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
    margin-bottom: 8px;
}

.area-card-modern p {
    font-size: 13px;
    color: var(--gray);
    margin-bottom: 16px;
}

.area-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #667eea;
    transition: var(--transition);
}

.area-link:hover {
    gap: 10px;
}

/* Testimonials Modern */
.testimonials-modern {
    padding: 100px 0;
}

.testimonials-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card-modern {
    background: var(--white);
    border-radius: 24px;
    padding: 36px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.testimonial-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.featured-testimonial {
    background: var(--gradient-1);
    color: var(--white);
}

.featured-testimonial p,
.featured-testimonial h4,
.featured-testimonial span {
    color: var(--white) !important;
}

.quote-icon {
    font-size: 40px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.featured-testimonial .quote-icon {
    -webkit-text-fill-color: rgba(255, 255, 255, 0.3);
}

.rating {
    margin-bottom: 20px;
    color: #fbbf24;
}

.rating i {
    font-size: 14px;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    background: var(--light);
    color: black;
    text-align: center;
    align-content: center;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--darker);
    margin-bottom: 4px;
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: var(--gradient-1);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
    animation: pattern-move 20s linear infinite;
}

@keyframes pattern-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(100px, 100px);
    }
}

.cta-content {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.cta-text {
    flex: 1;
    color: var(--white);
}

.cta-text h2 {
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 12px;
}

.cta-text p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-actions {
    display: flex;
    gap: 16px;
}

.btn-cta-primary {
    padding: 20px 32px;
    background: var(--white);
    color: var(--dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-cta-primary:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.btn-cta-primary i {
    font-size: 28px;
    color: #667eea;
}

.btn-cta-label {
    display: block;
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 4px;
}

.btn-cta-number {
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: var(--darker);
}

.btn-cta-whatsapp {
    padding: 20px 32px;
    background: #25d366;
    color: var(--white);
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.btn-cta-whatsapp:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    background: #20ba5a;
}

.btn-cta-whatsapp i {
    font-size: 24px;
}

/* Footer Modern */
.footer-modern {
    background: var(--darker);
    color: var(--white);
}

.footer-main {
    padding: 80px 0 40px;
}

.footer-grid-modern {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social-modern {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gradient-1);
    transform: translateY(-4px);
}

.footer-col-modern h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-links i {
    font-size: 10px;
}

.contact-info-modern {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    gap: 16px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    background: var(--gradient-1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text strong {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: var(--white);
}

.contact-text span,
.contact-text a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.contact-text a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--white);
}

/* Floating Action Buttons */
.floating-actions {
    position: fixed;
    bottom: 32px;
    right: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.fab-whatsapp,
.fab-phone {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.fab-whatsapp {
    background: #25d366;
    animation: pulse-whatsapp 2s infinite;
}

.fab-phone {
    background: var(--gradient-1);
    animation: pulse-phone 2s infinite;
    animation-delay: 1s;
}

.fab-whatsapp:hover,
.fab-phone:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(37, 211, 102, 0);
    }
}

@keyframes pulse-phone {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(102, 126, 234, 0);
    }
}

/* Scroll to Top Modern */
.scroll-top-modern {
    position: fixed;
    bottom: 32px;
    left: 32px;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: none;
    border-radius: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 998;
    color: #667eea;
    font-size: 20px;
}

.scroll-top-modern:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.scroll-top-modern.show {
    display: flex;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid,
    .about-grid-modern {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        height: 400px;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .areas-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-image {
        position: relative;
        top: 0;
        max-height: 400px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-card-highlight {
        grid-column: span 1;
    }
    
    .fleet-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-grid-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow-xl);
        padding: 100px 32px 32px;
        transition: var(--transition);
        z-index: 999;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 4px;
    }
    
    .nav-link {
        padding: 14px 20px;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .btn-call {
        padding: 10px 12px;
        font-size: 12px;
        min-width: auto;
    }
    
    .btn-call span {
        display: none;
    }
    
    .btn-call i {
        font-size: 16px;
        margin: 0;
    }
    
    .hero-title {
        font-size: 38px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
    }
    
    .btn-modern {
        width: 100%;
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .section-header-modern h2 {
        font-size: 32px;
    }
    
    .services-grid-modern,
    .testimonials-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .areas-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-question h3 {
        font-size: 16px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 20px 20px 20px;
    }
    
    .fleet-image {
        height: 250px;
    }
    
    .fleet-card-highlight .fleet-image {
        height: 300px;
    }
    
    .fleet-stats {
        grid-template-columns: 1fr;
    }
    
    .about-achievement {
        flex-direction: column;
    }
    
    .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-cta-primary,
    .btn-cta-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .footer-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }
    
    .floating-actions {
        right: 20px;
        bottom: 20px;
    }
    
    .fab-whatsapp,
    .fab-phone {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .section-header-modern h2 {
        font-size: 28px;
    }
    
    .areas-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .cta-text h2 {
        font-size: 28px;
    }
}
