* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0F2747;
    --primary-dark: #0A1B31;
    --secondary: #F97316;
    --dark: #172033;
    --dark-light: #1F2C45;
    --gray: #64748B;
    --gray-light: #F8FAFC;
    --white: #FFFFFF;
    --success: #16A34A;
    --whatsapp: #25D366;
    --shadow: 0 5px 30px rgba(15, 39, 71, 0.10);
    --shadow-dark: 0 10px 40px rgba(15, 39, 71, 0.16);
}

html {
    scroll-behavior: auto;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background: var(--dark);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 25px;
}

.top-bar span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

.top-bar a:hover {
    color: var(--secondary);
}

.top-bar i {
    color: var(--secondary);
}

/* Navbar */
.navbar {
    background: var(--white);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 22px;
    color: var(--dark);
}

.logo i {
    font-size: 32px;
    color: var(--primary);
}

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

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

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.btn-quote {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-quote:hover {
    background: #1da851;
    transform: translateY(-2px);
}

.nav-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--dark);
}

/* Hero Section */
.hero {
    min-height: 1080px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 0 80px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-1 {
    background: url('images/bg-1.jpg') center/cover no-repeat;
}

.hero-slide-2 {
    background: url('images/bg-2.jpg') center/cover no-repeat;
}



.hero-slide::after {
    content: '\f5de';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    right: -5%;
    bottom: 15%;
    font-size: 300px;
    color: rgba(255,255,255,0.04);
    transform: rotate(-10deg);
    pointer-events: none;
}

.hero-slide-1::after {
    content: '\f0d1';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    right: 5%;
    bottom: 20%;
    font-size: 250px;
    color: rgba(255,255,255,0.05);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(22,33,62,0.75) 100%);
    z-index: 1;
}

.hero-slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.3);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.hero-slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-slider-prev {
    left: 20px;
}

.hero-slider-next {
    right: 20px;
}

.hero-slider-dots {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.hero-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.hero-dot:hover {
    background: rgba(255,255,255,0.8);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background: var(--primary);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
    text-align: center;
}

.hero h1 {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease 0.2s both;
    text-align: center;
}

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

.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    animation: fadeInUp 0.8s ease 0.4s both;
    text-align: center;
}

.hero-btns {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-trust {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.5s both;
}

.hero-trust span {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    font-weight: 500;
}

.hero-trust i {
    color: var(--whatsapp);
    margin-right: 5px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26,115,232,0.4);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-3px);
}

.btn-white {
    background: var(--white);
    color: var(--dark);
}

.btn-white:hover {
    background: var(--gray-light);
    transform: translateY(-3px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 0;
    display: flex;
    justify-content: center;
    gap: 60px;
    box-shadow: 0 -2px 20px rgba(0,0,0,0.08);
    z-index: 5;
    text-align: center;
}

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

.stat-item h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat-item p {
    color: var(--gray);
    font-size: 13px;
    margin-top: 3px;
}

/* Section Styles */
.section-badge {
    display: inline-block;
    background: rgba(26,115,232,0.1);
    color: var(--primary);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
}

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

.section-header h2 {
    font-size: 40px;
    font-weight: 700;
    margin: 15px 0;
    color: var(--dark);
}

.section-header p {
    color: var(--gray);
    font-size: 18px;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: var(--dark);
}

.about-content p {
    color: var(--gray);
    margin-bottom: 15px;
}

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

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

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

.about-image {
    position: relative;
}

.about-img-box {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    padding: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-box i {
    font-size: 150px;
    color: rgba(255,255,255,0.3);
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    right: -20px;
    background: var(--secondary);
    color: var(--white);
    padding: 25px 35px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-dark);
}

.experience-badge h3 {
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.experience-badge p {
    font-size: 14px;
}

/* Fleet Section */
.fleet {
    padding: 100px 0;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fleet-card {
    background: var(--white);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.fleet-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
}

.fleet-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.fleet-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: var(--white);
    padding: 5px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
}

.fleet-icon {
    width: 80px;
    height: 80px;
    background: rgba(26,115,232,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.fleet-icon i {
    font-size: 35px;
    color: var(--primary);
}

.fleet-weight {
    font-size: 14px;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.fleet-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.fleet-card p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 20px;
}

.fleet-features {
    list-style: none;
    text-align: left;
    margin-bottom: 25px;
}

.fleet-features li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--dark);
    border-bottom: 1px solid var(--gray-light);
}

.fleet-features li:last-child {
    border-bottom: none;
}

.fleet-features i {
    color: var(--whatsapp);
    font-size: 14px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--gray-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 35px;
    color: var(--white);
}

.service-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    font-size: 15px;
}

/* Areas Section */
.areas {
    padding: 100px 0;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.area-item {
    background: var(--white);
    padding: 20px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.area-item:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.area-item:hover i {
    color: var(--white);
}

.area-item i {
    color: var(--primary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--gray-light);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: var(--dark);
}

.contact-info > p {
    color: var(--gray);
    margin-bottom: 30px;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: rgba(26,115,232,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 22px;
    color: var(--primary);
}

.contact-icon.whatsapp {
    background: rgba(37,211,102,0.1);
}

.contact-icon.whatsapp i {
    color: var(--whatsapp);
}

.contact-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}

.contact-text a,
.contact-text p {
    color: var(--gray);
    text-decoration: none;
    font-size: 15px;
}

.contact-text a:hover {
    color: var(--primary);
}

.contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--dark);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid var(--gray-light);
    border-radius: 10px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 0;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 40px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 18px;
    margin-bottom: 30px;
}

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

/* Footer */
.footer {
    background: var(--dark);
    padding: 80px 0 30px;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 32px;
    color: var(--secondary);
}

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

.footer-col p {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
    margin-bottom: 20px;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary);
}

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

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

