/* ==========================================
   BASE STYLES
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* ==========================================
   COLOR primary color #3B96FF
   ========================================== */
:root {
    /* Primary Blue Shades */
    --primary-blue: #3B96FF;
    --primary-dark: #2366CC;
    --primary-darker: #1A4D99;
    --primary-light: #6BB0FF;
    --primary-lighter: #A3CCFF;
    
    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --medium-gray: #E9ECEF;
    --dark-gray: #495057;
    --darker-gray: #212529;
    
    /* Accent Colors */
    --success-green: #28A745;
    --warning-orange: #FF6B35;
    
    /* Shadows & Gradients */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-dark) 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(59, 150, 255, 0.9) 0%, rgba(26, 77, 153, 0.9) 100%);
}

/* ==========================================
   CONTAINER & LAYOUT
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   INTRO ANIMATION 
   ========================================== */
.intro-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    animation: fadeOut 0.8s ease-in-out 3s forwards;
}

.intro-content {
    text-align: center;
    color: var(--white);
}

.logo-container {
    margin-bottom: 30px;
    animation: zoomIn 1s ease-out;
}


.intro-logo {
    width: 200px;
    height: 200px;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    animation: pulse 2s infinite;
}







.intro-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 10px;
    margin-bottom: 20px;
    animation: slideUp 1s ease-out 0.3s both;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.intro-slogan {
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    animation: slideUp 1s ease-out 0.5s both;
    opacity: 0.9;
}

.intro-loader {
    width: 60px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.intro-loader::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    animation: loading 3s ease-in-out;
}

/* Intro Animations */
@keyframes fadeOut {
    to {
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes loading {
    from {
        transform: translateX(-100%);
    }
    to {
        transform: translateX(100%);
    }
}

/* ==========================================
   NAVIGATION BAR
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.nav-logo img {
    height: 80px;
    transition: transform 0.3s ease;
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--darker-gray);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-blue);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 35px;
    cursor: pointer;
    color: var(--darker-gray);
}

/* ==========================================
   BUTTONS CTA Buttons
   ========================================== */
.cta-btn {
    padding: 15px 35px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn.primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 5px 15px rgba(59, 150, 255, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(59, 150, 255, 0.6);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cta-btn.secondary:hover {
    background: var(--white);
    color: var(--primary-blue);
}

.cta-btn.large {
    padding: 20px 50px;
    font-size: 18px;
}

.cta-btn.full-width {
    width: 100%;
}

.nav-cta {
    padding: 12px 30px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    /* URL image */
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('https://cdn.prod.website-files.com/652db82f45a71830e13d282b/655bf02cd8674f4cbe12688f_experienced-drivers-hero%20copy.avif') center/cover no-repeat;
    margin-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    opacity: 0.7;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 30px;
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* ==========================================
   PARTNER COMPANIES SECTION
   Infinite scrolling logos
   ========================================== */
.partners-section {
    padding: 60px 0;
    background: var(--light-gray);
    overflow: hidden;
}

.partners-title {
    text-align: center;
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.partners-slider {
    overflow: hidden;
    white-space: nowrap;
}

.partners-track {
    display: inline-flex;
    animation: scroll 25s linear infinite;
}

.partner-logo {
    padding: 0 40px;
    display: inline-flex;
    align-items: center;
}

.partner-logo img {
    height: 100px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    filter: grayscale(100%);
}

.partner-logo img:hover {
    opacity: 0,5;
    filter: grayscale(0%);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================
   WHY CHOOSE US SECTION
   ========================================== */
.why-choose-section {
    padding: 100px 0;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 700;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 60px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--primary-blue);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(59, 150, 255, 0.5);
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--dark-gray);
    line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.service-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 45px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.service-btn {
    padding: 12px 30px;
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.3;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 30px;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.ceo-quote {
    background: var(--light-gray);
    padding: 30px;
    border-radius: 15px;
    margin: 40px 0;
    position: relative;
    border-left: 5px solid var(--primary-blue);
}

.quote-icon {
    font-size: 40px;
    color: var(--primary-blue);
    opacity: 0.3;
    margin-bottom: 15px;
}

.quote-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--darker-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.quote-author {
    font-weight: 600;
    color: var(--primary-blue);
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 100px 0;
    background: var(--gradient-primary);
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--darker-gray);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: var(--primary-light);
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--primary-light);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.footer-logo img {
    max-width: 150px;
    opacity: 0.9;
}

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

.footer-bottom a {
    color: var(--primary-light);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* ==========================================
   MODAL (Application Popup)
   ========================================== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    animation: fadeIn 0.3s ease;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideInDown 0.4s ease;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 35px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: var(--primary-blue);
}

.modal-header {
    text-align: center;
    margin-bottom: 40px;
}

.modal-header h2 {
    font-size: 2.5rem;
    color: var(--darker-gray);
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--dark-gray);
    font-size: 1.1rem;
}

.application-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    color: var(--darker-gray);
    margin-bottom: 8px;
}

.form-group input {
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 150, 255, 0.1);
}

.success-message {
    text-align: center;
    padding: 40px 0;
}

.success-message i {
    font-size: 80px;
    color: var(--success-green);
    margin-bottom: 20px;
}

.success-message h3 {
    font-size: 2rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.success-message p {
    font-size: 1.2rem;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ==========================================
   PAGE HERO STYLES (For all subpages)
   ========================================== */
.page-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&h=800&fit=crop') center/cover no-repeat;
    margin-top: 80px;
}

.page-hero.hiring-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1519003722824-194d4455a60c?w=1920&h=800&fit=crop') center/cover no-repeat;
}

.page-hero.services-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1920&h=800&fit=crop') center/cover no-repeat;
}

.page-hero.about-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1566576721346-d4a3b4eaeb55?w=1920&h=800&fit=crop') center/cover no-repeat;
}

.page-hero.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('https://images.unsplash.com/photo-1553877522-43269d4ea984?w=1920&h=800&fit=crop') center/cover no-repeat;
}

