/* ============================================
   CALIRENT — LANDING PAGE STYLES
   Mobile-First Responsive Design
   ============================================ */

/* ===== CSS VARIABLES ===== */
:root {
    --primary: #0052D4;
    --primary-light: #4A90E2;
    --primary-dark: #003B9C;
    --secondary: #00C853;
    --secondary-dark: #009624;
    --accent: #FF6D00;
    --accent-light: #FF9E40;
    --gradient-main: linear-gradient(135deg, #0052D4 0%, #4A90E2 50%, #00C853 100%);
    --gradient-hero: linear-gradient(160deg, #0a1628 0%, #0d2347 40%, #0f3060 100%);
    --gradient-card: linear-gradient(135deg, #ffffff 0%, #f8faff 100%);
    --text-primary: #1a1a2e;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --bg-light: #f7f9fc;
    --bg-white: #ffffff;
    --border-light: #e2e8f0;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);
    --shadow-glow: 0 0 30px rgba(0,82,212,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul { list-style: none; }

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
}

.btn:active::after {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.btn-primary {
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,82,212,0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,82,212,0.45);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
    border-radius: var(--radius-lg);
}

.btn-block {
    width: 100%;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    z-index: 1001;
}

.navbar.scrolled .logo {
    color: var(--text-primary);
}

.logo i {
    font-size: 1.6rem;
    color: var(--secondary);
}

.logo strong {
    color: var(--secondary);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

.navbar.scrolled .nav-toggle span {
    background: var(--text-primary);
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

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

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--gradient-hero);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 40px 40px;
    gap: 8px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
}

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

.nav-menu li { width: 100%; }

.nav-menu a {
    display: block;
    padding: 14px 20px;
    color: rgba(255,255,255,0.85);
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #fff;
    background: rgba(255,255,255,0.1);
}

.nav-btn {
    background: var(--secondary) !important;
    color: #fff !important;
    text-align: center;
    border-radius: var(--radius-md) !important;
    font-weight: 600 !important;
    margin-top: 10px;
}

.nav-btn:hover {
    background: var(--secondary-dark) !important;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    overflow: hidden;
    padding: 120px 0 100px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(0,82,212,0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0,200,83,0.2) 0%, transparent 40%),
        radial-gradient(circle at 60% 80%, rgba(74,144,226,0.15) 0%, transparent 40%);
    z-index: 1;
}

.hero-particles {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255,255,255,0.3);
    border-radius: 50%;
    animation: floatParticle linear infinite;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    color: rgba(255,255,255,0.9);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    color: var(--secondary);
}

.hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: rgba(255,255,255,0.75);
    max-width: 560px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
}

.stat-suffix {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
    margin-top: 2px;
}

/* ===== HERO FORM ===== */
.hero-form-wrapper {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
}

.form-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 30px 24px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-main);
}

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

.form-header h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.form-header h3 i {
    color: var(--primary);
    margin-right: 6px;
}

.form-header p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--primary);
    margin-right: 4px;
    width: 16px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.95rem;
    color: var(--text-primary);
    background: var(--bg-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(0,82,212,0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #e53e3e;
}

.error-msg {
    display: block;
    font-size: 0.78rem;
    color: #e53e3e;
    margin-top: 4px;
    min-height: 0;
}

.form-success {
    text-align: center;
    padding: 30px 10px;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--secondary);
    margin-bottom: 16px;
    animation: successPop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes successPop {
    0% { transform: scale(0); }
    100% { transform: scale(1); }
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.form-success p {
    color: var(--text-muted);
}

/* ===== HERO WAVE ===== */
.hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 60px;
}

.hero-wave path {
    fill: var(--bg-white);
}

/* ===== BENEFITS BAR ===== */
.benefits-bar {
    padding: 30px 0;
    background: var(--bg-white);
    position: relative;
    z-index: 4;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.benefit-item:hover {
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: var(--gradient-main);
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.benefit-item strong {
    display: block;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.benefit-item span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== SECTION BASE ===== */
.section {
    padding: 70px 0;
}

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

.section-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0,82,212,0.08);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.7rem, 4vw, 2.8rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

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

/* ===== VEHICLES SECTION ===== */
.vehicles-section {
    background: var(--bg-light);
}

.carousel-wrapper {
    position: relative;
    overflow: hidden;
}

.carousel-track-container {
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 20px;
    padding: 10px 0;
}

.car-card {
    flex: 0 0 calc(100% - 0px);
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.car-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.car-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 5px 14px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #e8edf5 0%, #dde4ef 100%);
}

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

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

.car-info {
    padding: 20px;
}

.car-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.car-category {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

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

.car-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.car-spec i {
    color: var(--primary-light);
    width: 16px;
    text-align: center;
}

.car-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border-light);
}

.car-price {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.car-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.car-select-btn {
    padding: 10px 20px;
    background: var(--gradient-main);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.car-select-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,82,212,0.3);
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-white);
    border: 2px solid var(--border-light);
    color: var(--text-primary);
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.carousel-prev { left: -5px; }
.carousel-next { right: -5px; }

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-dot.active {
    width: 32px;
    border-radius: 5px;
    background: var(--primary);
}

/* ===== HOW SECTION ===== */
.how-section {
    background: var(--bg-white);
}

.steps-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.step-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    position: relative;
    transition: var(--transition);
    width: 100%;
    max-width: 360px;
    border: 2px solid transparent;
}

.step-card:hover {
    background: var(--bg-white);
    border-color: rgba(0,82,212,0.15);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.step-number {
    position: absolute;
    top: -14px;
    right: 20px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0,82,212,0.07);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-main);
    border-radius: var(--radius-md);
    color: #fff;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.step-connector {
    color: var(--primary-light);
    font-size: 1.2rem;
    transform: rotate(90deg);
}