.footer-col ul li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all 0.3s;
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255,255,255,0.7);
}

.contact-list li i {
    color: var(--secondary);
}

.contact-list li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 30px;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37,211,102,0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

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

/* Sticky Mobile CTA Bar */
.sticky-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--white);
    box-shadow: 0 -5px 30px rgba(0,0,0,0.15);
    padding: 10px 15px;
    gap: 10px;
}

.sticky-cta-bar .sticky-call,
.sticky-cta-bar .sticky-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s;
}

.sticky-cta-bar .sticky-call {
    background: var(--primary);
    color: var(--white);
}

.sticky-cta-bar .sticky-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
}

.sticky-cta-bar .sticky-call:hover {
    background: var(--primary-dark);
}

.sticky-cta-bar .sticky-whatsapp:hover {
    background: #1da851;
}

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

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: var(--white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

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

.why-card:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-10px);
}

.why-card:hover h3,
.why-card:hover p {
    color: var(--white);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: rgba(26,115,232,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.why-card:hover .why-icon {
    background: rgba(255,255,255,0.2);
}

.why-icon i {
    font-size: 35px;
    color: var(--primary);
}

.why-card:hover .why-icon i {
    color: var(--white);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--dark);
}

.why-card p {
    color: var(--gray);
    font-size: 14px;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: var(--gray-light);
}

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

.benefits-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin: 15px 0 20px;
    color: var(--dark);
}

.benefits-content > p {
    color: var(--gray);
    margin-bottom: 30px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 15px;
}

.benefit-item i {
    font-size: 24px;
    color: var(--whatsapp);
    margin-top: 3px;
}

.benefit-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 5px;
}

.benefit-item p {
    color: var(--gray);
    font-size: 14px;
}

.benefits-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-box {
    background: var(--white);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.benefit-box:hover {
    transform: translateX(10px);
    border-left: 4px solid var(--primary);
}

.benefit-box i {
    font-size: 30px;
    color: var(--primary);
    flex-shrink: 0;
}

.benefit-box h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
}

.benefit-box p {
    color: var(--gray);
    font-size: 14px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--gray-light);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    transition: all 0.3s;
}

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

.testimonial-stars {
    margin-bottom: 20px;
}

.testimonial-stars i {
    color: #ffc107;
    font-size: 16px;
}

