/* ============================================
   Benzina Petroleum - Main Stylesheet
   Colors: Yellow #FFC400, Green #1E8E3E, Red #D32F2F
   Fonts: Poppins (EN), Cairo/Tajawal (AR)
   ============================================ */

/* CSS Variables */
:root {
    --primary-yellow: #FFC400;
    --primary-green: #1E8E3E;
    --primary-red: #D32F2F;
    --dark-color: #1a1a1a;
    --light-color: #f5f5f5;
    --text-color: #333;
    --text-light: #666;
    --white: #ffffff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 5px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

/* RTL Support */
body[dir="rtl"],
.lang-ar {
    font-family: 'Cairo', 'Tajawal', sans-serif;
    direction: rtl;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo h2 {
    color: var(--primary-red);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-yellow);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--light-color);
    padding: 0.25rem;
    border-radius: 5px;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    border-radius: 3px;
    transition: var(--transition);
    font-weight: 500;
}

.lang-btn.active {
    background: var(--primary-yellow);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

/* ============================================
   Hero Slider
   ============================================ */
.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    margin-top: 70px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    background-size: cover;
    background-position: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.slide-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

.slide-subtitle {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.slide-description {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 10;
}

.slider-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--white);
    transform: scale(1.2);
}

.scroll-indicator {
    position: absolute;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    color: var(--white);
    font-size: 1.5rem;
    z-index: 10;
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--primary-yellow);
    color: var(--dark-color);
    border-color: var(--primary-yellow);
}

.btn-primary:hover {
    background: #FFB300;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
}

.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* ============================================
   Statistics Section
   ============================================ */
/* Fuel Prices Home Section */
.fuel-prices-home-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.fuel-prices-home-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,196,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.fuel-prices-home-section .section-header {
    position: relative;
    z-index: 1;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-yellow);
    color: var(--dark-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-badge i {
    font-size: 1rem;
}

.last-update-info {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.9);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.last-update-info i {
    color: var(--primary-green);
}

.last-update-info strong {
    color: var(--text-color);
    font-weight: 600;
}

/* Fuel Prices Table for Homepage */
.prices-table-wrapper-home {
    background: var(--white);
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin: 3rem auto;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.prices-table-home {
    width: 100%;
    border-collapse: collapse;
}

.prices-table-home thead {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    color: var(--dark-color);
}

.prices-table-home th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.prices-table-home tbody tr {
    border-bottom: 1px solid #e0e0e0;
    transition: var(--transition);
}

.prices-table-home tbody tr:hover {
    background: var(--light-color);
}

.prices-table-home tbody tr:last-child {
    border-bottom: none;
}

.prices-table-home td {
    padding: 1.5rem;
}

.fuel-type-cell-home {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fuel-type-cell-home i {
    font-size: 1.5rem;
    color: var(--primary-red);
    width: 30px;
    text-align: center;
}

.price-amount-home {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-green);
}

@media (max-width: 768px) {
    .prices-table-home {
        font-size: 0.9rem;
    }
    
    .prices-table-home th,
    .prices-table-home td {
        padding: 1rem 0.5rem;
    }
    
    .fuel-type-cell-home i {
        font-size: 1.2rem;
    }
    
    .price-amount-home {
        font-size: 1.2rem;
    }
}

.statistics-section {
    padding: 80px 0;
    background: var(--light-color);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.stat-icon {
    font-size: 3rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   About Preview Section
   ============================================ */
.about-preview {
    padding: 100px 0;
    background: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-box {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.feature-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    background: var(--primary-yellow);
    color: var(--dark-color);
}

.feature-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.feature-box:hover i {
    color: var(--dark-color);
}

.feature-box h4 {
    color: var(--text-color);
    font-weight: 600;
}

.feature-box:hover h4 {
    color: var(--dark-color);
}

/* ============================================
   What We Do Section
   ============================================ */
.what-we-do-section {
    padding: 100px 0;
    background: var(--white);
}

.services-what-we-do {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.service-col {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-box-wdo {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.service-box-wdo:hover {
    transform: translateY(-6px);
}

.icon-wdo {
    width: 52px;
    height: 52px;
    background: rgba(255, 196, 0, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--primary-yellow);
    flex-shrink: 0;
    animation: pulse-wdo 3s infinite;
}

@keyframes pulse-wdo {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 196, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 0 14px rgba(255, 196, 0, 0);
    }
}

.service-box-wdo h3 {
    font-size: 18px;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-color);
}

.service-box-wdo p,
.service-box-wdo li {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-box-wdo ul {
    padding-left: 18px;
    margin: 0;
    list-style: none;
}

.service-box-wdo ul li {
    position: relative;
    padding-left: 20px;
}

.service-box-wdo ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.center-img-wdo {
    position: relative;
    animation: float-wdo 5s ease-in-out infinite;
}

@keyframes float-wdo {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.center-image-placeholder {
    width: 320px;
    height: 320px;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-green) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
    color: var(--white);
    font-size: 80px;
}

.center-img-wdo img {
    max-width: 320px;
    border-radius: 20px;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.15));
}

/* ============================================
   Services Preview Section
   ============================================ */
.services-preview {
    padding: 100px 0;
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.service-card {
    background: var(--white);
    padding: 0;
    border-radius: 10px;
    transition: var(--transition);
    border-top: 4px solid var(--primary-yellow);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-green);
}

.service-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin: 2.5rem 2.5rem 1rem 2.5rem;
    text-align: center;
    padding: 2rem 0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 0 2.5rem 1rem 2.5rem;
    color: var(--text-color);
    font-weight: 600;
    padding-top: 1rem;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0 2.5rem 1rem 2.5rem;
    flex-grow: 1;
}

.service-link {
    color: var(--primary-green);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
    margin: 0 2.5rem 2.5rem 2.5rem;
}

.service-link:hover {
    color: var(--primary-red);
    gap: 1rem;
}

.text-center {
    text-align: center;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-green) 0%, #1B7A35 100%);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--dark-color);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-yellow);
    font-weight: 600;
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--primary-yellow);
}

.footer-section i {
    margin-inline-end: 0.5rem;
    color: var(--primary-yellow);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-yellow);
    color: var(--dark-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

/* ============================================
   About Us Section (Vision & Mission)
   ============================================ */
.about-us-section {
    padding: 100px 0;
    background: var(--white);
}

.vision-mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.vm-card {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-yellow);
    box-shadow: var(--shadow);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-top-color: var(--primary-green);
}

.vm-icon {
    font-size: 4rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.chairman-foreword {
    background: linear-gradient(135deg, var(--primary-green) 0%, #1B7A35 100%);
    padding: 3rem;
    border-radius: 15px;
    color: var(--white);
}

.foreword-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.foreword-content p {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* ============================================
   Location Map Section
   ============================================ */
.location-map-section {
    padding: 100px 0;
    background: var(--light-color);
}

.location-map-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
}

.location-info-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow-lg);
}

.location-info-box h3 {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 2rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-yellow);
}

.location-details-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.location-detail-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.location-detail-item i {
    font-size: 1.5rem;
    color: var(--primary-yellow);
    margin-top: 0.3rem;
    width: 30px;
    text-align: center;
}

.location-detail-item strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.location-detail-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.map-container {
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   Working Hours Section
   ============================================ */
.working-hours-section {
    padding: 100px 0;
    background: var(--white);
}

.working-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.hours-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    border-top: 4px solid var(--primary-green);
    box-shadow: var(--shadow);
}

.hours-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--primary-yellow) 0%, #FFB300 100%);
    color: var(--dark-color);
}