.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.page-hero-subtitle {
    font-size: 1.3rem;
    opacity: 0.95;
}

/* ==========================================
   HIRING PAGE SPECIFIC STYLES
   ========================================== */
.benefits-section {
    padding: 80px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.benefit-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
}

.hiring-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.form-intro {
    text-align: center;
    margin-bottom: 50px;
}

.hiring-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.hiring-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.hiring-form select,
.hiring-form textarea {
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.hiring-form select:focus,
.hiring-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 150, 255, 0.1);
}

.hr-section {
    padding: 80px 0;
    background: var(--white);
}

.hr-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.hr-profile {
    text-align: center;
}

.hr-image-container {
    position: relative;
    margin-bottom: 30px;
}

.hr-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.hr-info h3 {
    font-size: 2rem;
    color: var(--darker-gray);
    margin-bottom: 10px;
}

.hr-title {
    color: var(--primary-blue);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hr-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hr-contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1.1rem;
}

.hr-contact-item i {
    color: var(--primary-blue);
    font-size: 1.3rem;
}

.hr-contact-item a {
    color: var(--darker-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.hr-contact-item a:hover {
    color: var(--primary-blue);
}

.hr-message {
    background: var(--light-gray);
    padding: 40px;
    border-radius: 15px;
}

.hr-message h2 {
    font-size: 2.5rem;
    color: var(--darker-gray);
    margin-bottom: 25px;
}

.hr-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.hr-signature {
    font-style: italic;
    margin-top: 30px;
}

.signature-name {
    font-weight: 600;
    color: var(--primary-blue);
}

.drivers-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.driver-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.driver-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.driver-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.driver-info {
    padding: 30px;
}

.driver-info h3 {
    font-size: 1.5rem;
    color: var(--darker-gray);
    margin-bottom: 10px;
}

.driver-title {
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.driver-experience {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.driver-quote {
    font-style: italic;
    color: var(--dark-gray);
    line-height: 1.6;
}

.quick-contact-section {
    padding: 60px 0;
    background: var(--gradient-primary);
    text-align: center;
}

.quick-contact-content {
    color: var(--white);
}

.quick-contact-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.quick-contact-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
}

.quick-contact-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   SERVICES PAGE SPECIFIC STYLES
   ========================================== */
.services-showcase {
    padding: 80px 0;
    background: var(--white);
}

.showcase-intro {
    text-align: center;
    margin-bottom: 60px;
}

.service-showcase-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

.service-showcase-item.reverse {
    direction: rtl;
}

.service-showcase-item.reverse > * {
    direction: ltr;
}

.service-showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.service-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-showcase-image:hover img {
    transform: scale(1.05);
}

.service-showcase-content {
    padding: 20px;
}

.service-badge {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    font-size: 35px;
    margin-bottom: 25px;
}

.service-showcase-content h2 {
    font-size: 2.5rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.service-lead {
    font-size: 1.3rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-showcase-content > p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 30px;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.feature-item i {
    color: var(--primary-blue);
    font-size: 18px;
}

.stats-section {
    padding: 80px 0;
    background: var(--gradient-primary);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

.stat-card {
    text-align: center;
}

.stat-icon {
    font-size: 50px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.2rem;
    opacity: 0.9;
}

.additional-services {
    padding: 80px 0;
    background: var(--white);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.additional-card {
    padding: 40px 30px;
    background: var(--light-gray);
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.additional-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    box-shadow: var(--shadow-lg);
}

.additional-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: var(--primary-blue);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 30px;
}

.additional-card h3 {
    font-size: 1.5rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.cta-buttons-group {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ==========================================
   ABOUT PAGE SPECIFIC STYLES
   ========================================== */
.company-story {
    padding: 80px 0;
    background: var(--white);
}

.story-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--dark-gray);
    margin-bottom: 25px;
}

.ceo-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.ceo-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: center;
}

.ceo-portrait {
    position: relative;
}

.ceo-portrait img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}

.portrait-decoration {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 15px;
    z-index: 1;
    opacity: 0.3;
}

.ceo-badge {
    display: inline-block;
    background: var(--primary-blue);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 20px;
}

.ceo-content h2 {
    font-size: 3rem;
    color: var(--darker-gray);
    margin-bottom: 10px;
}

.ceo-subtitle {
    font-size: 1.3rem;
    color: var(--primary-blue);
    margin-bottom: 30px;
}

.ceo-message {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.ceo-message p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.ceo-signature {
    font-weight: 600;
    color: var(--primary-blue);
    margin-top: 30px;
}

.ceo-credentials {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.05rem;
    color: var(--dark-gray);
}

.credential-item i {
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.leadership-section {
    padding: 80px 0;
    background: var(--white);
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leader-card {
    background: var(--light-gray);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

/* .leader-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */


.leader-image {
    width: 100%;
    height: 350px;
    position: relative;
    overflow: hidden;
}

.leader-image img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    top: 0;
    left: 0;
    transition: opacity 0.4s ease;
}

/* default image visible/ swap pics */
.img-default {
    opacity: 1;
}

/* hover image hidden initially */
.img-hover {
    opacity: 0;
}

/* on hover → swap */
.leader-card:hover .img-default {
    opacity: 0;
}

.leader-card:hover .img-hover {
    opacity: 1;
}




.leader-info {
    padding: 30px;
}

.leader-info h3 {
    font-size: 1.6rem;
    color: var(--darker-gray);
    margin-bottom: 10px;
}

.leader-title {
    font-size: 1.1rem;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 5px;
}

.leader-department {
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.leader-bio {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-gray);
}

.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

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

.value-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.team-grid-section {
    padding: 80px 0;
    background: var(--white);
}

.team-photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 15px;
    margin-top: 50px;
}

.team-photo {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    aspect-ratio: 1;
}

.team-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    background: var(--darker-gray);
}

/* ==========================================
   CONTACT PAGE SPECIFIC STYLES
   ========================================== */
.contact-info-section {
    padding: 80px 0;
    background: var(--white);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background: var(--light-gray);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: var(--white);
}

.contact-card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
}

.contact-card h3 {
    font-size: 1.8rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.contact-card > p {
    color: var(--dark-gray);
    margin-bottom: 20px;
}

.contact-card-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.contact-link {
    color: var(--darker-gray);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.contact-link:hover {
    color: var(--primary-blue);
}

.address-text {
    line-height: 1.8;
    color: var(--dark-gray);
}

.map-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.map-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.map-link-btn.google-maps {
    background: #4285F4;
    color: var(--white);
}

.map-link-btn.google-maps:hover {
    background: #357ae8;
    transform: translateY(-2px);
}

.map-link-btn.apple-maps {
    background: var(--darker-gray);
    color: var(--white);
}

.map-link-btn.apple-maps:hover {
    background: #000;
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-form select,
.contact-form textarea {
    padding: 15px;
    border: 2px solid var(--medium-gray);
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
}

.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(59, 150, 255, 0.1);
}

.map-section {
    padding: 80px 0;
    background: var(--white);
}

.google-map-container {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.google-map-container iframe {
    display: block;
}

.quick-contact-cta {
    padding: 80px 0;
    background: var(--light-gray);
}

.quick-cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.quick-cta-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.quick-cta-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.quick-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 35px;
}

.quick-cta-card h3 {
    font-size: 1.6rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
}

.quick-cta-card p {
    color: var(--dark-gray);
    margin-bottom: 25px;
}

/* ==========================================
   LEGAL PAGES (Privacy & Terms)
   ========================================== */
.legal-page-section {
    padding: 100px 0;
    background: var(--white);
    margin-top: 80px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-title {
    font-size: 3.5rem;
    color: var(--darker-gray);
    margin-bottom: 15px;
    text-align: center;
}

.legal-subtitle {
    text-align: center;
    color: var(--dark-gray);
    font-size: 1.1rem;
    margin-bottom: 50px;
}

.legal-text {
    line-height: 1.9;
    color: var(--dark-gray);
}

.legal-text h2 {
    font-size: 2rem;
    color: var(--darker-gray);
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.legal-text a {
    color: var(--primary-blue);
    text-decoration: none;
}

.legal-text a:hover {
    text-decoration: underline;
}

/* ==========================================
   RESPONSIVE DESIGN
   Mobile & Tablet adjustments
   ========================================== */

/* Tablet */
@media (max-width: 968px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .about-grid,
    .service-showcase-item,
    .hr-grid,
    .ceo-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-showcase-item.reverse {
        direction: ltr;
    }
    
    .footer-logo {
        justify-content: flex-start;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .team-photo-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

/* Mobile */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 50px 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .nav-cta {
        display: none;
    }
    
    /* Hero */
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    /* Page Hero */
    .page-hero-title {
        font-size: 2.5rem;
    }
    
    /* Intro */
    .intro-title {
        font-size: 2.5rem;
        letter-spacing: 5px;
    }
    
    .intro-slogan {
        font-size: 1.2rem;
    }
    
    /* Sections */
    .section-title {
        font-size: 2.2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Modal */
    .modal-content {
        padding: 30px;
        width: 95%;
    }
    
    .modal-header h2 {
        font-size: 2rem;
    }
    
    /* Forms */
    .hiring-form-container,
    .contact-form-container {
        padding: 30px;
    }
    
    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Other */
    .drivers-grid {
        grid-template-columns: 1fr;
    }
    
    .quick-contact-buttons {
        flex-direction: column;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-buttons-group {
        flex-direction: column;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .team-photo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .intro-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
}

/* ==========================================
   SCROLL ANIMATIONS
   Elements fade in when scrolled into view
   ========================================== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