/* ===== RESERVATION SECTION ===== */
.reservation-section {
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0,200,83,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74,144,226,0.2) 0%, transparent 50%);
}

.reservation-section .section-header {
    position: relative;
    z-index: 2;
}

.reservation-section .section-badge {
    background: rgba(255,255,255,0.15);
    color: #fff;
}

.reservation-section .section-header h2 {
    color: #fff;
}

.reservation-section .section-header p {
    color: rgba(255,255,255,0.7);
}

/* ===== CALI SECTION ===== */
.cali-section {
    background: var(--bg-light);
}

.cali-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.cali-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 280px;
    cursor: pointer;
    box-shadow: var(--shadow-md);
}

.cali-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.cali-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    transition: var(--transition);
}

.cali-card:hover .cali-card-overlay {
    background: linear-gradient(to top, rgba(0,82,212,0.9) 0%, rgba(0,82,212,0.2) 70%);
}

.cali-card-tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    width: fit-content;
}

.cali-card h3 {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.cali-card p {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
    line-height: 1.5;
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    background: var(--bg-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.testimonial-card:hover {
    background: var(--bg-white);
    border-color: rgba(0,82,212,0.1);
    box-shadow: var(--shadow-lg);
}

.stars {
    display: flex;
    gap: 3px;
    color: #f59e0b;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.testimonial-card > p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 18px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-author strong {
    display: block;
    font-size: 0.9rem;
}

.testimonial-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gradient-hero);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

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

.footer-brand .logo {
    margin-bottom: 14px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255,255,255,0.6);
}

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

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links ul li,
.footer-contact ul li {
    margin-bottom: 10px;
}

.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--secondary);
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.6);
}

.footer-contact li i {
    color: var(--secondary);
    margin-top: 4px;
    width: 16px;
    flex-shrink: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.4);
}

/* ===== WHATSAPP WIDGET ===== */
.wa-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
}

.wa-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #25D366;
    border: none;
    color: #fff;
    font-size: 1.8rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,0.4);
    transition: var(--transition);
    position: relative;
    animation: waFloat 3s ease-in-out infinite;
}

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

.wa-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37,211,102,0.5);
    animation: none;
}

