/* ============================================
   ENVIROO REFRIGERATED LOGISTICS
   Professional Website Stylesheet
   Brand Colors: #082680 (Primary), #007cfb (Secondary), #00a859 (Accent)
   ============================================ */

/* CSS Variables */
:root {
    --primary-color: #082680;
    --secondary-color: #007cfb;
    --accent-color: #00a859;
    --primary-light: #0a3399;
    --secondary-light: #339dfc;
    --accent-light: #00c96b;
    --dark-bg: #041240;
    --light-bg: #f8fafc;
    --text-dark: #1a1a2e;
    --text-light: #6b7280;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #082680 0%, #007cfb 100%);
    --gradient-reverse: linear-gradient(135deg, #007cfb 0%, #082680 100%);
    --gradient-accent: linear-gradient(135deg, #007cfb 0%, #00a859 100%);
    --gradient-radial: radial-gradient(circle, #007cfb 0%, #082680 100%);
    --shadow-sm: 0 2px 4px rgba(8, 38, 128, 0.1);
    --shadow-md: 0 4px 12px rgba(8, 38, 128, 0.15);
    --shadow-lg: 0 8px 30px rgba(8, 38, 128, 0.2);
    --shadow-xl: 0 20px 50px rgba(8, 38, 128, 0.25);
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.3;
    color: var(--primary-color);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

p {
    color: var(--text-light);
    font-size: 1.1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-normal);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding: 0;
}

.container-lg {
    max-width: 1400px;
}

.container-sm {
    max-width: 960px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Selection */
::selection {
    background: var(--secondary-color);
    color: var(--white);
}

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo {
    width: 150px;
    animation: pulse 1.5s ease-in-out infinite;
}

.preloader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--light-bg);
    border-top-color: var(--secondary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 20px auto;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition-normal);
    background: transparent;
}

.navbar.scrolled {
    background: var(--white);
    box-shadow: var(--shadow-md);
    padding: 10px 0;
}

.navbar-brand img {
    height: 50px;
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-brand img {
    height: 45px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 600;
    padding: 10px 20px !important;
    position: relative;
    transition: var(--transition-normal);
}

.navbar.scrolled .nav-link {
    color: var(--primary-color);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 20px;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition-normal);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 40px);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--secondary-color);
}

/* Navbar Toggler - Hidden on desktop */
.navbar-toggler {
    display: none;
    border: none;
    padding: 10px;
    background: transparent;
    cursor: pointer;
    z-index: 1001;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-toggler-icon {
    display: block;
    position: relative;
    width: 28px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition-normal);
}

.navbar.scrolled .navbar-toggler-icon {
    background: var(--primary-color);
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: inherit;
    border-radius: 2px;
    transition: var(--transition-normal);
}

.navbar-toggler-icon::before { top: -8px; }
.navbar-toggler-icon::after { top: 8px; }

/* Toggler animation when active */
.navbar-toggler.active .navbar-toggler-icon {
    background: transparent;
}

.navbar-toggler.active .navbar-toggler-icon::before {
    top: 0;
    transform: rotate(45deg);
}

.navbar-toggler.active .navbar-toggler-icon::after {
    top: 0;
    transform: rotate(-45deg);
}

/* CTA Button in Navbar */
.nav-cta {
    background: var(--secondary-color);
    color: var(--white) !important;
    border-radius: 30px;
    padding: 10px 25px !important;
    margin-left: 10px;
}

.nav-cta:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.nav-cta::after {
    display: none;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, rgba(8, 38, 128, 0.85) 0%, rgba(0, 124, 251, 0.8) 100%), url('../images/hero-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

/* Hero Background Shapes */
.hero-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
}

.hero-bg-shapes .shape-1 {
    width: 600px;
    height: 600px;
    background: var(--secondary-color);
    top: -200px;
    right: -100px;
}

.hero-bg-shapes .shape-2 {
    width: 400px;
    height: 400px;
    background: var(--accent-color);
    bottom: -150px;
    left: -100px;
}

.hero-bg-shapes .shape-3 {
    width: 200px;
    height: 200px;
    background: #fff;
    top: 50%;
    left: 30%;
    opacity: 0.05;
}

/* Hero Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(0, 168, 89, 0.2);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 30px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    border: 1px solid rgba(0, 168, 89, 0.3);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-title span {
    color: var(--accent-color);
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 500px;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 35px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

/* Hero Visual Section */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-container {
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 30px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-van {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.2));
    animation: floatVan 4s ease-in-out infinite;
}

@keyframes floatVan {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-temp-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: white;
    padding: 12px 18px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.4);
}

.hero-temp-badge i {
    font-size: 1.2rem;
}

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 25px;
}

.hero-stat {
    flex: 1;
    text-align: center;
    padding: 20px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat .number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-stat .label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
    font-weight: 500;
}

.hero-image {
    position: relative;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
    animation: floatVan 4s ease-in-out infinite;
}

