/* ==========================================
   EV CHARGING PAGE - PREMIUM UI
   Electric Blue Theme with Stunning Animations
   ========================================== */

/* === VARIABLES === */
:root {
    --electric-blue: #0066FF;
    --electric-cyan: #00D4FF;
    --electric-purple: #6366F1;
    --dark-navy: #0F172A;
    --text-dark: #1E293B;
    --text-gray: #64748B;
    --white: #FFFFFF;
    --light-bg: #F8FAFC;
    --success: #10B981;
    --warning: #F59E0B;

    --gradient-primary: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-secondary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    --shadow: 0 4px 20px rgba(0, 102, 255, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 102, 255, 0.15);
    --shadow-xl: 0 20px 60px rgba(0, 102, 255, 0.2);
}

/* === RESET === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 40px;
}

.highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

.nav-menu a {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:not(.btn-cta):hover,
.nav-menu a.active {
    color: var(--electric-blue);
}

.nav-menu a:not(.btn-cta)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-menu a:not(.btn-cta):hover::after {
    width: 100%;
}

.btn-cta {
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #E0F2FE 0%, #DBEAFE 50%, #EDE9FE 100%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.8;
    }
}

.floating-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--electric-cyan);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--electric-blue);
    bottom: 20%;
    right: 10%;
    animation-delay: 5s;
}

.orb-3 {
    width: 350px;
    height: 350px;
    background: var(--electric-purple);
    top: 40%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -50px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 30px) scale(0.9);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.badge-wrapper {
    animation: slideDown 0.8s ease-out;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow);
    animation: pulse 3s ease-in-out infinite;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 25px 0 15px;
    color: var(--text-dark);
    animation: slideUp 0.8s ease-out 0.2s backwards;
}

.electric-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out 0.4s backwards;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
    animation: slideUp 0.8s ease-out 0.6s backwards;
}

.highlight-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.highlight-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
}

.highlight-text p {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.hero-cta {
    display: flex;
    gap: 15px;
    animation: slideUp 0.8s ease-out 0.8s backwards;
}

.btn-hero {
    padding: 18px 35px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-hero.primary {
    background: var(--gradient-primary);
    color: white;
}

.btn-hero.secondary {
    background: white;
    color: var(--electric-blue);
    border: 2px solid var(--electric-blue);
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.hero-visual {
    animation: slideLeft 0.8s ease-out 0.4s backwards;
}

.visual-card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: all 0.5s ease;
}

.visual-card:hover {
    transform: scale(1.05) rotate(2deg);
}

.visual-card img {
    width: 100%;
    height: auto;
    display: block;
}

.visual-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--electric-blue);
    box-shadow: var(--shadow-lg);
    animation: bounce 2s ease infinite;
}

/* === SECTIONS === */
section {
    padding: 90px 0;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
}

