/* =====================================================
   EROK Trading PLC - Styles
   Ethiopia's B2B Electric Vehicle Solutions Partner
   ===================================================== */

/* CSS Variables / Design Tokens */
:root {
    /* Brand Colors (Updated Green -> Premium EV Electric Blue) */
    --color-primary: #0D1B2A;
    --color-secondary: #00E5FF;
    --color-accent: #80F5FF;
    
    /* Background Colors */
    --bg-light: #F4FDFF;
    --bg-dark: #0A1628;
    --bg-darker: #080E18;
    --bg-card-dark: #0F233A;
    --bg-card-dark-hover: #162E4A;
    
    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #94A3B8;
    --text-muted: #94A3B8;
    --text-light: #F8FAFC;
    
    /* Border Colors */
    --border-light: #E2E8F0;
    --border-dark: #1E2D3A;
    --border-darker: #1E293B;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    
    /* Typography */
    --font-heading: 'Barlow Condensed', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
    --nav-height: 80px;
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

/* Container */
.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: transparent;
    border-top: 3px solid var(--color-secondary);
    transition: background-color var(--transition-slow), box-shadow var(--transition-slow), backdrop-filter var(--transition-slow);
}

.navbar.scrolled {
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    width: 12px;
    height: 12px;
    background-color: var(--color-secondary);
    transform: rotate(45deg);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 28px;
    color: var(--color-secondary);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-mono);
    font-size: 9px;
    color: var(--text-secondary);
    letter-spacing: 3px;
}

/* Nav Links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    opacity: 0.85; /* Increased slightly for accessibility contrast over navy overlays */
    transition: opacity var(--transition-base), color var(--transition-base);
}

.nav-link:hover {
    opacity: 1;
    color: var(--color-secondary);
}

/* Nav CTA */
.nav-cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 12px 24px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 8px;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.nav-cta:hover {
    background-color: #00B4CC;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background-color: var(--text-light);
    transition: transform var(--transition-base), opacity var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: var(--color-primary);
    padding: 20px 24px;
    border-top: 1px solid var(--border-dark);
}

.mobile-menu.active {
    display: flex;
}

.mobile-link {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
    padding: 12px 0;
    border-bottom: 1px solid var(--border-dark);
}

.mobile-cta {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    padding: 14px 24px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 8px;
    text-align: center;
    margin-top: 16px;
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding-top: var(--nav-height);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(30deg, var(--color-primary) 12%, transparent 12.5%, transparent 87%, var(--color-primary) 87.5%, var(--color-primary)),
        linear-gradient(150deg, var(--color-primary) 12%, transparent 12.5%, transparent 87%, var(--color-primary) 87.5%, var(--color-primary)),
        linear-gradient(30deg, var(--color-primary) 12%, transparent 12.5%, transparent 87%, var(--color-primary) 87.5%, var(--color-primary)),
        linear-gradient(150deg, var(--color-primary) 12%, transparent 12.5%, transparent 87%, var(--color-primary) 87.5%, var(--color-primary)),
        linear-gradient(60deg, rgba(0, 229, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 229, 255, 0.03) 75%, rgba(0, 229, 255, 0.03)),
        linear-gradient(60deg, rgba(0, 229, 255, 0.03) 25%, transparent 25.5%, transparent 75%, rgba(0, 229, 255, 0.03) 75%, rgba(0, 229, 255, 0.03));
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
    opacity: 0.4;
}

.hero-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-secondary);
    letter-spacing: 4px;
    margin-bottom: 20px;
    display: block;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(38px, 5vw, 58px);
    font-weight: 700;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 24px;
    text-wrap: balance;
}

.hero-subtitle {
    font-family: var(--font-body);
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color var(--transition-base), border-color var(--transition-base), transform var(--transition-base);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

.btn-primary:hover {
    background-color: #00B4CC;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--color-secondary);
    color: var(--color-secondary);
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: var(--color-primary);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.stat-item {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
}

.stat-separator {
    width: 6px;
    height: 6px;
    background-color: var(--color-secondary);
    border-radius: 50%;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-car-placeholder {
    position: relative;
    width: 100%;
    max-width: 500px;
    transform: rotate(-5deg);
}

.car-silhouette {
    width: 100%;
    height: auto;
}

/* =====================================================
   ABOUT / THREE PILLARS SECTION
   ===================================================== */
.about {
    background-color: var(--bg-light); /* Kept aligned with standard light section background */
    padding: var(--section-padding) 0;
}

.section-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--color-secondary);
    letter-spacing: 4px;
    text-align: center;
    display: block;
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-wrap: balance;
}

.section-title-light {
    color: var(--text-light);
}

.section-subtitle {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-muted);
    text-align: center;
    margin-top: -40px;
    margin-bottom: 60px;
}