@keyframes floatVan {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Hero Shapes */
.hero-shape {
    position: absolute;
    z-index: 1;
}

.hero-shape-1 {
    top: 10%;
    right: 5%;
    width: 100px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    animation: rotate 20s linear infinite;
}

.hero-shape-2 {
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(0, 124, 251, 0.2);
    transform: rotate(45deg);
    animation: rotate 15s linear infinite reverse;
}

.hero-shape-3 {
    top: 30%;
    left: 10%;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.scroll-indicator .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 20px;
    margin-bottom: 10px;
    position: relative;
}

.scroll-indicator .wheel {
    width: 4px;
    height: 10px;
    background: var(--white);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    100% { transform: translateX(-50%) translateY(20px); opacity: 0; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    padding: 14px 35px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 124, 251, 0.4);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 52, 98, 0.4);
    color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
}

.btn-secondary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 52, 98, 0.4);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-lg {
    padding: 18px 45px;
    font-size: 1.1rem;
}

.btn i {
    transition: var(--transition-normal);
}

.btn:hover i {
    transform: translateX(5px);
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 124, 251, 0.1);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.section-title {
    margin-bottom: 20px;
}

.section-title span {
    color: var(--secondary-color);
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
}

/* Section Shapes */
.section-shape {
    position: absolute;
    z-index: -1;
}

.shape-blob {
    width: 400px;
    height: 400px;
    background: var(--gradient-radial);
    opacity: 0.05;
    border-radius: 50%;
    filter: blur(60px);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
    background: var(--light-bg);
}

.about-image-wrapper {
    position: relative;
}