.label {
    display: inline-block;
    background: rgba(0, 102, 255, 0.1);
    color: var(--electric-blue);
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.section-head h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.section-head p {
    font-size: 1.15rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

/* === WHY EV SECTION === */
.why-ev-section {
    background: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.stat-card:nth-child(1) {
    animation-delay: 0.1s;
}

.stat-card:nth-child(2) {
    animation-delay: 0.2s;
}

.stat-card:nth-child(3) {
    animation-delay: 0.3s;
}

.stat-card:nth-child(4) {
    animation-delay: 0.4s;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.stat-card.featured {
    background: var(--gradient-primary);
    color: white;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.stat-card.featured .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

/* === INCOME SECTION === */
.income-section {
    background: var(--light-bg);
}

.income-showcase {
    max-width: 900px;
    margin: 0 auto;
}

.income-card.main {
    background: var(--gradient-dark);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    margin-bottom: 40px;
    box-shadow: var(--shadow-xl);
    animation: scaleIn 0.6s ease-out;
}

.income-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.income-header i {
    font-size: 2rem;
}

.income-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.income-amount {
    font-size: 3.5rem;
    font-weight: 900;
    margin: 20px 0;
    background: linear-gradient(135deg, #00D4FF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.income-note {
    opacity: 0.9;
}

.revenue-split {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.split-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    animation: slideUp 0.6s ease-out backwards;
}

.split-card:first-child {
    animation-delay: 0.2s;
}

.split-card:last-child {
    animation-delay: 0.4s;
}

.split-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.split-card.owner {
    border: 3px solid var(--success);
}

.split-card.company {
    border: 3px solid var(--electric-cyan);
}

.split-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.split-card.owner .split-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.split-card.company .split-icon {
    background: rgba(0, 212, 255, 0.1);
    color: var(--electric-cyan);
}

.split-percentage {
    font-size: 3rem;
    font-weight: 900;
    margin: 15px 0;
}

.split-card.owner .split-percentage {
    color: var(--success);
}

.split-card.company .split-percentage {
    color: var(--electric-cyan);
}

.split-divider {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-gray);
}

.revenue-sources {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    animation: fadeIn 0.6s ease-out 0.6s backwards;
}

.revenue-sources h4 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    text-align: center;
}

.sources-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.source {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-bg);
    border-radius: 12px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.source:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(10px);
}

.source i {
    font-size: 1.5rem;
    color: var(--electric-blue);
}

.source:hover i {
    color: white;
}

/* === VEHICLES SECTION === */
.vehicles-section {
    background: white;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.vehicle-card {
    background: white;
    border: 2px solid var(--light-bg);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: slideUp 0.6s ease-out backwards;
}

.vehicle-card:nth-child(1) {
    animation-delay: 0.1s;
}

.vehicle-card:nth-child(2) {
    animation-delay: 0.2s;
}

.vehicle-card:nth-child(3) {
    animation-delay: 0.3s;
}

.vehicle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.vehicle-card:hover::before {
    transform: scaleX(1);
}

.vehicle-card:hover {
    transform: translateY(-10px);
    border-color: var(--electric-blue);
    box-shadow: var(--shadow-xl);
}

.vehicle-visual {
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: white;
    transition: all 0.4s ease;
}

.vehicle-card:hover .vehicle-visual {
    transform: rotateY(360deg);
}

.vehicle-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
    text-align: center;
}

.vehicle-card>p {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.vehicle-features {
    list-style: none;
    margin-bottom: 20px;
}

.vehicle-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
}

.vehicle-features i {
    color: var(--success);
}

.badge {
    display: inline-block;
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    margin: 0 auto;
    display: block;
    width: fit-content;
}

.badge.popular {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.badge.growing {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.badge.premium {
    background: rgba(99, 102, 241, 0.1);
    color: var(--electric-purple);
}

/* === INVESTMENT SECTION === */
.investment-section {
    background: var(--gradient-dark);
    color: white;
}

.section-head.light h2 {
    color: white;
}

.section-head.light p {
    color: rgba(255, 255, 255, 0.8);
}

.investment-plans {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.plan-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 25px;
    transition: all 0.4s ease;
    position: relative;
    animation: slideUp 0.6s ease-out backwards;
}

.plan-card.starter {
    animation-delay: 0.1s;
}

.plan-card.popular {
    animation-delay: 0.2s;
}

.plan-card.premium {
    animation-delay: 0.3s;
}

.plan-card:hover {
    transform: translateY(-15px);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
    background: var(--gradient-primary);
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    color: white;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
}

.plan-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.plan-header p {
    opacity: 0.9;
}

.plan-price {
    font-size: 2.8rem;
    font-weight: 900;
    text-align: center;
    margin: 30px 0;
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.plan-features i {
    color: var(--success);
}

.plan-btn {
    display: block;
    text-align: center;
    padding: 15px;
    background: white;
    color: var(--electric-blue);
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.plan-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* === REQUIREMENTS SECTION === */
.requirements-section {
    background: var(--white);
}

.requirements-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.req-card {
    background: var(--light-bg);
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    animation: scaleIn 0.6s ease-out backwards;
}

.req-card:nth-child(1) {
    animation-delay: 0.1s;
}

.req-card:nth-child(2) {
    animation-delay: 0.2s;
}

.req-card:nth-child(3) {
    animation-delay: 0.3s;
}

.req-card:nth-child(4) {
    animation-delay: 0.4s;
}

.req-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.req-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: white;
}

.req-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.scalability-banner {
    background: var(--gradient-primary);
    color: white;
    padding: 50px;
    border-radius: 25px;
    text-align: center;
    box-shadow: var(--shadow-xl);
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

.scalability-banner i {
    font-size: 3rem;
    margin-bottom: 20px;
}

.scalability-banner h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

/* === WHY US SECTION === */
.why-us-section {
    background: var(--light-bg);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    display: flex;
    gap: 25px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    animation: slideLeft 0.6s ease-out backwards;
}

.why-card:nth-child(1) {
    animation-delay: 0.1s;
}

.why-card:nth-child(2) {
    animation-delay: 0.2s;
}

.why-card:nth-child(3) {
    animation-delay: 0.3s;
}

.why-card:nth-child(4) {
    animation-delay: 0.4s;
}

.why-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-xl);
}

.why-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.why-card h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* === CONTACT SECTION === */
.contact-section {
    background: white;
    padding: 100px 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-info p {
    color: var(--text-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
}

.benefit i {
    color: var(--success);
    font-size: 1.2rem;
}

.franchise-form {
    background: var(--light-bg);
    padding: 50px;
    border-radius: 25px;
    box-shadow: var(--shadow-xl);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E2E8F0;
    border-radius: 12px;
    font-family: 'Roboto', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
}

.submit-btn {
    width: 100%;
    background: var(--gradient-primary);
    color: white;
    padding: 18px;
    border: none;
    border-radius: 50px;
    font-size: 1.15rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.privacy-note {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* === FOOTER === */
.footer {
    background: #1a1a1a;
    color: #aaa;
    padding: 60px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 15px;
}

.footer-col p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 12px;
}

.socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.socials a:hover {
    background: var(--electric-blue);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--electric-cyan);
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--electric-blue);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* === WHATSAPP === */
.whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: var(--shadow-xl);
    z-index: 999;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s ease infinite;
}

.whatsapp:hover {
    transform: scale(1.15);
}

/* === ANIMATIONS === */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-10px);
    }

    60% {
        transform: translateY(-5px);
    }
}

/* === RESPONSIVE === */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .stats-grid,
    .vehicles-grid,
    .investment-plans,
    .requirements-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .revenue-split {
        flex-direction: column;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-head h2 {
        font-size: 2rem;
    }

    .hero-highlights {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        background: white;
        flex-direction: column;
        justify-content: center;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.2);
        transition: right 0.3s;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-toggle {
        display: block;
        z-index: 1001;
    }

    .sources-list,
    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}