.wa-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 22px;
    height: 22px;
    background: #e53e3e;
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.wa-chat {
    position: absolute;
    bottom: 75px;
    right: 0;
    width: 360px;
    max-width: calc(100vw - 48px);
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    transform: scale(0.8) translateY(20px);
    opacity: 0;
    visibility: hidden;
    transform-origin: bottom right;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-chat.active {
    transform: scale(1) translateY(0);
    opacity: 1;
    visibility: visible;
}

.wa-header {
    background: #075E54;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wa-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.wa-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
}

.wa-header-info strong {
    display: block;
    color: #fff;
    font-size: 0.95rem;
}

.wa-header-info span {
    color: rgba(255,255,255,0.7);
    font-size: 0.78rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.wa-online-dot {
    width: 8px;
    height: 8px;
    background: #25D366;
    border-radius: 50%;
    display: inline-block;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.wa-close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: var(--transition);
}

.wa-close:hover { opacity: 1; }

.wa-body {
    background: #e5ddd5;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 5 L35 15 L30 25 L25 15 Z' fill='%23d4cfc4' opacity='0.3'/%3E%3C/svg%3E");
    padding: 16px;
    max-height: 400px;
    overflow-y: auto;
}

.wa-messages {
    margin-bottom: 12px;
}

.wa-msg {
    max-width: 85%;
    padding: 10px 14px;
    border-radius: 8px;
    margin-bottom: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
    position: relative;
}

.wa-msg-bot {
    background: #fff;
    border-radius: 0 8px 8px 8px;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.wa-msg-user {
    background: #DCF8C6;
    border-radius: 8px 0 8px 8px;
    margin-left: auto;
}

.wa-time {
    display: block;
    font-size: 0.68rem;
    color: #999;
    text-align: right;
    margin-top: 4px;
}

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

.wa-form-group input,
.wa-form-group select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    font-family: var(--font);
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.wa-form-group input:focus,
.wa-form-group select:focus {
    border-color: #25D366;
    box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}

.wa-send-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: #25D366;
    color: #fff;
    border: none;
    border-radius: 20px;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.wa-send-btn:hover {
    background: #128C7E;
}

/* ===== intl-tel-input overrides ===== */
.iti {
    width: 100%;
}

.iti__country-container {
    z-index: 10;
}

.iti--allow-dropdown .iti__country-container:not(:has(+ input[disabled])):not(:has(+ input[readonly])):hover .iti__selected-country-primary {
    background: rgba(0,82,212,0.05);
}

/* ===== ANIMATIONS ===== */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE: TABLET (min-width: 600px) ===== */
@media (min-width: 600px) {
    .container { padding: 0 30px; }

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

    .car-card {
        flex: 0 0 calc(50% - 10px);
    }

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

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

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

    .car-image { height: 200px; }
}

/* ===== RESPONSIVE: DESKTOP (min-width: 992px) ===== */
@media (min-width: 992px) {
    .container { padding: 0 40px; }

    .section { padding: 100px 0; }

    /* Navbar Desktop */
    .nav-toggle { display: none; }

    .nav-menu {
        position: static;
        flex-direction: row;
        align-items: center;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        gap: 4px;
        box-shadow: none;
    }

    .nav-menu a {
        padding: 10px 18px;
        font-size: 0.92rem;
    }

    .navbar:not(.scrolled) .nav-menu a {
        color: rgba(255,255,255,0.85);
    }

    .navbar:not(.scrolled) .nav-menu a:hover {
        color: #fff;
        background: rgba(255,255,255,0.1);
    }

    .navbar.scrolled .nav-menu a {
        color: var(--text-secondary);
    }

    .navbar.scrolled .nav-menu a:hover {
        color: var(--primary);
        background: rgba(0,82,212,0.05);
    }

    .nav-btn {
        margin-top: 0 !important;
    }

    /* Hero Desktop */
    .hero {
        padding: 0;
        min-height: 100vh;
    }

    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        min-height: 100vh;
        padding-top: 80px;
    }

    .hero-text {
        flex: 1;
        text-align: left;
    }

    .hero-subtitle {
        margin: 0 0 30px;
    }

    .hero-stats {
        justify-content: flex-start;
    }

    .hero-form-wrapper {
        flex-shrink: 0;
        width: 420px;
        margin: 0;
    }

    /* Benefits */
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    /* Vehicles */
    .car-card {
        flex: 0 0 calc(33.333% - 14px);
    }

    .car-image { height: 220px; }

    .carousel-prev { left: -22px; }
    .carousel-next { right: -22px; }

    /* Steps */
    .steps-grid {
        flex-direction: row;
        align-items: stretch;
    }

    .step-card {
        flex: 1;
    }

    .step-connector {
        transform: none;
        display: flex;
        align-items: center;
    }

    /* Cali Grid */
    .cali-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .cali-card:first-child {
        grid-column: span 2;
        height: 350px;
    }

    .cali-card { height: 320px; }

    /* Testimonials */
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1.5fr;
    }

    .hero-wave svg { height: 100px; }
}

/* ===== RESPONSIVE: LARGE DESKTOP (min-width: 1200px) ===== */
@media (min-width: 1200px) {
    .hero h1 {
        font-size: 4rem;
    }

    .hero-form-wrapper {
        width: 440px;
    }
}

/* ===== SCROLL INDICATOR ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 28px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
}

/* ===== LOADING SKELETON ===== */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ===== CUSTOM SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(0,82,212,0.2);
    color: var(--text-primary);
}