.about-image {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.about-image img {
    width: 100%;
    display: block;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.about-content {
    padding-left: 30px;
}

.about-list {
    list-style: none;
    margin: 30px 0;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.about-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.about-list-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.about-list-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.about-list-content p {
    font-size: 0.95rem;
    margin: 0;
}

/* New About Section Styles */
.about-section-new {
    padding: 100px 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.about-grid-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* About Images */
.about-images {
    position: relative;
    height: 500px;
}

.about-img-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(8, 38, 128, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-main:hover img {
    transform: scale(1.05);
}

.about-img-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 250px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(8, 38, 128, 0.2);
    border: 5px solid var(--white);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-img-secondary:hover img {
    transform: scale(1.05);
}

.about-experience-badge {
    position: absolute;
    top: 50%;
    right: 35%;
    transform: translateY(-50%);
    background: var(--gradient-primary);
    color: var(--white);
    padding: 25px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(8, 38, 128, 0.3);
    z-index: 2;
}

.about-experience-badge .exp-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.about-experience-badge .exp-number span {
    color: var(--accent-color);
}

.about-experience-badge .exp-text {
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 5px;
    line-height: 1.3;
}

/* About Content */
.about-content-new {
    padding-left: 20px;
}

.about-lead {
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* About Highlights */
.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 35px;
}

.highlight-item {
    display: flex;
    gap: 15px;
    padding: 18px;
    background: var(--light-bg);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(8, 38, 128, 0.1);
    transform: translateY(-3px);
}

.highlight-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.highlight-icon i {
    font-size: 1.2rem;
    color: var(--white);
}

.highlight-content h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.highlight-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* About Actions */
.about-actions {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-call {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-call:hover {
    transform: translateX(5px);
}

.about-call .call-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 168, 89, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-call:hover .call-icon {
    background: var(--accent-color);
}

.about-call .call-icon i {
    font-size: 1.1rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.about-call:hover .call-icon i {
    color: var(--white);
}

.about-call .call-text span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-light);
}

.about-call .call-text strong {
    font-size: 1.1rem;
    color: var(--primary-color);
}

/* About Section Responsive */
@media (max-width: 992px) {
    .about-grid-new {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .about-images {
        height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-content-new {
        padding-left: 0;
        text-align: center;
    }

    .about-highlights {
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .about-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-images {
        height: 350px;
    }

    .about-img-main {
        width: 80%;
        height: 280px;
    }

    .about-img-secondary {
        width: 60%;
        height: 180px;
    }

    .about-experience-badge {
        right: 25%;
        padding: 20px 25px;
    }

    .about-experience-badge .exp-number {
        font-size: 2.5rem;
    }

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .about-actions {
        flex-direction: column;
        gap: 20px;
    }

    .about-call {
        justify-content: center;
    }
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section {
    background: var(--white);
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(0, 124, 251, 0.1) 0%, rgba(0, 52, 98, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    background: var(--gradient-primary);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 1rem;
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link:hover {
    color: var(--primary-color);
}

.service-link:hover i {
    transform: translateX(5px);
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.features-section {
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.features-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
}

.feature-box {
    text-align: center;
    padding: 40px 20px;
    position: relative;
    z-index: 1;
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.feature-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.feature-box:hover .feature-icon {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
}

.feature-box h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.feature-box p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

/* ============================================
   WHY CHOOSE US SECTION
   ============================================ */
.why-choose-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.why-choose-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 124, 251, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 168, 89, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.why-choose-wrapper {
    position: relative;
    z-index: 1;
}

.why-choose-wrapper .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-wrapper .section-desc {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Why Choose List */
.why-choose-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.why-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.why-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(8, 38, 128, 0.12);
    border-left-color: var(--accent-color);
}

.why-item-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--secondary-color);
    opacity: 0.3;
    line-height: 1;
    min-width: 50px;
}

.why-item:hover .why-item-number {
    opacity: 1;
    color: var(--accent-color);
}

.why-item-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.why-item-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Why Choose Visual */
.why-choose-visual {
    position: relative;
}

.why-visual-card {
    background: var(--gradient-primary);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(8, 38, 128, 0.25);
}

.visual-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.visual-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.visual-stat:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.visual-stat .stat-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.visual-stat .stat-icon i {
    font-size: 1.3rem;
    color: var(--white);
}

.visual-stat .stat-info {
    display: flex;
    flex-direction: column;
}

.visual-stat .stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.visual-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 4px;
}

.visual-cta {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.visual-cta p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
    font-size: 1rem;
}

.btn-accent {
    background: var(--accent-color);
    color: var(--white);
    padding: 14px 30px;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 168, 89, 0.35);
}

.btn-accent:hover {
    background: #00c96b;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 168, 89, 0.45);
}

/* Why Choose Responsive */
@media (max-width: 992px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .why-item {
        text-align: left;
    }

    .why-visual-card {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .why-choose-section {
        padding: 70px 0;
    }

    .why-item {
        padding: 20px;
        gap: 15px;
    }

    .why-item-number {
        font-size: 1.5rem;
        min-width: 40px;
    }

    .visual-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .why-visual-card {
        padding: 30px 25px;
    }
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
}

.stat-icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number .counter-suffix {
    font-size: 2rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   FLEET SECTION
   ============================================ */
.fleet-section {
    background: var(--white);
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 250px;
    background: var(--light-bg);
}

.fleet-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 20px;
    transition: var(--transition-slow);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.85rem;
}

.fleet-content {
    padding: 30px;
}

.fleet-content h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.fleet-content .van-type {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.fleet-features {
    list-style: none;
    margin-bottom: 20px;
}

.fleet-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-light);
}

.fleet-features li:last-child {
    border-bottom: none;
}

.fleet-features li i {
    color: var(--secondary-color);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    background: var(--gradient-primary);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

/* ============================================
   COVERAGE MAP SECTION
   ============================================ */
.coverage-section {
    background: var(--light-bg);
    position: relative;
}

.coverage-map {
    text-align: center;
}

.coverage-map img {
    max-width: 100%;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
}

.coverage-content {
    padding: 40px 0;
}

.coverage-list {
    list-style: none;
}

.coverage-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.coverage-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.coverage-list li i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.coverage-list li span {
    font-weight: 600;
    color: var(--text-dark);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
    background: var(--light-bg);
    padding: 100px 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card-new {
    background: var(--white);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(8, 38, 128, 0.15);
}

.testimonial-card-new.featured {
    background: var(--gradient-primary);
    color: white;
}

.testimonial-card-new.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-card-new.featured .testimonial-info h4 {
    color: white;
}

.testimonial-card-new.featured .testimonial-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card-new.featured .testimonial-info .company {
    color: var(--accent-color);
}

.testimonial-card-new.featured .testimonial-quote i {
    color: rgba(255, 255, 255, 0.2);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote i {
    font-size: 2.5rem;
    color: var(--secondary-color);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.testimonial-card-new.featured .testimonial-footer {
    border-top-color: rgba(255, 255, 255, 0.15);
}

.testimonial-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--accent-color);
    flex-shrink: 0;
}

.testimonial-info {
    flex-grow: 1;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 3px;
    color: var(--primary-color);
}

.testimonial-info span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light);
}

.testimonial-info .company {
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: 2px;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.9rem;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
    font-weight: 500;
}

.trust-badge i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }

    .testimonial-card-new.featured {
        order: -1;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        gap: 25px;
    }

    .trust-badge {
        flex: 0 0 45%;
        justify-content: center;
    }
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: var(--light-bg);
}

.contact-info-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 50px 40px;
    height: 100%;
    color: var(--white);
}

.contact-info-card h3 {
    color: var(--white);
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-content h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 5px;
    opacity: 0.8;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
}

.contact-info-content a:hover {
    color: var(--secondary-light);
}

.contact-social {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-social h4 {
    color: var(--white);
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: var(--transition-normal);
}

.social-link:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--white);
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

/* ============================================
   FORMS
   ============================================ */
.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.form-label .required {
    color: #e74c3c;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1rem;
    transition: var(--transition-normal);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 124, 251, 0.1);
}

.form-control::placeholder {
    color: #9ca3af;
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003462' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 3px;
    accent-color: var(--secondary-color);
}

.form-check-label {
    font-size: 0.95rem;
    color: var(--text-light);
}

.form-error {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    display: none;
}

.form-control.error {
    border-color: #e74c3c;
}

.form-control.error + .form-error {
    display: block;
}

/* ============================================
   MODAL / POPUP
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: var(--white);
    border-radius: 20px;
    padding: 50px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    transform: scale(0.8);
    transition: var(--transition-normal);
    position: relative;
}

.modal-overlay.active .modal-container {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--light-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.modal-close:hover {
    background: var(--secondary-color);
    color: var(--white);
}

.modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 124, 251, 0.1) 0%, rgba(0, 52, 98, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.modal-icon i {
    font-size: 3rem;
    color: var(--secondary-color);
}

.modal-icon.success i {
    color: #10b981;
}

.modal-icon.error i {
    color: #e74c3c;
}

.modal-container h3 {
    margin-bottom: 15px;
}

.modal-container p {
    margin-bottom: 30px;
}

/* ============================================
   QUOTE REQUEST FORM
   ============================================ */
.quote-section {
    background: var(--white);
}

.quote-form-wrapper {
    background: var(--light-bg);
    border-radius: 20px;
    padding: 50px;
}

.quote-steps {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.quote-steps::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #e5e7eb;
}

.quote-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.quote-step-number {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-weight: 700;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.quote-step.active .quote-step-number {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
    color: var(--white);
}

.quote-step.completed .quote-step-number {
    background: #10b981;
    border-color: #10b981;
    color: var(--white);
}

.quote-step-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.quote-step.active .quote-step-label {
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark-bg);
    color: var(--white);
    padding-top: 80px;
}

.footer-main {
    padding-bottom: 60px;
}

.footer-brand {
    margin-bottom: 25px;
}

.footer-brand img {
    height: 60px;
    margin-bottom: 20px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    max-width: 300px;
}

.footer-title {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-normal);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 10px;
}

.footer-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-contact-item i {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

.footer-contact-item p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-contact-item a {
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-item a:hover {
    color: var(--secondary-color);
}

.footer-newsletter p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: 15px 25px;
    background: var(--secondary-color);
    border: none;
    border-radius: 10px;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition-normal);
}

.newsletter-form button:hover {
    background: var(--primary-light);
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

.footer-bottom-links a:hover {
    color: var(--secondary-color);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    z-index: 999;
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ============================================
   PAGE HEADERS
   ============================================ */
.page-header {
    background: var(--gradient-primary);
    padding: 150px 0 80px;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.05;
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    color: var(--white);
    margin-bottom: 15px;
}

.page-header-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-normal);
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb span {
    color: rgba(255, 255, 255, 0.6);
}

.breadcrumb li {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a {
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb li a:hover {
    color: var(--white);
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   PRICING TABLE
   ============================================ */
.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    height: 100%;
    position: relative;
}

.pricing-card.featured {
    border: 2px solid var(--secondary-color);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.pricing-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.pricing-price {
    margin-bottom: 30px;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

.pricing-price .period {
    color: var(--text-light);
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li i {
    color: var(--secondary-color);
}

/* ============================================
   PROCESS SECTION
   ============================================ */
.process-section {
    background: var(--light-bg);
}

.process-step {
    text-align: center;
    position: relative;
    padding: 30px;
}

.process-step::after {
    content: '';
    position: absolute;
    top: 60px;
    right: -50%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--secondary-color), transparent);
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    z-index: 1;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.process-step p {
    font-size: 1rem;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 40px;
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-left: 40px;
    padding-right: 0;
    margin-left: auto;
}

.timeline-item::before {
    content: '';
    position: absolute;
    right: -10px;
    top: 20px;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

.timeline-item:nth-child(even)::before {
    right: auto;
    left: -10px;
}

.timeline-content {
    background: var(--white);
    padding: 25px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    max-width: 400px;
}

.timeline-content h4 {
    margin-bottom: 10px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    background: var(--white);
}

.faq-item {
    background: var(--light-bg);
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(0, 124, 251, 0.05);
}

.faq-question h4 {
    font-size: 1.1rem;
    margin: 0;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    transition: var(--transition-normal);
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px;
}

.faq-answer-content p {
    margin: 0;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fadeInLeft {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fadeInRight {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-scaleIn {
    animation: scaleIn 0.6s ease forwards;
}

/* Delay classes */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-primary { color: var(--primary-color) !important; }
.text-secondary { color: var(--secondary-color) !important; }
.text-white { color: var(--white) !important; }
.text-light { color: var(--text-light) !important; }

.bg-primary { background: var(--primary-color) !important; }
.bg-secondary { background: var(--secondary-color) !important; }
.bg-light { background: var(--light-bg) !important; }
.bg-gradient { background: var(--gradient-primary) !important; }

.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.pt-0 { padding-top: 0 !important; }
.pb-0 { padding-bottom: 0 !important; }

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1199px) {
    .timeline::before {
        left: 30px;
    }

    .timeline-item,
    .timeline-item:nth-child(even) {
        width: 100%;
        padding-left: 80px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .timeline-item::before,
    .timeline-item:nth-child(even)::before {
        left: 20px;
        right: auto;
    }
}

@media (max-width: 991px) {
    section {
        padding: 80px 0;
    }

    .hero {
        min-height: auto;
        padding: 150px 0 80px;
    }

    .hero-image {
        margin-top: 50px;
    }

    .about-content {
        padding-left: 0;
        margin-top: 60px;
    }

    .about-badge {
        bottom: -20px;
        right: 20px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .pricing-card.featured:hover {
        transform: translateY(-10px);
    }

    .process-step::after {
        display: none;
    }

    /* Show navbar toggler on mobile */
    .navbar-toggler {
        display: block;
    }

    .navbar-collapse {
        display: none;
        position: absolute;
        top: 100%;
        left: 20px;
        right: 20px;
        background: var(--white);
        padding: 20px;
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
        z-index: 1000;
    }

    .navbar-collapse.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .navbar-nav {
        flex-direction: column !important;
        gap: 0 !important;
    }

    .navbar-nav .nav-link {
        color: var(--primary-color);
        padding: 12px 15px !important;
        border-bottom: 1px solid #f0f0f0;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 10px;
        text-align: center;
        display: block;
    }
}

@media (max-width: 767px) {
    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-features {
        flex-direction: column;
    }

    .scroll-indicator {
        display: none;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .contact-form-card,
    .quote-form-wrapper {
        padding: 30px 20px;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .stat-card {
        padding: 30px 15px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .quote-steps {
        flex-direction: column;
        gap: 20px;
    }

    .quote-steps::before {
        display: none;
    }
}

@media (max-width: 575px) {
    .container {
        padding: 0 15px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .btn-lg {
        padding: 14px 30px;
        font-size: 1rem;
    }

    .service-card {
        padding: 30px 20px;
    }

    .fleet-content {
        padding: 20px;
    }

    .modal-container {
        padding: 30px 20px;
    }

    .contact-info-card {
        padding: 30px 20px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
}

/* ============================================
   RESPONSIVE GRIDS
   ============================================ */
.hero-grid,
.about-grid,
.coverage-grid,
.service-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.contact-form-grid,
.rental-form-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.services-grid,
.values-grid,
.features-grid,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.fleet-grid,
.team-grid,
.inclusions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mission-grid,
.advantage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
}

@media (max-width: 1199px) {
    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .hero-grid,
    .about-grid,
    .coverage-grid,
    .service-detail-grid,
    .contact-form-grid,
    .rental-form-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid,
    .values-grid,
    .features-grid,
    .stats-grid,
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fleet-grid,
    .team-grid,
    .inclusions-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .services-grid,
    .values-grid,
    .features-grid,
    .stats-grid,
    .process-grid,
    .fleet-grid,
    .team-grid,
    .inclusions-grid,
    .mission-grid,
    .advantage-grid,
    .contact-cards-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-brand p {
        max-width: 100%;
    }

    .social-links {
        justify-content: center;
    }
}

/* ============================================
   MULTI-STEP QUOTE MODAL
   ============================================ */
.quote-modal {
    max-width: 700px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    text-align: left;
    padding: 40px;
}

@media (max-width: 767px) {
    .quote-modal {
        padding: 25px 20px;
        max-width: 100%;
        width: 95%;
        margin: 10px;
    }
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.quote-modal-header h2 {
    margin-bottom: 10px;
}

.quote-modal-header p {
    margin: 0;
}

/* Multi-step Progress Bar */
.multi-step-progress {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    position: relative;
    padding: 0 10px;
}

/* Progress Line */
.multi-step-progress .progress-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 22px 10px 0;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.multi-step-progress .progress-line.active {
    background: var(--secondary-color);
}

/* Progress Step Indicators */
.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.progress-step .step-number {
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 3px solid #e5e7eb;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.progress-step.active .step-number {
    background: var(--gradient-primary);
    border-color: var(--secondary-color);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 124, 251, 0.4);
    transform: scale(1.1);
}

.progress-step.completed .step-number {
    background: #10b981;
    border-color: #10b981;
    color: var(--white);
}

.progress-step .step-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
}

.progress-step.active .step-label {
    color: var(--primary-color);
    font-weight: 600;
}

.progress-step.completed .step-label {
    color: #10b981;
}

/* Step Content */
.step-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.step-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.step-title {
    font-size: 1.3rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--light-bg);
    display: flex;
    align-items: center;
    gap: 10px;
}

.step-title i {
    color: var(--secondary-color);
}

/* Quote Modal Form Inputs */
.quote-modal .form-group {
    margin-bottom: 20px;
}

.quote-modal .form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.quote-modal input[type="text"],
.quote-modal input[type="email"],
.quote-modal input[type="tel"],
.quote-modal input[type="date"],
.quote-modal select,
.quote-modal textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

.quote-modal input:focus,
.quote-modal select:focus,
.quote-modal textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 124, 251, 0.15);
}

.quote-modal input::placeholder,
.quote-modal textarea::placeholder {
    color: #9ca3af;
}

.quote-modal input.error,
.quote-modal select.error,
.quote-modal textarea.error {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.quote-modal select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23003462' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 45px;
    cursor: pointer;
}

.quote-modal textarea {
    min-height: 100px;
    resize: vertical;
}

.quote-modal .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 576px) {
    .quote-modal .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* Step Navigation Buttons */
.step-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.btn-prev {
    background: var(--light-bg);
    color: var(--text-dark);
}

.btn-prev:hover {
    background: #e5e7eb;
    color: var(--text-dark);
}

/* Quote Summary */
.quote-summary {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 25px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e5e7eb;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: var(--text-light);
    font-size: 0.95rem;
}

.summary-value {
    font-weight: 600;
    color: var(--text-dark);
}

/* Review Summary (Multi-step form) */
.review-summary {
    background: var(--light-bg);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 25px;
}

.review-section {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e5e7eb;
}

.review-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.review-section h4 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-section h4 i {
    color: var(--secondary-color);
}

.review-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.review-item.full-width {
    grid-column: 1 / -1;
    margin-top: 10px;
}

.review-label {
    font-size: 0.85rem;
    color: var(--text-light);
}

.review-value {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.step-buttons {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.step-buttons .btn {
    flex: 1;
}

.step-buttons .btn-prev {
    flex: 0 0 auto;
    padding: 12px 25px;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: #e5e7eb;
    margin: 0 10px;
    position: relative;
    top: 15px;
    border-radius: 2px;
    transition: background 0.3s ease;
}

.progress-line.active {
    background: var(--secondary-color);
}

@media (max-width: 576px) {
    .review-grid {
        grid-template-columns: 1fr;
    }

    .step-buttons {
        flex-direction: column-reverse;
    }

    .step-buttons .btn {
        width: 100%;
    }
}

/* ============================================
   ENHANCED EFFECTS
   ============================================ */

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Gradient Border Animation */
.gradient-border {
    position: relative;
    background: var(--white);
    border-radius: 20px;
}

.gradient-border::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-primary);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gradient-border:hover::before {
    opacity: 1;
}

/* Floating Animation */
.float-animation {
    animation: floatUpDown 3s ease-in-out infinite;
}

@keyframes floatUpDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Shimmer Effect */
.shimmer {
    position: relative;
    overflow: hidden;
}

.shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* Gradient Text */
.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Tilt Effect on Hover */
.tilt-effect {
    transition: transform 0.3s ease;
}

.tilt-effect:hover {
    transform: translateY(-5px);
}

/* Pulse Ring */
.pulse-ring {
    position: relative;
}

.pulse-ring::before {
    content: '';
    position: absolute;
    inset: -10px;
    border: 2px solid var(--secondary-color);
    border-radius: 50%;
    animation: pulseRing 2s infinite;
}

@keyframes pulseRing {
    0% { transform: scale(0.9); opacity: 1; }
    100% { transform: scale(1.3); opacity: 0; }
}

/* Typing Cursor */
.typing-cursor::after {
    content: '|';
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}

/* ============================================
   IMPRESSIVE HOVER EFFECTS
   ============================================ */

/* Glow Button Effect */
.btn-primary {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 124, 251, 0.5),
                0 0 60px rgba(0, 124, 251, 0.3);
}

/* Animated Gradient CTA */
.nav-cta {
    background: linear-gradient(45deg, var(--secondary-color), #0891b2, var(--secondary-color));
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Card Lift Effect */
.service-card,
.fleet-card,
.feature-box {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover,
.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px -10px rgba(8, 38, 128, 0.2);
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 124, 251, 0.2);
}

/* Icon Bounce Effect */
.service-card:hover .service-icon,
.feature-box:hover .feature-icon {
    animation: iconBounce 0.6s ease;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-8px); }
    50% { transform: translateY(4px); }
    75% { transform: translateY(-4px); }
}

/* Link Underline Animation */
.footer-links a,
.nav-link {
    position: relative;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* Stat Card Glow */
.stat-card {
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: linear-gradient(135deg, rgba(255,255,255,0.15), rgba(255,255,255,0.05));
    box-shadow: 0 0 40px rgba(0, 124, 251, 0.2);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    color: var(--secondary-color);
}

/* Testimonial Card Enhancement */
.testimonial-card {
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 52, 98, 0.15);
}

/* Hero Image Float */
.hero-image img {
    animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(1deg); }
}

/* Coverage Map Pulse */
.coverage-map img {
    animation: mapPulse 3s ease-in-out infinite;
}

@keyframes mapPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.02); opacity: 0.95; }
}

/* Section Badge Glow */
.section-badge {
    position: relative;
    animation: badgeGlow 2s ease-in-out infinite;
}

@keyframes badgeGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 124, 251, 0.3); }
    50% { box-shadow: 0 0 15px rgba(0, 124, 251, 0.5); }
}

/* Input Focus Effect */
input:focus,
select:focus,
textarea:focus {
    box-shadow: 0 0 0 3px rgba(0, 124, 251, 0.2);
    border-color: var(--secondary-color);
}

/* CTA Section Animated Background */
.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 124, 251, 0.1) 0%, transparent 60%);
    animation: ctaPulse 8s ease-in-out infinite;
}

@keyframes ctaPulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(10%, 10%) scale(1.1); }
}

/* Navbar Glass Effect on Scroll */
.navbar.scrolled {
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

/* Fleet Badge Shine */
.fleet-badge {
    position: relative;
    overflow: hidden;
}

.fleet-badge::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    animation: badgeShine 3s ease-in-out infinite;
}

@keyframes badgeShine {
    0% { transform: translateX(-100%) translateY(-100%); }
    100% { transform: translateX(100%) translateY(100%); }
}

/* About Badge Counter */
.about-badge {
    animation: badgeFloat 3s ease-in-out infinite;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-8px) rotate(2deg); }
}