/* Pillars Grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.pillar-card {
    background-color: white;
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    position: relative;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background-color: transparent;
    transition: background-color var(--transition-base);
}

.pillar-card:hover {
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.pillar-card:hover::before {
    background-color: var(--color-secondary);
}

.pillar-icon {
    width: 56px;
    height: 56px;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.pillar-icon svg {
    width: 32px;
    height: 32px;
    color: var(--color-secondary);
}

.pillar-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.pillar-text {
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* =====================================================
   VEHICLE SHOWCASE SECTION
   ===================================================== */
.vehicles {
    background-color: var(--color-primary);
    padding: var(--section-padding) 0;
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.vehicle-card {
    background-color: var(--bg-card-dark);
    border-radius: 16px;
    overflow: hidden;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    border-left: 3px solid transparent;
}

.vehicle-card:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--color-secondary);
}

.vehicle-image {
    position: relative;
    height: 250px; /* or whatever height you want */
    background-color: var(--bg-card-dark-hover);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.vehicle-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--font-mono);
    font-size: 10px;
    padding: 6px 12px;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    border-radius: 20px;
    font-weight: 500;
}

.vehicle-placeholder {
    width: 80%;
    height: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-svg {
    width: 100%;
    height: auto;
}

.vehicle-info {
    padding: 24px;
}

.vehicle-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.vehicle-specs {
    font-family: var(--font-mono);
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.vehicle-desc {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.vehicle-price {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 16px;
}

.btn-vehicle {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 14px 24px;
}

.btn-vehicle:hover {
    background-color: #00B4CC;
}

/* =====================================================
   WHY EROK SECTION
   ===================================================== */
.why-erok {
    background-color: var(--bg-light);
    padding: var(--section-padding) 0;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.why-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.check-icon svg {
    width: 14px;
    height: 14px;
    color: var(--color-primary);
}

.why-item-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.why-item-text {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.stat-box {
    background-color: white;
    border-radius: 16px;
    padding: 28px;
    border-top: 3px solid var(--color-secondary);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-secondary);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background-color: var(--color-primary);
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background-color: var(--border-dark);
    margin-bottom: 40px;
}

.service-tile {
    background-color: var(--color-primary);
    padding: 40px 24px;
    text-align: center;
    transition: transform var(--transition-base), background-color var(--transition-base);
}

.service-tile:hover {
    transform: translateY(-4px);
    background-color: var(--bg-dark);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
}

.service-icon svg {
    width: 100%;
    height: 100%;
    color: var(--color-secondary);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 8px;
}

.service-desc {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.services-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 32px;
    background-color: var(--bg-dark);
    border-radius: 12px;
}

.services-cta-text {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-light);
}

.btn-service {
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 14px 28px;
}

.btn-service:hover {
    background-color: #00B4CC;
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background-color: var(--bg-light); /* Unified to keep inputs highly legible */
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Contact Form */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: var(--font-body);
    font-size: 15px;
    padding: 14px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    background-color: white;
    color: var(--text-primary);
    transition: border-color var(--transition-base), box-shadow var(--transition-base);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    width: 100%;
    background-color: var(--color-secondary);
    color: var(--color-primary);
    padding: 16px 28px;
    font-size: 16px;
    border: none;
    cursor: pointer;
}

.btn-submit:hover {
    background-color: #00B4CC;
}

.form-note {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
    text-align: center;
}

/* Form Success */
.form-success {
    background-color: var(--bg-light);
    border: 1px solid var(--color-secondary);
    border-radius: 16px;
    padding: 48px;
    text-align: center;
}

.form-success svg {
    width: 64px;
    height: 64px;
    color: var(--color-secondary);
    margin: 0 auto 24px;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.form-success p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--text-secondary);
}

/* Form Error */
.form-error {
    background-color: #FEF2F2;
    border: 1px solid #EF4444;
    border-radius: 8px;
    padding: 16px;
    color: #DC2626;
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-block {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background-color: white;
    border-radius: 12px;
    border: 1px solid var(--border-light);
    transition: border-color var(--transition-base);
}

.contact-block:hover {
    border-color: var(--color-secondary);
}

.contact-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background-color: var(--bg-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--color-secondary);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-value {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.contact-sub {
    font-family: var(--font-body);
    font-size: 12px;
    color: var(--text-secondary);
}

/* WhatsApp Block (Rebranded to deep primary/secondary mix instead of green) */
.contact-whatsapp {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    cursor: pointer;
}

.contact-whatsapp:hover {
    background-color: #00B4CC;
    border-color: #00B4CC;
}

.contact-whatsapp .contact-icon {
    background-color: rgba(255, 255, 255, 0.2);
}

.contact-whatsapp .contact-icon svg {
    color: white;
}

.contact-whatsapp .contact-label,
.contact-whatsapp .contact-value,
.contact-whatsapp .contact-sub {
    color: var(--color-primary);
}

/* Contact Location */
.contact-location {
    padding: 24px;
    background-color: var(--color-primary);
    border-radius: 12px;
    margin-top: 8px;
}

.location-title {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 12px;
}

.location-address {
    font-family: var(--font-body);
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.location-hours {
    font-family: var(--font-body);
    font-size: 13px;
    color: var(--text-secondary);
}
/* =====================================================
   FOOTER
   ===================================================== */

.footer {
    background: linear-gradient(180deg,#08111f 0%,#050d18 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(0,229,255,.15);
}

.footer-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-tagline {
    color: #b8c5d6;
    line-height: 1.7;
    margin-bottom: 25px;
    max-width: 320px;
}

/* SOCIALS */

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
}

.social-link svg {
    width: 18px;
    height: 18px;
    color: white;
}

.social-link:hover {
    background: var(--color-secondary);
}

.social-link:hover svg {
    color: var(--color-primary);
}

/* HEADINGS */

.footer-links h4,
.footer-contact h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

/* LINKS */

.footer-links ul,
.footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #b8c5d6;
    transition: .2s;
}

.footer-links a:hover {
    color: var(--color-secondary);
}

/* CONTACT */

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    color: #b8c5d6;
    line-height: 1.6;
}

.footer-contact svg {
    width: 15px !important;
    height: 15px !important;
    min-width: 15px;
    margin-top: 3px;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
    color: #b8c5d6;
}

.footer-contact a:hover {
    color: var(--color-secondary);
}

/* BOTTOM */

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    color: #7b8ba0;
    font-size: 13px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand .footer-logo {
        justify-content: center;
    }

    .footer-tagline {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-contact li {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}
/* =====================================================
   FLOATING WHATSAPP BUTTON (Rebranded Neon-Blue Pulse)
   ===================================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background-color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
    z-index: 999;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0, 229, 255, 0.5);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary); /* Swapped to primary navy for distinct contrast on the bright blue float */
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(0, 229, 255, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(0, 229, 255, 0.6);
    }
}

/* =====================================================
   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);
}

/* Stagger animations for grids */
.pillars-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}
.pillars-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.vehicles-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}
.vehicles-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}
.vehicles-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

.services-grid .animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}
.services-grid .animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}
.services-grid .animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* =====================================================
   RESPONSIVE STYLES
   ===================================================== */

/* Tablet */
@media (max-width: 1199px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid .pillar-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .why-grid {
        gap: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 40px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
        --nav-height: 70px;
    }
    
    /* Navigation */
    .nav-links {
        display: none;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    /* Hero */
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 8px;
    }
    
    .stat-separator {
        display: none;
    }
    
    /* Sections */
    .section-title {
        font-size: 28px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
    }
    
    .pillars-grid .pillar-card:last-child {
        max-width: none;
    }
    
    .vehicles-grid {
        grid-template-columns: 1fr;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .services-cta {
        flex-direction: column;
        text-align: center;
    }
    
    .btn-service {
        width: 100%;
    }
    
    /* Form */
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-tagline {
        text-align: center;
    }
    
    .footer-links,
    .footer-contact {
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        bottom: 16px;
        right: 16px;
        width: 54px;
        height: 54px;
    }
}

/* Small Mobile */
@media (max-width: 479px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-car-placeholder {
        display: none;
    }
}