.hours-card:hover .hours-icon {
    color: var(--dark-color);
}

.hours-card:hover .hours-time {
    color: var(--dark-color);
}

.hours-icon {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.hours-card h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

.hours-card:hover h3 {
    color: var(--dark-color);
}

.hours-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: 1rem;
}

.hours-time i {
    font-size: 1.5rem;
}

.hours-card p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.hours-card:hover p {
    color: var(--dark-color);
    opacity: 0.9;
}

.emergency-contact {
    margin-top: 3rem;
}

.emergency-box {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B71C1C 100%);
    padding: 2.5rem;
    border-radius: 15px;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
}

.emergency-box i {
    font-size: 3rem;
    color: var(--white);
}

.emergency-box h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.emergency-box p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

.emergency-box .btn {
    background: var(--white);
    color: var(--primary-red);
}

.emergency-box .btn:hover {
    background: var(--primary-yellow);
    color: var(--dark-color);
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 968px) {
    .location-map-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        height: 400px;
    }
    
    .vision-mission-grid {
        grid-template-columns: 1fr;
    }
    
    .emergency-box {
        flex-direction: column;
        text-align: center;
    }
    
    .services-what-we-do {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .service-box-wdo {
        justify-content: center;
    }
    
    [dir="rtl"] .service-box-wdo {
        text-align: right;
    }
    
    [dir="ltr"] .service-box-wdo {
        text-align: left;
    }
    
    .center-image-placeholder {
        width: 250px;
        height: 250px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .slide-title {
        font-size: 2rem;
    }

    .slide-subtitle {
        font-size: 2.5rem;
    }

    .slide-description {
        font-size: 1rem;
    }

    .about-content-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .working-hours-grid {
        grid-template-columns: 1fr;
    }
    
    .vm-card {
        padding: 2rem;
    }
    
    .chairman-foreword {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .slide-title {
        font-size: 1.5rem;
    }

    .slide-subtitle {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* RTL Specific Styles */
[dir="rtl"] .slider-controls {
    flex-direction: row-reverse;
}

[dir="rtl"] .slide-buttons {
    flex-direction: row-reverse;
}