/* Scroll Indicator Bounce */
.scroll-indicator {
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

/* Coverage List Stagger Animation */
.coverage-list li {
    transition: all 0.3s ease;
}

.coverage-list li:hover {
    transform: translateX(10px);
    color: var(--secondary-color);
}

.coverage-list li:hover i {
    transform: scale(1.2);
}

/* Back to Top Button Enhanced */
.back-to-top {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.back-to-top:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 124, 251, 0.4);
}

/* Social Links Hover */
.social-link {
    transition: all 0.3s ease;
}

.social-link:hover {
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 10px 20px rgba(0, 124, 251, 0.3);
}

/* ============================================
   FLOATING CONTACT BUTTONS
   ============================================ */
.floating-buttons {
    position: fixed;
    bottom: 100px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.floating-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    animation: floatingBounce 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    animation: none;
}

.floating-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    animation-delay: 0s;
}

.floating-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1da851 0%, #0e7a6b 100%);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.floating-btn.phone {
    background: linear-gradient(135deg, #007cfb 0%, #082680 100%);
    box-shadow: 0 4px 15px rgba(0, 124, 251, 0.3);
    animation-delay: 0.5s;
}

.floating-btn.phone:hover {
    background: linear-gradient(135deg, #0066d4 0%, #061d66 100%);
    box-shadow: 0 8px 30px rgba(0, 124, 251, 0.5);
}

.floating-btn .tooltip {
    position: absolute;
    right: 65px;
    background: var(--text-dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: var(--text-dark);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Floating bounce animation with glow */
@keyframes floatingBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

/* Glow animation for WhatsApp button */
.floating-btn.whatsapp {
    animation: floatingBounce 3s ease-in-out infinite, whatsappGlow 2s ease-in-out infinite;
}

@keyframes whatsappGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(37, 211, 102, 0.6), 0 0 20px rgba(37, 211, 102, 0.3);
    }
}

/* Glow animation for Phone button */
.floating-btn.phone {
    animation: floatingBounce 3s ease-in-out infinite, phoneGlow 2s ease-in-out infinite;
    animation-delay: 0.5s, 0.5s;
}

@keyframes phoneGlow {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(0, 124, 251, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(0, 124, 251, 0.6), 0 0 20px rgba(0, 124, 251, 0.3);
    }
}

/* ============================================
   IMPROVED TESTIMONIALS
   ============================================ */
.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-company {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    margin-top: 5px;
}

.testimonial-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--secondary-color);
}

