/* Brand & Typography */ 
:root {
    --hino-red: #E60012;
    --hino-black: #000000;
    --hino-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Cairo", sans-serif;
    color: var(--hino-black);
    background-color: var(--hino-white);
    overflow-x: hidden;
    direction: rtl;
    text-align: right;
}

/* Navbar */
.navbar {
    background-color: var(--hino-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
}

.navbar-nav .nav-link {
    color: var(--hino-black);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover, 
.navbar-nav .nav-link:focus {
    color: var(--hino-red);
}

.navbar-toggler {
    border-color: var(--hino-red);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(230, 0, 18, 0.25);
}

/* Hero Banner */
.hero-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    max-height: 100%;
}

.hero-banner picture {
    display: block;
    width: 100%;
}

.hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Section Styling */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hino-black);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 3px;
    background-color: var(--hino-red);
}

.text-hino-red {
    color: var(--hino-red);
}

.bg-light-gray {
    background-color: #f8f9fa;
}

/* Buttons */
.btn-hino {
    background-color: var(--hino-red);
    color: var(--hino-white);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-hino:hover, 
.btn-hino:focus {
    background-color: #c00010;
    color: var(--hino-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 0, 18, 0.3);
}

.btn-outline-hino {
    background-color: transparent;
    color: var(--hino-red);
    border: 2px solid var(--hino-red);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-outline-hino:hover, 
.btn-outline-hino:focus {
    background-color: var(--hino-red);
    color: var(--hino-white);
    border-color: var(--hino-red);
}

/* Offer Highlights */
.offer-card {
    background-color: var(--hino-white);
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.offer-card:hover {
    border-color: var(--hino-red);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.offer-icon {
    width: 60px;
    height: 60px;
    background-color: var(--hino-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.offer-icon svg {
    fill: var(--hino-white);
}

/* Hino 300 Section */
.truck-image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.truck-image-wrapper img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.truck-image-wrapper:hover img {
    transform: scale(1.05);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.75rem 0;
    padding-right: 2rem;
    position: relative;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--hino-red);
    font-weight: 700;
    font-size: 1.2rem;
}

/* Contact Form */
.form-label {
    font-weight: 600;
    color: var(--hino-black);
}

.form-control:focus, 
.form-select:focus {
    border-color: var(--hino-red);
    box-shadow: 0 0 0 0.25rem rgba(230, 0, 18, 0.25);
}

/* Terms Section */
.terms-card {
    background-color: var(--hino-white);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 2.5rem;
}

.terms-card ul {
    margin-right: 1.5rem;
}

.terms-card li {
    margin-bottom: 0.5rem;
}

/* Location Section */
.contact-info {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 2rem;
}

.contact-info h5 {
    color: var(--hino-red);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--hino-black);
    margin-bottom: 0.5rem;
}

.map-wrapper {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
footer {
    background-color: var(--hino-black);
    color: var(--hino-white);
    padding: 2rem 0;
}

.social-links a {
    color: var(--hino-white);
    margin-right: 1.5rem;
    font-size: 1.2rem;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-links a:hover, 
.social-links a:focus {
    color: var(--hino-red);
    transform: translateY(-3px);
}

.social-links a svg {
    width: 28px;
    height: 28px;
}

/* Sticky Callback Button */
.sticky-callback {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }  
   
    
    .sticky-callback {
        bottom: 20px;
        left: 20px;
    }
    
    .map-wrapper {
        height: 300px;
    }
    
    .social-links {
        text-align: center !important;
    }
    
    .social-links a {
        margin: 0 0.75rem;
    }
}



/* Alert Animation */
.alert {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* Language Switcher */
.lang-switch {
    display: flex;
    align-items: center;
    font-weight: 600 !important;
    padding: 0.5rem 1rem !important;
    border: 2px solid transparent;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.lang-switch:hover,
.lang-switch:focus {
    color: var(--hino-red) !important;
    border-color: var(--hino-red);
    background-color: rgba(230, 0, 18, 0.05);
}

.lang-switch svg {
    transition: transform 0.3s ease;
}

.lang-switch:hover svg {
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .lang-switch {
        margin-top: 0.5rem;
        justify-content: center;
    }
}