/* FleetLogic OnePager Styles */

/* Base Styles */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Hero Gradient */
.gradient-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(59, 130, 246, 0.3);
}

/* Theme Card Hover */
.theme-card {
    transition: all 0.3s ease;
}

.theme-card:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 40px -15px rgba(59, 130, 246, 0.4);
}

/* Pricing Card Styles */
.pricing-card {
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(59, 130, 246, 0.3);
}

.pricing-card.featured {
    border: 2px solid #2563eb;
    box-shadow: 0 10px 30px -5px rgba(37, 99, 235, 0.3);
}

/* Feature Image Styles */
.feature-image {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e2e8f0;
}

/* Form Styles */
input[type="text"],
input[type="tel"],
input[type="email"] {
    transition: all 0.2s ease;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Button Active State */
button:active {
    transform: scale(0.98);
}

/* Floating Buttons Animation */
.floating-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.floating-btn:active {
    transform: scale(0.95);
}

/* Problem Cards */
.problem-card {
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateX(8px);
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }
    
    h2 {
        font-size: 2rem;
        line-height: 1.3;
    }
}

/* Smooth Scrolling for Safari */
@supports (-webkit-overflow-scrolling: touch) {
    * {
        -webkit-overflow-scrolling: touch;
    }
}
