/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: 'Cairo', sans-serif;
}

:root {
    --primary-color: #f49b01;
    --secondary-color: #1e3a5f;
    --accent-color: #ffb84d;
    --text-dark: #2c3e50;
    --text-light: #7f8c8d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

body {
    font-family: 'Cairo', sans-serif !important;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    padding-top: 76px; /* Bootstrap navbar height */
}

h1, h2, h3, h4, h5, h6, .nav-link, .btn, input, select, textarea, label {
    font-family: 'Cairo', sans-serif !important;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* تحسين الوصولية والتركيز */
a:focus-visible,
.btn:focus-visible,
.nav-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

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

/* Navigation - Bootstrap Compatible */
.navbar {
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg) !important;
    background: rgba(255, 255, 255, 0.98) !important;
}

.navbar-brand {
    font-size: 1.3rem;
}

.navbar-brand img.navbar-logo {
    max-height: 65px;
    width: auto;
    object-fit: contain;
}

.nav-link {
    transition: var(--transition);
    position: relative;
}

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

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

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

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 1.8rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* Hero Section - Bootstrap Compatible */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: -76px; /* Offset navbar height */
    padding-top: 76px;
}

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

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: zoomIn 20s ease-in-out infinite alternate;
    filter: brightness(0.9);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.3) 0%, rgba(244, 155, 1, 0.2) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    max-width: 900px;
    padding: 0 20px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-badge i {
    color: var(--accent-color);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
}

.hero-feature i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-color);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: 0;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

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

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

.btn-block {
    width: 100%;
    text-align: center;
}

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

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    transform: translateY(-50%);
    opacity: 0.3;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    right: 50%;
    transform: translateX(50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.about-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(244, 155, 1, 0.8), rgba(30, 58, 95, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.about-image-wrapper:hover .about-image-overlay {
    opacity: 1;
}

.play-button {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition);
    transform: scale(0.8);
}

.about-image-wrapper:hover .play-button {
    transform: scale(1);
}

.play-button:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: scale(1.1);
}

.about-card-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.about-text h3 {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-list {
    list-style: none;
    margin-top: 1rem;
}

.values-list li {
    padding: 0.8rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.values-list i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-xl);
}

.stat-icon {
    font-size: 3rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

.stat-preview-icon {
    font-size: 3rem;
}

.stat-preview-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--secondary-color);
}

.stat-preview-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 600;
}

/* Services Section */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="%23f49b01" opacity="0.1"/></svg>') repeat;
    opacity: 0.3;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: hidden;
    position: relative;
}

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

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

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent, rgba(244, 155, 1, 0.3));
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: -40px auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--white);
}

.service-card h3,
.service-card p {
    padding: 0 2.5rem;
}

.service-card p {
    padding-bottom: 2.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Fleet Section */
.fleet {
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.fleet-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.fleet-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(244, 155, 1, 0.05), rgba(30, 58, 95, 0.05));
    opacity: 0;
    transition: var(--transition);
}

.fleet-card:hover::after {
    opacity: 1;
}

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

.fleet-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(244, 155, 1, 0.35);
    transition: var(--transition);
}

.fleet-card:hover .fleet-card-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(244, 155, 1, 0.45);
}

.fleet-page .fleet-card {
    padding: 0;
}

.fleet-page .fleet-image {
    display: none !important;
}

.fleet-image {
    width: 100%;
    height: 250px;
    margin: 0 auto 1.5rem;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.7), rgba(244, 155, 1, 0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--white);
    opacity: 0;
    transition: var(--transition);
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.fleet-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fleet-features {
    list-style: none;
    text-align: right;
    margin-top: 1rem;
}

.fleet-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-right: 1.5rem;
}

.fleet-features li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact {
    background: var(--bg-light);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: start;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.3rem;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.contact-details a:hover {
    color: var(--primary-color);
    transform: translateX(-5px);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Cairo', sans-serif;
    transition: var(--transition);
    background: var(--bg-light);
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer .footer-link,
.footer .footer-link,
.footer-section ul li a {
    transition: var(--transition);
}

.footer-section ul li a:hover,
.footer-link:hover {
    color: var(--primary-color) !important;
    padding-right: 5px;
}

.footer-section ul li i {
    margin-left: 0.5rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.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: var(--transition);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.8);
}

/* Back to Top Button - RTL friendly */
.back-to-top {
    position: fixed;
    bottom: 30px;
    inset-inline-start: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.back-to-top:focus-visible {
    outline: 2px solid var(--white);
    outline-offset: 2px;
}

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

.back-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

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

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

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

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

/* Responsive Design */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }

    .about-image-wrapper {
        order: -1;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        gap: 2rem;
    }

    .service-image-wrapper {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 568px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
}

/* Page Header Styles - Bootstrap Compatible */
.page-header {
    position: relative !important;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
    overflow: hidden;
    margin-top: -76px;
    padding-top: 76px;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1601581875076-2617bf05a34d?w=1920&q=80') center/cover;
    opacity: 0.2;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.85) 0%, rgba(244, 155, 1, 0.75) 100%);
    z-index: 1;
}

