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

:root {
    --primary-color: #1e3a8a;
    --secondary-color: #f59e0b;
    --dark-bg: #0f172a;
    --light-bg: #f8fafc;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    height: 70px;
}

.logo {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

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

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

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #e0e7ff 0%, #dcddde 100%);
    display: flex;
    align-items: center;
    padding-top: 70px;
    position: relative;
    overflow: hidden;
}


.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    z-index: 1;
    position: relative;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease-out;
}

.hero-text .highlight {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-text p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    animation: fadeInUp 1.2s ease-out;
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
}

.hero-car-placeholder {
    width: 100%;
    height: 400px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-car-placeholder img {
    animation: fadeIn 1.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.image-placeholder {
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border: 2px dashed #d1d5db;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

/* Stats Section */
.stats {
    background: var(--white);
    padding: 40px 0;
    border-bottom: 1px solid #e5e7eb;
}

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

.stat-card {
    text-align: center;
    padding: 1.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--light-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

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

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e0e7ff, #dcddde);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.8;
}

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

.fleet-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.fleet-tab {
    padding: 0.75rem 1.5rem;
    border: 2px solid #e5e7eb;
    background: var(--white);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: var(--text-light);
}

.fleet-tab.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fleet-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

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

.fleet-image {
    height: 250px;
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
}

.fleet-image img {
    transition: transform 0.3s ease;
}

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

.fleet-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--secondary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.fleet-details {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.fleet-specs {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
    background: #f8fafc;
    padding: 0.4rem 0.8rem;
    border-radius: 10px;
    font-weight: 500;
}

.fleet-details p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.fleet-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e7eb;
    gap: 1rem;
}

.price-wrapper {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-unit {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 500;
}

.fleet-card .btn {
    font-size: 0.9rem;
    padding: 0.75rem 1.5rem;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--light-bg);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 40px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    display: none;
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.process-step h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.process-step p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-slider {
    max-width: 800px;
    margin: 4rem auto 0;
}

.testimonial-card {
    background: var(--light-bg);
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
}

.testimonial-text {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}

.author-info h4 {
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-light);
    font-size: 0.875rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-image: 
        linear-gradient(135deg, var(--primary-color), var(--secondary-color)),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Contact Form */
.contact {
    padding: 100px 0;
    background: var(--light-bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #edeff0, #edeff0);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-details h4 {
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    min-height: 44px;
    touch-action: manipulation;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

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

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

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-brand p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.footer-section h4 {
    margin-bottom: 1.5rem;
    color: var(--white);
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #94a3b8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(245, 158, 11, 0.2);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

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

.btn-white:hover {
    background: var(--light-bg);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px 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);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
    background: #128c7e;
}

.whatsapp-float svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

/* Back to Appshop Button - Only visible on mobile */
.back-to-appshop {
    position: fixed;
    bottom: 20px;
    left: 20px;
    width: 55px;
    height: 55px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(30, 58, 138, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 998;
    text-decoration: none;
}

.back-to-appshop:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(30, 58, 138, 0.5);
    background: var(--secondary-color);
}

.back-to-appshop svg {
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.1));
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 20px;
        right: 20px;
    }
    
    .whatsapp-float svg {
        width: 24px;
        height: 24px;
    }

    .back-to-appshop {
        display: flex;
    }
}

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

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

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

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

/* Responsive */
@media (max-width: 480px) {
    .fleet-details h3 {
        font-size: 1.25rem;
    }
    
    .fleet-specs {
        gap: 1rem;
        justify-content: center;
    }
    
    .spec {
        font-size: 0.8rem;
    }
    
    .price {
        font-size: 1.5rem;
    }
    
    .fleet-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 1.75rem;
    }
    
    .hero-text p {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .hero-car-placeholder {
        height: 200px;
    }
    
    .stats-grid {
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-slider {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        padding: 2rem;
        box-shadow: var(--shadow);
        transition: 0.3s;
        gap: 1.5rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        padding: 100px 0 50px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        padding: 1rem;
    }
    
    .hero-car-placeholder {
        height: 250px;
        margin-top: 1rem;
    }
    
    .hero-car-placeholder img {
        object-fit: contain;
        padding: 10px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .fleet-price {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        text-align: center;
    }
    
    .price-wrapper {
        justify-content: center;
        margin-bottom: 0.5rem;
    }
    
    .fleet-card .btn {
        width: 100%;
    }
}

@media (min-width: 769px) {
    .process-step:not(:last-child)::after {
        display: block;
    }
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

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

/* iPad Pro Optimization (1024px - 1366px) */
@media screen and (min-width: 1024px) and (max-width: 1366px) {
    .container {
        max-width: 1024px;
        padding: 0 30px;
    }
    
    /* Navigation optimizations */
    .nav-menu {
        gap: 2rem;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem 0;
    }
    
    /* Hero section optimizations */
    .hero-text h1 {
        font-size: 3rem;
        line-height: 1.1;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .hero-buttons {
        gap: 1.5rem;
    }
    
    .hero-buttons .btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    .hero-car-placeholder {
        height: 380px;
    }
    
    /* Stats section */
    .stats-grid {
        gap: 2.5rem;
        padding: 0 2rem;
    }
    
    .stat-number {
        font-size: 2.25rem;
    }
    
    /* Features grid */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        max-width: 900px;
        margin: 0 auto;
    }
    
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.1rem;
    }
    
    /* Fleet section - iPad Pro optimized (3 columns) */
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .fleet-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: none;
    }
    
    .fleet-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .fleet-image {
        height: 160px;
        position: relative;
        overflow: hidden;
        background: #f3f4f6;
        flex-shrink: 0;
    }
    
    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .fleet-card:hover .fleet-image img {
        transform: scale(1.03);
    }
    
    .fleet-badge {
        position: absolute;
        top: 8px;
        right: 8px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 0.25rem 0.5rem;
        border-radius: 12px;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    .fleet-details {
        padding: 1.2rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .fleet-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
        color: var(--text-dark);
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
    }
    
    .fleet-specs {
        display: flex;
        gap: 0.5rem;
        margin-bottom: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .spec {
        display: flex;
        align-items: center;
        gap: 0.25rem;
        color: var(--text-light);
        font-size: 0.7rem;
        font-weight: 500;
        background: #f8fafc;
        padding: 0.2rem 0.4rem;
        border-radius: 6px;
    }
    
    .fleet-details p {
        color: var(--text-light);
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        flex-grow: 1;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fleet-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0.8rem;
        border-top: 1px solid #e5e7eb;
        gap: 0.6rem;
        margin-top: auto;
    }
    
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 0.2rem;
        justify-content: center;
    }
    
    .price {
        font-size: 1rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .price-unit {
        font-size: 0.7rem;
        color: var(--text-light);
        font-weight: 500;
    }
    
    .fleet-card .btn {
        width: 100%;
        padding: 0.6rem 0.8rem;
        font-size: 0.75rem;
        font-weight: 600;
        border-radius: 6px;
        min-height: 36px;
    }
    
    /* Process steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .step-number {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }
    
    /* Contact form */
    .contact-content {
        gap: 3rem;
    }
    
    .contact-form {
        padding: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 2.5rem;
    }
    
    /* Touch optimizations */
    .btn {
        min-height: 44px;
        padding: 1rem 2rem;
    }
    
    .nav-link::after {
        height: 3px;
    }
    
    /* Floating buttons */
    .whatsapp-float,
    .back-to-appshop {
        width: 65px;
        height: 65px;
    }
    
    .whatsapp-float svg {
        width: 30px;
        height: 30px;
    }
}

/* iPad Mini & Standard Tablet Optimization (768px - 1024px) */
@media screen and (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 768px;
        padding: 0 24px;
    }
    
    /* Navigation - keep desktop style but optimized */
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: transparent;
        width: auto;
        padding: 0;
        box-shadow: none;
        gap: 1.5rem;
    }
    
    .nav-link {
        font-size: 0.9rem;
    }
    
    .nav-cta {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }
    
    /* Hero section - single column on portrait, two column on landscape */
    .hero {
        padding: 80px 0 60px;
        min-height: 80vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        padding: 0.875rem 2rem;
        min-width: 160px;
    }
    
    .hero-car-placeholder {
        height: 300px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Stats section */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-card {
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Features */
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Fleet - iPad Mini optimized (3 columns) */
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 720px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .fleet-card {
        background: var(--white);
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: none;
    }
    
    .fleet-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .fleet-image {
        height: 140px;
        position: relative;
        overflow: hidden;
        background: #f3f4f6;
        flex-shrink: 0;
    }
    
    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .fleet-card:hover .fleet-image img {
        transform: scale(1.02);
    }
    
    .fleet-badge {
        position: absolute;
        top: 6px;
        right: 6px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 0.2rem 0.4rem;
        border-radius: 10px;
        font-size: 0.6rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }
    
    .fleet-details {
        padding: 1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .fleet-details h3 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-weight: 700;
        line-height: 1.2;
        text-align: center;
    }
    
    .fleet-specs {
        display: flex;
        gap: 0.4rem;
        margin-bottom: 0.6rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .spec {
        display: flex;
        align-items: center;
        gap: 0.2rem;
        color: var(--text-light);
        font-size: 0.65rem;
        font-weight: 500;
        background: #f8fafc;
        padding: 0.15rem 0.3rem;
        border-radius: 5px;
    }
    
    .fleet-details p {
        color: var(--text-light);
        font-size: 0.7rem;
        line-height: 1.3;
        margin-bottom: 0.8rem;
        flex-grow: 1;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fleet-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0.6rem;
        border-top: 1px solid #e5e7eb;
        gap: 0.5rem;
        margin-top: auto;
    }
    
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 0.15rem;
        justify-content: center;
    }
    
    .price {
        font-size: 0.9rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .price-unit {
        font-size: 0.65rem;
        color: var(--text-light);
        font-weight: 500;
    }
    
    .fleet-card .btn {
        width: 100%;
        padding: 0.5rem 0.6rem;
        font-size: 0.7rem;
        font-weight: 600;
        border-radius: 5px;
        min-height: 32px;
    }
    
    /* Process steps */
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .process-step::after {
        display: none;
    }
    
    /* Testimonials */
    .testimonials-slider {
        max-width: 600px;
    }
    
    .testimonial-card {
        padding: 2.5rem;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-info {
        text-align: center;
    }
    
    .contact-item {
        justify-content: center;
        text-align: left;
        max-width: 400px;
        margin: 0 auto 2rem;
    }
    
    .contact-form {
        max-width: 500px;
        margin: 0 auto;
        padding: 2.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Touch optimizations */
    .btn {
        min-height: 44px;
        touch-action: manipulation;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    /* Form elements */
    .form-group input,
    .form-group textarea,
    .form-group select {
        min-height: 44px;
        font-size: 16px; /* Prevents zoom on iOS */
    }
    
    /* Fleet card buttons */
    .fleet-card .btn {
        width: 100%;
        padding: 1rem;
    }
}

/* iPad Landscape Specific (1024px+ width, but limited height) */
@media screen and (min-width: 1024px) and (max-height: 768px) and (orientation: landscape) {
    .hero {
        min-height: 100vh;
        padding: 70px 0 30px;
    }
    
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-car-placeholder {
        height: 320px;
    }
    
    /* Reduce section padding for landscape */
    .features,
    .fleet,
    .process,
    .testimonials,
    .contact {
        padding: 60px 0;
    }
    
    .cta {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

/* Universal Touch Improvements for All Tablets */
@media (pointer: coarse) {
    /* Improve touch targets */
    .nav-link,
    .btn,
    .social-link,
    .whatsapp-float,
    .back-to-appshop {
        min-height: 44px;
        min-width: 44px;
    }
    
    /* Remove hover effects on touch devices */
    .feature-card:hover,
    .fleet-card:hover {
        transform: none;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    
    .nav-link:hover::after {
        width: 0;
    }
    
    /* Improve button press feedback */
    .btn:active,
    .nav-link:active {
        transform: scale(0.98);
        opacity: 0.8;
    }
    
    /* Better form interaction */
    .form-group input:focus,
    .form-group textarea:focus,
    .form-group select:focus {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.2);
    }
    
    /* Improve scrolling */
    body {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
    }
}

/* iPad Pro Portrait Specific */
@media screen and (width: 1024px) and (height: 1366px) and (orientation: portrait) {
    .container {
        max-width: 900px;
        padding: 0 40px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 4rem;
    }
    
    .hero-text h1 {
        font-size: 3.5rem;
    }
    
    .hero-text p {
        font-size: 1.25rem;
        max-width: 700px;
        margin: 0 auto 2rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.8rem;
        max-width: 900px;
        margin: 0 auto;
        padding: 0 30px;
    }
    
    .fleet-card {
        background: var(--white);
        border-radius: 14px;
        overflow: hidden;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: none;
    }
    
    .fleet-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    }
    
    .fleet-image {
        height: 180px;
        position: relative;
        overflow: hidden;
        background: #f3f4f6;
        flex-shrink: 0;
    }
    
    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .fleet-card:hover .fleet-image img {
        transform: scale(1.04);
    }
    
    .fleet-badge {
        position: absolute;
        top: 10px;
        right: 10px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 0.3rem 0.6rem;
        border-radius: 14px;
        font-size: 0.65rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.4px;
    }
    
    .fleet-details {
        padding: 1.4rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .fleet-details h3 {
        font-size: 1.15rem;
        margin-bottom: 0.7rem;
        color: var(--text-dark);
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
    }
    
    .fleet-specs {
        display: flex;
        gap: 0.6rem;
        margin-bottom: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .spec {
        display: flex;
        align-items: center;
        gap: 0.3rem;
        color: var(--text-light);
        font-size: 0.7rem;
        font-weight: 500;
        background: #f8fafc;
        padding: 0.25rem 0.5rem;
        border-radius: 8px;
    }
    
    .fleet-details p {
        color: var(--text-light);
        font-size: 0.8rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        flex-grow: 1;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fleet-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0.8rem;
        border-top: 1px solid #e5e7eb;
        gap: 0.7rem;
        margin-top: auto;
    }
    
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 0.2rem;
        justify-content: center;
    }
    
    .price {
        font-size: 1.1rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .price-unit {
        font-size: 0.75rem;
        color: var(--text-light);
        font-weight: 500;
    }
    
    .fleet-card .btn {
        width: 100%;
        padding: 0.7rem 1rem;
        font-size: 0.8rem;
        font-weight: 600;
        border-radius: 8px;
        min-height: 38px;
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 4rem;
    }
}

/* iPad Mini Portrait Specific */
@media screen and (width: 768px) and (height: 1024px) and (orientation: portrait) {
    .container {
        padding: 0 30px;
    }
    
    .hero-text h1 {
        font-size: 2.75rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }
    
    .fleet-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
        max-width: 700px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .fleet-card {
        background: var(--white);
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
        transition: all 0.3s ease;
        display: flex;
        flex-direction: column;
        height: 100%;
        max-width: none;
    }
    
    .fleet-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    
    .fleet-image {
        height: 120px;
        position: relative;
        overflow: hidden;
        background: #f3f4f6;
        flex-shrink: 0;
    }
    
    .fleet-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }
    
    .fleet-card:hover .fleet-image img {
        transform: scale(1.02);
    }
    
    .fleet-badge {
        position: absolute;
        top: 6px;
        right: 6px;
        background: var(--secondary-color);
        color: var(--white);
        padding: 0.2rem 0.4rem;
        border-radius: 8px;
        font-size: 0.55rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.2px;
    }
    
    .fleet-details {
        padding: 1rem;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }
    
    .fleet-details h3 {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        color: var(--text-dark);
        font-weight: 700;
        text-align: center;
        line-height: 1.2;
    }
    
    .fleet-specs {
        display: flex;
        gap: 0.3rem;
        margin-bottom: 0.5rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .spec {
        display: flex;
        align-items: center;
        gap: 0.15rem;
        color: var(--text-light);
        font-size: 0.6rem;
        font-weight: 500;
        background: #f8fafc;
        padding: 0.1rem 0.25rem;
        border-radius: 4px;
    }
    
    .fleet-details p {
        color: var(--text-light);
        font-size: 0.65rem;
        line-height: 1.2;
        margin-bottom: 0.6rem;
        flex-grow: 1;
        text-align: center;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    .fleet-price {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-top: 0.5rem;
        border-top: 1px solid #e5e7eb;
        gap: 0.4rem;
        margin-top: auto;
    }
    
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 0.1rem;
        justify-content: center;
    }
    
    .price {
        font-size: 0.8rem;
        font-weight: 700;
        background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .price-unit {
        font-size: 0.6rem;
        color: var(--text-light);
        font-weight: 500;
    }
    
    .fleet-card .btn {
        width: 100%;
        padding: 0.4rem 0.5rem;
        font-size: 0.65rem;
        font-weight: 600;
        border-radius: 5px;
        min-height: 28px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}