.testimonial-text {
    color: var(--dark);
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

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

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.author-avatar i {
    color: var(--white);
    font-size: 20px;
}

.author-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.author-info span {
    font-size: 13px;
    color: var(--gray);
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    background: var(--gray-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.faq-item {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-question:hover {
    background: rgba(26,115,232,0.05);
}

.faq-question h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
}

.faq-question i {
    color: var(--primary);
    font-size: 14px;
    transition: transform 0.3s;
}

.faq-question.active i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 25px 20px;
    color: var(--gray);
    font-size: 14px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

/* Blog Section */
.blog-section {
    padding: 100px 0;
    background: var(--white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

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

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

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image i {
    font-size: 60px;
    color: rgba(255, 255, 255, 0.2);
}

.blog-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--secondary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.blog-content {
    padding: 25px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--gray);
    font-size: 13px;
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.blog-content h3:hover {
    color: var(--primary);
}

.blog-content p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.blog-read-more:hover {
    color: var(--secondary);
    gap: 12px;
}

.blog-view-all {
    text-align: center;
    margin-top: 40px;
}

/* Map Section */
.map-section {
    padding: 100px 0;
    background: var(--white);
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-dark);
}

.map-container iframe {
    display: block;
    width: 100%;
    min-height: 450px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .fleet-card.featured {
        transform: scale(1);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 5px 0 30px rgba(0,0,0,0.2);
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-light);
    }
    
    .nav-menu .nav-link {
        display: block;
        padding: 15px 0;
        font-size: 16px;
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        transition: opacity 0.3s;
    }
    
    .nav-overlay.active {
        display: block;
    }
    
    .btn-quote {
        display: none;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 180px;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .hero p {
        font-size: 15px;
    }
    
    .hero-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .hero-slider-prev {
        left: 10px;
    }
    
    .hero-slider-next {
        right: 10px;
    }
    
    .hero-slider-dots {
        bottom: 110px;
    }
    
    .hero-dot {
        width: 10px;
        height: 10px;
    }
    
    .hero-stats {
        gap: 20px;
        padding: 20px 15px;
    }
    
    .stat-item h3 {
        font-size: 28px;
    }
    
    .stat-item p {
        font-size: 12px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-img-box {
        padding: 50px;
    }
    
    .about-img-box i {
        font-size: 100px;
    }
    
    .fleet-grid {
        grid-template-columns: 1fr;
    }
    
    .fleet-card.featured {
        transform: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .areas-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .cta-content p {
        font-size: 15px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 15px;
    }
    
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .map-container iframe {
        min-height: 300px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .sticky-cta-bar {
        display: flex;
    }
    
    .hero-trust {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .contact-form {
        padding: 25px;
    }
    
    .about {
        padding: 60px 0;
    }
    
    .fleet, .why-choose, .testimonials, .areas {
        padding: 60px 0;
    }
    
    .services, .benefits, .faq, .blog-section {
        padding: 60px 0;
    }
    
    .cta {
        padding: 50px 0;
    }
    
    .footer {
        padding: 50px 0 30px;
    }
    
    .map-section {
        padding: 60px 0;
    }
    
    .experience-badge {
        bottom: -15px;
        right: 10px;
        padding: 15px 25px;
    }
    
    .experience-badge h3 {
        font-size: 28px;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-box .author-social {
        justify-content: center;
    }
    
    body {
        padding-bottom: 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }
    
    .hero-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        padding: 25px 20px;
    }
    
    .hero-btns {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .cta-btns {
        flex-direction: column;
    }
    
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-slider-btn {
        width: 32px;
        height: 32px;
        font-size: 11px;
    }
    
    .hero-slider-prev {
        left: 5px;
    }
    
    .hero-slider-next {
        right: 5px;
    }
    
    .hero-slider-dots {
        bottom: 100px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
    
    .hero-trust span {
        font-size: 11px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 13px;
    }
    
    .services-grid, .fleet-grid, .contact-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid, .faq-grid, .about-grid, .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 75px;
        right: 15px;
    }
    
    .back-to-top {
        width: 40px;
        height: 40px;
        bottom: 75px;
        right: 75px;
        font-size: 14px;
    }
    
    .sticky-cta-bar {
        padding: 8px 10px;
    }
    
    .sticky-cta-bar .sticky-call,
    .sticky-cta-bar .sticky-whatsapp {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .about-content h2, .contact-info h2, .benefits-content h2 {
        font-size: 24px;
    }
    
    .contact-form h3 {
        font-size: 20px;
    }
    
    .cta-content h2 {
        font-size: 22px;
    }
    
    .footer-bottom p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .testimonial-text {
        font-size: 14px;
    }
}

/* Author Box */
.author-box {
    display: flex;
    gap: 25px;
    background: var(--gray-light);
    border-radius: 15px;
    padding: 30px;
    margin-top: 40px;
    align-items: flex-start;
}

.author-box .author-avatar {
    width: 100px;
    height: 100px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.author-box .author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.author-box .author-avatar i {
    font-size: 40px;
    color: var(--white);
}

.author-box .author-label {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 1px;
    display: block;
    margin-bottom: 5px;
}

.author-box .author-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.author-box .author-title {
    font-size: 14px;
    color: var(--primary);
    font-weight: 500;
    display: block;
    margin-bottom: 10px;
}

.author-box .author-bio {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
}

.author-box .author-social {
    display: flex;
    gap: 10px;
}

.author-box .author-social a {
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
}

.author-box .author-social a:hover {
    background: var(--primary);
    color: var(--white);
}

/* Focus States - Accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 2px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

.form-group select {
    appearance: none;
    -webkit-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='%236c757d' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
}

/* Smooth card transitions on touch devices */
@media (hover: none) {
    .fleet-card:active,
    .service-card:active,
    .why-card:active,
    .area-item:active,
    .blog-card:active {
        transform: scale(0.98);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    html {
        scroll-behavior: auto;
    }
}

/* ========== LANGUAGE TOGGLE ========== */
.lang-toggle {
    display: flex;
    align-items: center;
    gap: 0;
    border: 2px solid var(--primary);
    border-radius: 25px;
    overflow: hidden;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    margin-left: 15px;
    flex-shrink: 0;
}
.lang-toggle button {
    background: transparent;
    border: none;
    padding: 6px 12px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    color: var(--dark);
    transition: all 0.3s;
    font-family: 'Poppins', sans-serif;
}
.lang-toggle button.active {
    background: var(--primary);
    color: var(--white);
}

/* ========== RTL SUPPORT ========== */
[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] body {
    font-family: 'Noto Kufi Arabic', 'Poppins', sans-serif;
}

[dir="rtl"] .top-bar-right {
    direction: rtl;
}

[dir="rtl"] .top-bar-left {
    direction: rtl;
}

[dir="rtl"] .logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .nav-menu {
    direction: rtl;
}

[dir="rtl"] .nav-toggle i {
    direction: ltr;
}

[dir="rtl"] .hero-content {
    text-align: right;
}

[dir="rtl"] .hero-badge {
    display: inline-block;
}

[dir="rtl"] .hero-trust {
    justify-content: flex-start;
}

[dir="rtl"] .hero-btns {
    justify-content: flex-start;
}

[dir="rtl"] .about-grid {
    direction: rtl;
}

[dir="rtl"] .about-content .btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .fleet-grid {
    direction: rtl;
}

[dir="rtl"] .fleet-card .btn {
    flex-direction: row-reverse;
}

[dir="rtl"] .benefits-content .section-badge,
[dir="rtl"] .about-content .section-badge {
    display: inline-block;
}

[dir="rtl"] .benefit-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .benefit-item > div {
    text-align: right;
}

[dir="rtl"] .benefits-features {
    direction: rtl;
}

[dir="rtl"] .services-grid {
    direction: rtl;
}

[dir="rtl"] .service-card {
    text-align: right;
}

[dir="rtl"] .service-icon {
    margin: 0 auto;
}

[dir="rtl"] .areas-grid {
    direction: rtl;
}

[dir="rtl"] .area-item {
    text-align: right;
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

[dir="rtl"] .author-info {
    text-align: right;
}

[dir="rtl"] .faq-question {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .faq-question i {
    margin-left: 0;
    margin-right: 15px;
}

[dir="rtl"] .faq-answer {
    text-align: right;
}

[dir="rtl"] .contact-grid {
    direction: rtl;
}

[dir="rtl"] .contact-items {
    direction: rtl;
}

[dir="rtl"] .contact-item {
    flex-direction: row-reverse;
    text-align: right;
}

[dir="rtl"] .contact-item .contact-text {
    text-align: right;
}

[dir="rtl"] .contact-form {
    direction: rtl;
}

[dir="rtl"] .blog-card .blog-read-more {
    flex-direction: row-reverse;
}

[dir="rtl"] .footer-grid {
    direction: rtl;
}

[dir="rtl"] .footer-col {
    text-align: right;
}

[dir="rtl"] .footer-col ul {
    padding-right: 0;
    padding-left: 0;
}

[dir="rtl"] .footer-logo {
    flex-direction: row-reverse;
}

[dir="rtl"] .social-links {
    justify-content: flex-start;
}

[dir="rtl"] .section-header {
    text-align: center;
}

[dir="rtl"] .stat-item {
    text-align: center;
}

[dir="rtl"] .whatsapp-float {
    right: auto;
    left: 20px;
}

[dir="rtl"] .back-to-top {
    right: auto;
    left: 20px;
}

[dir="rtl"] .sticky-cta-bar {
    direction: rtl;
}

[dir="rtl"] .sticky-call {
    order: 2;
}

[dir="rtl"] .sticky-whatsapp {
    order: 1;
}

[dir="rtl"] .page-content ul {
    padding-left: 0;
    padding-right: 25px;
}

[dir="rtl"] .about-intro {
    direction: rtl;
}

[dir="rtl"] .about-intro-content {
    text-align: right;
}

[dir="rtl"] .about-image-box {
    order: -1;
}

[dir="rtl"] .mission-vision {
    direction: rtl;
}

[dir="rtl"] .mv-card {
    text-align: right;
}

[dir="rtl"] .values-grid {
    direction: rtl;
}

[dir="rtl"] .value-card {
    text-align: center;
}

[dir="rtl"] .blog-grid {
    direction: rtl;
}

[dir="rtl"] .blog-content {
    text-align: right;
}

[dir="rtl"] .blog-meta {
    justify-content: flex-end;
}

[dir="rtl"] .read-more {
    flex-direction: row-reverse;
}

[dir="rtl"] .categories-grid {
    direction: rtl;
}

[dir="rtl"] .category-card {
    text-align: center;
}

[dir="rtl"] .important-note {
    border-left: none;
    border-right: 4px solid var(--primary);
}

[dir="rtl"] .contact-list li {
    display: flex;
    flex-direction: row-reverse;
    gap: 8px;
}

[dir="rtl"] .form-group select {
    background-position: left 15px center;
    padding-right: 15px;
    padding-left: 40px;
}

/* RTL Fleet badge */
[dir="rtl"] .fleet-badge {
    right: auto;
    left: 15px;
}

/* RTL Hero slider */
[dir="rtl"] .hero-slider-prev {
    right: 15px;
    left: auto;
}

[dir="rtl"] .hero-slider-next {
    left: 15px;
    right: auto;
}

/* RTL Footer contact list */
[dir="rtl"] .footer-col .contact-list {
    padding-left: 0;
}

/* ===== Hero booking widget ===== */
.book-widget {
    position: relative;
    z-index: 2;
    max-width: 560px;
    margin: 0 auto;
    text-align: left;
}

.bw-panel {
    background: var(--white);
    border-radius: 18px;
    padding: 26px 26px 20px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.28);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bw-done { display: none; }
.book-widget.done #bwForm { display: none; }
.book-widget.done .bw-done { display: flex; }

.bw-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; }
.bw-head h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin: 0; }
.bw-step { font-size: 12px; color: var(--gray); font-weight: 500; }

.bw-progress { display: flex; gap: 6px; }
.bw-bar { height: 4px; flex: 1; border-radius: 999px; background: #e6e9f1; transition: background .2s; }
.bw-bar.on { background: var(--primary); }

.bw-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray);
}

.bw-sizes { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.bw-size {
    text-align: left;
    cursor: pointer;
    padding: 11px 13px;
    border-radius: 11px;
    border: 2px solid #e6e9f1;
    background: var(--white);
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-family: inherit;
    transition: border-color .15s, background .15s;
}
.bw-size:hover { border-color: var(--primary); }
.bw-size.on { border-color: var(--primary); background: #f4f8ff; }
.bw-size b { font-size: 14px; color: var(--dark); }
.bw-size small { font-size: 11px; color: var(--gray); line-height: 1.35; }

.bw-later { display: none; flex-direction: column; gap: 9px; }
.bw-later.show { display: flex; }

.bw-input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 11px;
    border: 1.5px solid #dfe3ec;
    font-size: 14px;
    font-family: inherit;
    background: #fbfcfe;
    outline: none;
}
.bw-input:focus { border-color: var(--primary); background: var(--white); }

.bw-times { display: flex; gap: 8px; }
.bw-time {
    flex: 1;
    cursor: pointer;
    padding: 10px 4px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 600;
    font-family: inherit;
    border: 1.5px solid #e6e9f1;
    background: var(--white);
    color: #33384a;
}
.bw-time.on { background: var(--primary); border-color: var(--primary); color: var(--white); }

.bw-phone {
    display: flex;
    align-items: center;
    border: 1.5px solid #dfe3ec;
    border-radius: 11px;
    overflow: hidden;
    background: #fbfcfe;
}
.bw-phone.err { border-color: #d93025; }
.bw-phone span {
    padding: 13px 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
    background: #f1f3f8;
    border-right: 1.5px solid #e6e9f1;
}
.bw-phone input {
    flex: 1;
    padding: 13px 14px;
    border: none;
    outline: none;
    font-size: 15px;
    font-family: inherit;
    background: transparent;
}

.bw-error { display: none; font-size: 12px; color: #d93025; }
.bw-error.show { display: block; }

.bw-cta {
    cursor: pointer;
    border: none;
    border-radius: 11px;
    padding: 16px 18px;
    font-size: 15px;
    font-weight: 700;
    font-family: inherit;
    color: var(--white);
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: filter .15s, background .2s;
}
.bw-cta.ready { background: var(--primary); box-shadow: 0 8px 22px rgba(26,115,232,0.28); }
.bw-cta:hover { filter: brightness(1.08); }

.bw-fine { font-size: 11px; color: #8a90a2; text-align: center; margin: 0; }

.bw-check {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #e8f8ee;
    color: #1e9e56;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}
.bw-done-line { font-size: 14px; color: var(--gray); line-height: 1.6; margin: 0; }
.bw-summary { background: #f8f9fb; border-radius: 12px; padding: 14px 16px; display: flex; flex-direction: column; gap: 8px; }
.bw-summary div { display: flex; justify-content: space-between; gap: 16px; font-size: 13px; }
.bw-summary span:first-child { color: #8a90a2; }
.bw-summary span:last-child { font-weight: 600; text-align: right; color: var(--dark); }
.bw-wa {
    border-radius: 11px;
    padding: 15px;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: var(--whatsapp);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
}
.bw-callalt {
    border-radius: 11px;
    padding: 14px;
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    border: 1.5px solid #dfe3ec;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
}
.bw-callalt:hover { border-color: var(--primary); color: var(--primary); }
.bw-restart {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 12px;
    color: #8a90a2;
    text-decoration: underline;
    font-family: inherit;
}

.hero-callline { margin-top: 18px; text-align: center; }
.hero-callline a {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}
.hero-callline a:hover { color: var(--secondary); }
.hero-callline i { margin-right: 8px; color: var(--secondary); }

/* ===== Sticky mobile booking bar ===== */
.mobile-bar { display: none; }

@media (max-width: 768px) {
    .mobile-bar {
        display: flex;
        gap: 8px;
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 999;
        padding: 10px 12px;
        background: var(--white);
        box-shadow: 0 -6px 24px rgba(20,24,40,0.16);
    }
    .mobile-bar a {
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 10px;
        min-height: 48px;
        font-size: 14px;
        font-weight: 700;
        text-decoration: none;
    }
    .mb-primary { flex: 1.4; background: var(--primary); color: var(--white); }
    .mb-wa { width: 56px; background: var(--whatsapp); color: var(--white); font-size: 18px; }
    .mb-call { width: 56px; border: 1.5px solid #dfe3ec; color: var(--dark); font-size: 16px; }
    body { padding-bottom: 70px; }
    .back-to-top { bottom: 84px; }
    .book-widget { max-width: 100%; }
    .bw-panel { padding: 20px 18px 16px; }
    .bw-sizes { grid-template-columns: 1fr 1fr; }
}

/* Hero paragraph colour must not bleed into the widget card */
.hero .bw-panel p { font-size: inherit; margin: 0; }
.hero .bw-panel .bw-error { color: #d93025; font-size: 12px; }
.hero .bw-panel .bw-fine { color: #8a90a2; font-size: 11px; text-align: center; }
.hero .bw-panel .bw-done-line { color: var(--gray); font-size: 14px; line-height: 1.6; }
.hero .bw-panel h3 { color: var(--dark); }


/* ===== Area landing pages ===== */
.crumbs { font-size: 13px; margin-bottom: 14px; color: rgba(255,255,255,0.75); }
.crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.crumbs a:hover { color: var(--secondary); }
.crumbs span { margin: 0 6px; opacity: 0.6; }
.crumbs b { color: var(--white); font-weight: 600; }

.book-section { padding: 70px 0; background: var(--gray-light); }
.book-section .book-widget { max-width: 560px; margin: 0 auto; }
.book-section .bw-panel { box-shadow: var(--shadow); border: 1px solid #e9ecf2; }
.book-section .hero-callline { display: none; }

.area-detail { padding: 80px 0; }
.area-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.area-detail h2 { font-size: 32px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.area-detail p { color: var(--gray); line-height: 1.8; margin-top: 20px; }
.area-jobs { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.area-jobs li { display: flex; align-items: flex-start; gap: 10px; color: var(--dark); font-size: 16px; }
.area-jobs i { color: var(--whatsapp); margin-top: 4px; }
.area-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

.area-sizes { background: var(--gray-light); border-radius: 16px; padding: 28px; }
.area-sizes h3 { font-size: 20px; font-weight: 700; margin-bottom: 18px; color: var(--dark); }
.area-size { display: flex; flex-direction: column; gap: 3px; padding: 14px 0; border-bottom: 1px solid #e4e7ee; }
.area-size:last-child { border-bottom: none; }
.area-size b { font-size: 15px; color: var(--primary); }
.area-size span { font-size: 13px; color: var(--gray); }

a.area-item { text-decoration: none; color: inherit; transition: transform .2s, box-shadow .2s, background .2s, color .2s; }
/* keep the original white-on-blue hover from .area-item:hover; only add the lift */
a.area-item:hover { color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
a.area-item:hover i { color: var(--white); }

@media (max-width: 900px) {
    .area-detail-grid { grid-template-columns: 1fr; gap: 32px; }
    .area-detail { padding: 50px 0; }
    .area-detail h2 { font-size: 26px; }
    .book-section { padding: 44px 0; }
}


/* ===== Mobile usability fixes ===== */
@media (max-width: 768px) {
    /* slider arrows sat on top of the booking card and were under the 44px tap minimum */
    .hero-slider-btn { display: none; }
    .hero-slider-dots { bottom: 150px; }
    /* float buttons clear the sticky booking bar */
    .whatsapp-float { bottom: 86px; }
    .back-to-top { bottom: 86px; right: 88px; }
    /* the widget owns the hero on phones */
    .hero { padding: 110px 0 200px; }
    .book-widget { margin-top: 4px; }
    .bw-times button { font-size: 12px; padding: 12px 2px; }
    .bw-size { min-height: 62px; }
    .crumbs { font-size: 12px; }
    .page-header h1 { font-size: 26px; }
}

@media (max-width: 380px) {
    .bw-sizes { grid-template-columns: 1fr; }
    .mb-primary { font-size: 13px; }
}


/* ===== Shared interior page header (was inline in about.html only) ===== */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    padding: 150px 0 80px;
    text-align: center;
}
.page-header h1 {
    font-size: 42px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 15px;
}
.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 18px;
    max-width: 70ch;
    margin: 0 auto;
}
.page-header .crumbs { text-align: center; }

@media (max-width: 768px) {
    .page-header { padding: 110px 0 50px; }
    .page-header h1 { font-size: 28px; }
    .page-header p { font-size: 15px; }
}


/* ===== Nav drawer breakpoint raised: 7 items + lang toggle + Get Quote no
   longer fit on one row below ~1080px, so the burger takes over there. ===== */
@media (max-width: 1080px) {
    .nav-toggle { display: block; }
    .btn-quote { display: none; }
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 80px 30px 30px;
        gap: 0;
        transition: left 0.3s ease;
        box-shadow: 5px 0 30px rgba(0,0,0,0.2);
        z-index: 1001;
        overflow-y: auto;
    }
    .nav-menu.active { left: 0; }
    .nav-menu li { width: 100%; border-bottom: 1px solid var(--gray-light); }
    .nav-menu .nav-link { display: block; padding: 15px 0; font-size: 16px; }
    .nav-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        transition: opacity 0.3s;
    }
    .nav-overlay.active { display: block; }
    [dir="rtl"] .nav-menu { left: auto; right: -100%; transition: right 0.3s ease; }
    [dir="rtl"] .nav-menu.active { right: 0; }
}


/* ===== Blog post body + related cards (new posts) ===== */
.blog-post { padding: 70px 0 40px; }
.blog-post .container { max-width: 780px; }
.post-meta { display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: var(--gray); margin-bottom: 26px; padding-bottom: 20px; border-bottom: 1px solid var(--gray-light); }
.post-meta i { color: var(--primary); margin-right: 6px; }
.post-body h2 { font-size: 26px; font-weight: 700; color: var(--dark); margin: 36px 0 14px; }
.post-body h2:first-child { margin-top: 0; }
.post-body p { font-size: 17px; line-height: 1.85; color: #444a5a; margin-bottom: 18px; }
.post-body ul { margin: 0 0 22px 0; padding-left: 0; list-style: none; display: flex; flex-direction: column; gap: 11px; }
.post-body li { position: relative; padding-left: 26px; font-size: 16px; line-height: 1.7; color: #444a5a; }
.post-body li::before { content: ''; position: absolute; left: 4px; top: 11px; width: 7px; height: 7px; border-radius: 50%; background: var(--secondary); }

.related { padding: 60px 0 80px; background: var(--gray-light); }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { display: flex; align-items: center; gap: 12px; background: var(--white); border-radius: 14px; padding: 22px; text-decoration: none; color: var(--dark); font-weight: 600; font-size: 15px; line-height: 1.45; box-shadow: var(--shadow); transition: transform .2s, color .2s; }
.related-card:hover { transform: translateY(-3px); color: var(--primary); }
.related-card i { color: var(--secondary); flex-shrink: 0; }

@media (max-width: 900px) {
    .related-grid { grid-template-columns: 1fr; }
    .blog-post { padding: 44px 0 30px; }
    .post-body h2 { font-size: 22px; }
    .post-body p { font-size: 16px; }
}


/* ===== About page: expanded sections ===== */
.about-how { padding: 80px 0; background: var(--gray-light); }
.how-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.how-step { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.how-num { display: inline-block; font-size: 13px; font-weight: 800; letter-spacing: 0.1em; color: var(--secondary); margin-bottom: 12px; }
.how-step h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.how-step p { font-size: 15px; line-height: 1.75; color: var(--gray); }

.about-fleet { padding: 80px 0; }
.about-fleet-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
.about-fleet h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 18px; }
.about-fleet p { font-size: 16px; line-height: 1.8; color: var(--gray); margin-bottom: 16px; }
.fleet-list { display: flex; flex-direction: column; gap: 0; background: var(--gray-light); border-radius: 16px; padding: 10px 26px; }
.fleet-row { display: flex; flex-direction: column; gap: 6px; padding: 22px 0; border-bottom: 1px solid #e4e7ee; }
.fleet-row:last-child { border-bottom: none; }
.fleet-row b { font-size: 17px; color: var(--primary); }
.fleet-row span { font-size: 14px; line-height: 1.7; color: var(--gray); }

.about-serve { padding: 80px 0; background: var(--gray-light); }
.serve-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.serve-card { background: var(--white); border-radius: 16px; padding: 30px; box-shadow: var(--shadow); }
.serve-card i { font-size: 26px; color: var(--primary); margin-bottom: 14px; display: block; }
.serve-card h3 { font-size: 19px; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.serve-card p { font-size: 15px; line-height: 1.75; color: var(--gray); }

.about-why { padding: 80px 0 90px; }
.about-why-inner { max-width: 800px; margin: 0 auto; }
.about-why h2 { font-size: 32px; font-weight: 700; color: var(--dark); margin-bottom: 22px; }
.about-why p { font-size: 17px; line-height: 1.85; color: #444a5a; margin-bottom: 20px; }

.btn-outline { background: transparent; border: 2px solid var(--primary); color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

@media (max-width: 900px) {
    .how-grid, .serve-grid, .about-fleet-grid { grid-template-columns: 1fr; gap: 20px; }
    .about-how, .about-fleet, .about-serve, .about-why { padding: 50px 0; }
    .about-fleet h2, .about-why h2 { font-size: 25px; }
    .about-why p { font-size: 16px; }
    .fleet-list { padding: 6px 20px; }
}


/* ===== Mobile fixes: single bottom bar, unclipped hero, logo on one line ===== */
@media (max-width: 768px) {
    /* the original site already ships .sticky-cta-bar; .mobile-bar supersedes it
       (Book + WhatsApp + Call), so only one bar is pinned at a time */
    .sticky-cta-bar { display: none !important; }

    /* the hero clipped the booking widget: overflow:hidden plus a fixed min-height */
    .hero {
        overflow: visible;
        min-height: 0;
        height: auto;
        align-items: flex-start;
        padding: 100px 0 40px;
    }
    .hero-content { padding-bottom: 0; }
    .hero-slider, .hero-slide { overflow: hidden; }

    /* logo was wrapping onto two lines next to the burger + language pill */
    .logo { font-size: 19px; white-space: nowrap; gap: 8px; }
    .logo i { font-size: 24px; }
    .logo span { white-space: nowrap; }
    .lang-toggle { font-size: 11px; }
    .lang-toggle button { padding: 5px 10px; }
    .navbar .container { gap: 10px; }

    /* float buttons clear the single bar */
    .whatsapp-float { bottom: 84px; width: 52px; height: 52px; font-size: 24px; }
    .back-to-top { bottom: 84px; right: 84px; }

    /* hero slider dots sat over the widget */
    .hero-slider-dots { display: none; }
}

@media (max-width: 400px) {
    .logo { font-size: 17px; }
    .logo i { font-size: 21px; }
    .mb-wa, .mb-call { width: 50px; }
}


/* .hero-stats is position:absolute; bottom:0 — with the booking widget in the hero
   it sat on top of the card. On phones it becomes part of the normal flow. */
@media (max-width: 768px) {
    .hero-stats {
        position: static;
        bottom: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        margin: 26px 0 0;
        flex-direction: row;
        justify-content: space-around;
        gap: 12px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.12);
        border-radius: 14px;
        padding: 18px 12px;
        backdrop-filter: none;
    }
    .hero-stats .stat-item { text-align: center; }
    .hero-stats .stat-item h3 { font-size: 24px; }
    .hero-stats .stat-item p { font-size: 11px; }
    .hero { padding: 100px 0 46px; }
}

@media (max-width: 400px) {
    .hero-stats { padding: 14px 8px; gap: 6px; }
    .hero-stats .stat-item h3 { font-size: 20px; }
    .hero-stats .stat-item p { font-size: 10px; }
}


/* ===== Mobile fixes v2 =====
   .hero is a flex row, so .hero-stats (made static earlier) became a second
   flex item beside .container and stuck out ~45px past the right edge, which
   is what forced sideways scrolling on phones. Below 1024px the hero becomes a
   normal block: the widget can never be clipped and the stats sit in flow. */
@media (max-width: 1024px) {
    .hero {
        display: block;
        overflow: visible;
        min-height: 0;
        height: auto;
        padding: 110px 0 46px;
    }
    .hero-content { padding-bottom: 0; max-width: 700px; }
    .hero-slider, .hero-slide { overflow: hidden; }
    .hero-slider-btn, .hero-slider-dots { display: none; }

    .hero-stats {
        position: relative;
        inset: auto;
        z-index: 5;
        transform: none;
        width: calc(100% - 40px);
        max-width: 700px;
        margin: 26px auto 0;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
        padding: 18px 14px;
        background: rgba(255,255,255,0.08);
        border: 1px solid rgba(255,255,255,0.14);
        border-radius: 14px;
        box-shadow: none;
        backdrop-filter: none;
    }
    .hero-stats .stat-item { text-align: center; min-width: 0; }
    .hero-stats .stat-item h3 { color: var(--white); font-size: 26px; }
    .hero-stats .stat-item p { color: rgba(255,255,255,0.75); font-size: 11px; line-height: 1.35; margin-top: 4px; }
}

@media (max-width: 560px) {
    .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 16px 8px; }
    .hero-stats .stat-item h3 { font-size: 24px; }
    .hero-stats .stat-item p { font-size: 11px; }
}

/* body { overflow-x: hidden } alone does not stop the document scrolling
   sideways on iOS Safari — the clamp has to be on the root element too. */
html {
    overflow-x: hidden;
    max-width: 100%;
}

/* Long Arabic compounds were pushing the headline past the viewport in RTL. */
.hero h1, .page-header h1, .hero p, .section-header h2 {
    overflow-wrap: break-word;
    text-wrap: pretty;
}

/* Tap targets: 44px minimum on every control that sits on a phone screen. */
@media (max-width: 1080px) {
    .nav-toggle { min-width: 44px; min-height: 44px; display: flex; align-items: center; justify-content: center; }
    .lang-toggle button { min-height: 44px; padding: 5px 12px; }
}
@media (max-width: 768px) {
    .bw-time, .bw-size { min-height: 48px; }
    .bw-cta, .mb-primary, .mb-wa, .mb-call { min-height: 48px; }
    .faq-question { min-height: 52px; }
    .hero-trust { flex-wrap: wrap; gap: 8px 16px; }
}

/* the navbar row (logo + burger + language pill) was 3px wider than a 375px
   screen, which reintroduced the sideways scroll */
@media (max-width: 420px) {
    .navbar .container { gap: 6px; padding-left: 12px; padding-right: 12px; }
    .lang-toggle button { padding: 5px 9px; font-size: 11px; }
    .logo { font-size: 16px; }
    .logo i { font-size: 20px; }
}


/* ===== Footer: popular searches row ===== */
.footer-popular {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0 4px;
}
.footer-popular h4 {
    color: rgba(255,255,255,0.55);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.footer-popular-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.footer-popular-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-size: 13px;
    white-space: nowrap;
    padding: 8px 14px;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 50px;
    transition: all 0.25s;
}
.footer-popular-links a:hover {
    color: var(--white);
    border-color: var(--secondary);
    background: rgba(255,255,255,0.06);
}
@media (max-width: 768px) {
    .footer-popular { padding-top: 20px; }
    .footer-popular-links a { font-size: 12px; padding: 9px 13px; }
}


/* fleet card: secondary link to the truck-size page */
.fleet-more {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
}
.fleet-more i { font-size: 12px; transition: transform 0.25s; }
.fleet-more:hover { color: var(--primary-dark); }
.fleet-more:hover i { transform: translateX(3px); }
@media (max-width: 768px) {
    .fleet-more { min-height: 44px; margin-top: 8px; }
}


/* Logo sizing + mobile size table */
.navbar .logo img { height: 58px !important; }
@media (max-width: 480px) { .navbar .logo img { height: 50px !important; } }

.size-table { min-width: 640px; }
@media (max-width: 560px) {
    .size-table { min-width: 0 !important; }
    .size-table thead { display: none; }
    .size-table, .size-table tbody, .size-table tr, .size-table td { display: block; width: 100%; }
    .size-table tr { background: #fff !important; border: 1px solid #e4e8ef; border-radius: 14px; margin-bottom: 14px; padding: 6px 0; }
    .size-table td { padding: 8px 18px !important; border: 0; }
    .size-table td::before { content: attr(data-label); display: block; font-size: 12px; letter-spacing: 0.06em; text-transform: uppercase; color: #7a8699; margin-bottom: 3px; }
    .size-table td:first-child { font-size: 22px; padding-top: 14px !important; }
    .size-table td:first-child::before { display: none; }
}


/* Theme polish */
body { background: var(--gray-light); }
.top-bar { background: #0F2747; }
.footer { background: linear-gradient(180deg, #0F2747 0%, #0A1B31 100%); }
.section-badge { background: rgba(249, 115, 22, 0.12); color: #C2410C; }
.btn-primary { box-shadow: 0 8px 22px rgba(15, 39, 71, 0.22); }
.btn-primary:hover { box-shadow: 0 12px 28px rgba(15, 39, 71, 0.3); transform: translateY(-2px); }
.faq-item.active { border-color: var(--secondary); }
.hero-badge { background: #2F7BF6; color: #FFFFFF; border: 0; border-radius: 999px; padding: 12px 26px; font-weight: 700; letter-spacing: 0.02em; box-shadow: 0 6px 18px rgba(47, 123, 246, 0.35); }
.hero-badge i { color: #FFFFFF; }
a:hover { color: var(--secondary); }
.cta { background: linear-gradient(120deg, #0F2747 0%, #163863 58%, #C2410C 100%); }
.fleet-card, .service-card, .blog-card, .testimonial-card, .faq-item { background: var(--white); }