/* بانر صفحات مخصصة - صورة + overlay خفيف */
.page-header-about,
.page-header-services,
.page-header-fleet,
.page-header-contact,
.page-header-gallery {
    background: var(--secondary-color);
}
.page-header-about::before,
.page-header-services::before,
.page-header-fleet::before,
.page-header-contact::before,
.page-header-gallery::before {
    display: none;
}
/* overlay خفيف للبانرات المخصصة - الصورة تبان والنص واضح */
.page-header-overlay-light {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.5) 0%, rgba(0, 0, 0, 0.35) 100%) !important;
}
.page-header-bg {
    z-index: 0;
}
.page-header-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.page-subtitle {
    font-size: 1.3rem;
    position: relative;
    z-index: 1;
    opacity: 0.95;
}

/* Quick Services Section - Bootstrap Compatible */
.quick-services {
    background: var(--bg-light);
}

.quick-service-card {
    background: var(--white);
    transition: var(--transition);
    box-shadow: var(--shadow);
    border-top: 4px solid var(--primary-color);
}

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

.quick-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.quick-service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.quick-service-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.quick-service-link:hover {
    gap: 1rem !important;
    color: var(--secondary-color) !important;
}

/* Stats Preview Section - Bootstrap Compatible */
.stats-preview {
    background: var(--white);
}

.stat-preview-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 100%);
    transition: var(--transition);
    border: 2px solid transparent;
}

.stat-preview-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
}

/* About Page Styles - Bootstrap Compatible */
.about-page {
    background: var(--white);
}

.about-stats-section {
    background: var(--bg-light);
}

/* Why Choose Us Section - Bootstrap Compatible */
.why-choose-us {
    background: var(--white);
}

.why-choose-card {
    background: var(--bg-light);
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-lg) !important;
}

.why-choose-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.why-choose-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Services Intro - Bootstrap Compatible */
.services-intro {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    opacity: 0.95;
}

/* Services Page Styles - Bootstrap Compatible */
.services-page {
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
}

.service-card {
    transition: var(--transition);
    border: 1px solid rgba(244, 155, 1, 0.1);
}

.service-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl) !important;
    border-color: var(--primary-color) !important;
}

/* لا يوجد صورة في بطاقات الخدمات - إخفاء أي بقايا */
.services-page .service-image-wrapper,
.services-page .service-image {
    display: none !important;
}

.service-overlay {
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8), rgba(244, 155, 1, 0.8));
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 1;
}

.service-overlay .service-icon {
    width: 100px;
    height: 100px;
    font-size: 3rem;
    transform: scale(0.8);
    transition: var(--transition);
}

.service-card:hover .service-overlay .service-icon {
    transform: scale(1);
}

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    box-shadow: 0 8px 24px rgba(244, 155, 1, 0.35);
    transition: var(--transition);
}
.service-card:hover .service-card-icon {
    transform: scale(1.08);
    box-shadow: 0 10px 30px rgba(244, 155, 1, 0.45);
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.4;
}

.service-content .service-features {
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.service-features li {
    transition: var(--transition);
}

.service-features li:hover {
    color: var(--primary-color);
    padding-right: 5px;
}

.service-btn {
    transition: var(--transition);
    font-weight: 600;
    padding: 0.65rem 1.25rem;
}

.service-btn:hover {
    transform: translateX(-5px);
    box-shadow: var(--shadow-lg);
}

.service-btn i {
    transition: var(--transition);
}

.service-btn:hover i {
    transform: translateX(-3px);
}

/* CTA Section - Bootstrap Compatible */
.cta-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Fleet Page Styles - Bootstrap Compatible */
.fleet-page {
    background: var(--white);
}

.fleet-features-section {
    background: var(--bg-light);
}

.fleet-feature-item {
    transition: var(--transition);
}

.fleet-feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg) !important;
}

.fleet-feature-item i {
    font-size: 3rem;
}

.fleet-feature-item h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Contact Page Styles - Bootstrap Compatible */
.contact-page {
    background: var(--bg-light);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

.contact-details h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.contact-details a {
    color: var(--text-light);
    transition: var(--transition);
}

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

.contact-map {
    box-shadow: var(--shadow);
}

/* خريطة اتصل بنا - عرض الصفحة وفي الوسط */
.contact-map-section {
    width: 100%;
    padding: 2rem 20px 0;
    margin-top: 2rem;
}

.contact-map-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.contact-map-wrapper iframe {
    display: block;
    width: 100%;
    min-height: 350px;
}

.form-title {
    font-size: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Management Team Section - Bootstrap Compatible */
.management-team {
    background: var(--white);
}

.team-card {
    transition: var(--transition);
    border: 2px solid transparent;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color) !important;
    box-shadow: var(--shadow-xl) !important;
}

.team-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.team-card h3 {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-name {
    font-size: 1.1rem;
    font-weight: 600;
}

.team-phone {
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    background: var(--bg-light);
    border-radius: 50px;
    transition: var(--transition);
}

.team-phone:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    transform: scale(1.05);
}

.team-phone:hover i {
    color: var(--white) !important;
}

/* Branches Section - Bootstrap Compatible */
.branches-section {
    background: var(--bg-light);
}

.branch-card {
    transition: var(--transition);
    border-top: 4px solid var(--primary-color);
}

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

.branch-card i {
    font-size: 3rem;
}

.branch-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

/* Responsive for page header */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .page-header {
        height: 300px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 568px) {
    .branches-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-page .service-content {
        padding: 1.2rem;
    }

    .services-page .service-content h3 {
        font-size: 1.2rem;
    }

    .intro-text {
        font-size: 1.1rem;
    }

    .service-btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