/* Auto-rotate indicators */
.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e5e7eb;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

/* ============================================
   FAQ ACCORDION
   ============================================ */
.faq-section {
    background: var(--light-bg);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 15px;
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--secondary-color);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.05rem;
    flex: 1;
    padding-right: 15px;
}

.faq-icon {
    width: 35px;
    height: 35px;
    background: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 0.9rem;
    color: var(--secondary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    background: var(--secondary-color);
}

.faq-item.active .faq-icon i {
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px;
    color: var(--text-light);
    line-height: 1.8;
}

.faq-answer-content p {
    margin: 0;
}

/* ============================================
   SERVICE AREA MAP
   ============================================ */
.service-area-section {
    background: var(--white);
}

.service-area-map {
    position: relative;
    background: var(--light-bg);
    border-radius: 20px;
    padding: 30px;
    overflow: hidden;
}

.map-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.map-container img {
    width: 100%;
    height: auto;
}

/* Map markers */
.map-markers {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.map-marker {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-marker::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 50%;
    animation: markerPulse 2s infinite;
    z-index: -1;
}

@keyframes markerPulse {
    0% { transform: translate(-50%, -50%) scale(1); opacity: 0.6; }
    100% { transform: translate(-50%, -50%) scale(2.5); opacity: 0; }
}

.map-marker:hover {
    transform: scale(1.3);
    background: var(--primary-color);
}

.map-marker .marker-label {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: var(--white);
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    margin-bottom: 8px;
}

.map-marker .marker-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: var(--primary-color);
}

.map-marker:hover .marker-label {
    opacity: 1;
    visibility: visible;
}

/* Marker positions for Australian cities */
.marker-sydney { top: 65%; left: 85%; }
.marker-melbourne { top: 80%; left: 75%; }
.marker-brisbane { top: 45%; left: 90%; }
.marker-perth { top: 60%; left: 15%; }
.marker-adelaide { top: 70%; left: 60%; }
.marker-gold-coast { top: 50%; left: 92%; }
.marker-newcastle { top: 60%; left: 88%; }
.marker-canberra { top: 70%; left: 82%; }

/* Service areas list */
.service-areas-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.service-area-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.service-area-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-area-card i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.service-area-card h4 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.service-area-card p {
    font-size: 0.85rem;
    margin: 0;
}

@media (max-width: 991px) {
    .service-areas-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .service-areas-list {
        grid-template-columns: 1fr;
    }

    .floating-buttons {
        bottom: 80px;
        right: 15px;
    }

    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .back-to-top,
    .modal-overlay,
    .preloader {
        display: none !important;
    }

    section {
        padding: 30px 0;
    }

    .hero {
        min-height: auto;
        padding: 50px 0;
    }
}

/* ============================================
   LEGAL DOCUMENT MODALS
   ============================================ */
.legal-modal .modal-container {
    max-width: 800px;
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.legal-modal .modal-header {
    padding: 25px 30px;
    border-bottom: 1px solid #e5e7eb;
    flex-shrink: 0;
}

.legal-modal .modal-header h3 {
    margin: 0;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.legal-modal .modal-header p {
    margin: 8px 0 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.legal-modal .modal-body {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.legal-modal .modal-body h4 {
    color: var(--primary-color);
    font-size: 1rem;
    margin: 0 0 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-modal .modal-body h4::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--secondary-color);
    border-radius: 2px;
}

.legal-modal .modal-body .legal-section {
    background: var(--light-bg);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 15px;
    border-left: 3px solid var(--secondary-color);
}

.legal-modal .modal-body .legal-section h4 {
    margin-bottom: 10px;
}

.legal-modal .modal-body .legal-section h4::before {
    display: none;
}

.legal-modal .modal-body p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.legal-modal .modal-body ul {
    margin: 0 0 15px 0;
    padding-left: 0;
    list-style: none;
    color: var(--text-light);
    line-height: 1.7;
}

.legal-modal .modal-body ul li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

.legal-modal .modal-body ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 600;
}

.legal-modal .modal-footer {
    padding: 20px 30px;
    border-top: 1px solid #e5e7eb;
    background: var(--light-bg);
    flex-shrink: 0;
}

.legal-modal .modal-footer .generator-credit {
    font-size: 0.8rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 15px;
}

.legal-modal .modal-footer .generator-credit a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-modal .modal-footer .generator-credit a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .legal-modal .modal-container {
        max-height: 90vh;
        margin: 20px;
        border-radius: 15px;
    }

    .legal-modal .modal-header,
    .legal-modal .modal-body,
    .legal-modal .modal-footer {
        padding: 20px;
    }

    .legal-modal .modal-header h3 {
        font-size: 1.25rem;
    }
}

/* ============================================
   RESPONSIVE - HERO SECTION
   ============================================ */
@media (max-width: 992px) {
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .hero-content {
        order: 1;
    }

    .hero-visual {
        order: 2;
    }

    .hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image-container {
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 50px;
    }

    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 8px 16px;
    }

    .hero-features {
        flex-direction: column;
        gap: 10px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-image-container {
        padding: 20px;
    }

    .hero-stats-row {
        flex-wrap: wrap;
    }

    .hero-stat {
        flex: 1 1 45%;
        min-width: 0;
    }

    .hero-stat .number {
        font-size: 1.5rem;
    }

    .hero-stat .label {
        font-size: 0.7rem;
    }

    .hero-temp-badge {
        padding: 8px 12px;
        font-size: 0.9rem;
    }
}

/* ============================================
   TRACK RECORDS SECTION
   ============================================ */
.track-records-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.track-records-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/pattern-bg.png') repeat;
    opacity: 0.03;
}

.track-records-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.track-record-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.track-record-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition-normal);
}

.track-record-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.15);
}

.track-record-card:hover::before {
    transform: scaleX(1);
}

.track-record-icon {
    width: 70px;
    height: 70px;
    background: rgba(0, 168, 89, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.track-record-icon i {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.track-record-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 10px;
}

.track-record-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-bottom: 10px;
}

.track-record-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .track-records-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .track-records-grid {
        grid-template-columns: 1fr;
    }

    .track-record-number {
        font-size: 2.5rem;
    }
}
