/* Google Fonts: Cairo (Arabic-optimized) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Blue Color Palette */
    --primary-blue: #1a5f7a;
    --accent-blue: #159ecc;
    --light-blue: #57c5f7;
    --cyan: #00d4ff;
    --dark-blue: #0d3b52;
    --light-bg: #e8f4f8;
    --text-dark: #1a5f7a;
    --text-light: #5a7c8a;
    --white: #ffffff;
    --gold: #ffa726;
    --whatsapp: #25D366;
    
    /* Spacing */
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 48px;
    --spacing-xl: 80px;
    
    /* Typography */
    --font-primary: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

html[dir="rtl"] body {
    text-align: right;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-blue);
    text-align: center;
    margin-bottom: var(--spacing-sm);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 9999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse-whatsapp 2s infinite;
}

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

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

@keyframes pulse-whatsapp {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

/* ===================================
   FULL-SCREEN HERO SECTION
   =================================== */
.hero-fullscreen {
    position: relative;
    min-height: 100vh;
    background-image: url('../images/hero/haggag.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 var(--spacing-lg);
}

/* Dark Blue Overlay */
.hero-fullscreen::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 82, 0.75) 0%, rgba(26, 95, 122, 0.5) 100%);
    z-index: 1;
}

/* ===================================
   NAVIGATION WITH WHITE LOGO
   =================================== */
.navbar-transparent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-image {
    height: 80px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white */
    transition: all 0.3s ease;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.nav-menu a:hover,
.nav-menu a.active {
    background: rgba(21, 158, 204, 0.3);
    backdrop-filter: blur(10px);
}

/* English Language Link Styling */
.lang-link {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 8px 20px !important;
    border-radius: 50px;
    font-weight: 600;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 101;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background: var(--primary-blue);
    z-index: 9998;
    transition: right 0.4s ease;
    padding: 80px 40px;
}

html[dir="rtl"] .mobile-menu {
    right: auto;
    left: -100%;
    transition: left 0.4s ease;
}

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

html[dir="rtl"] .mobile-menu.active {
    left: 0;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: var(--white);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

html[dir="rtl"] .mobile-menu-close {
    right: auto;
    left: 20px;
}

.mobile-menu ul {
    list-style: none;
}

.mobile-menu ul li {
    margin-bottom: 24px;
}

.mobile-menu ul li a {
    color: var(--white);
    text-decoration: none;
    font-size: 20px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: block;
}

.mobile-menu ul li a:hover {
    color: var(--cyan);
    padding-right: 10px;
}

html[dir="rtl"] .mobile-menu ul li a:hover {
    padding-right: 0;
    padding-left: 10px;
}

/* ===================================
   HERO CONTENT
   =================================== */
.hero-content-fullscreen {
    position: relative;
    z-index: 10;
    max-width: 700px;
    animation: fadeInUp 1.2s ease;
}

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

.hero-title-large {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.5);
}

.hero-label-large {
    display: inline-block;
    background: var(--accent-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    box-shadow: 0 4px 15px rgba(21, 158, 204, 0.5);
}

.hero-description-large {
    font-size: 22px;
    color: var(--white);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    font-size: 12px;
    letter-spacing: 2px;
    animation: float 3s ease-in-out infinite;
}

.scroll-arrow {
    font-size: 24px;
    margin-top: 8px;
    animation: bounce 2s ease-in-out infinite;
}

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

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

/* ===================================
   SPECIALTIES WITH REAL IMAGES
   =================================== */
.specialties {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.specialties-grid-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.specialty-card-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(26, 95, 122, 0.15);
    transition: all 0.4s ease;
}

.specialty-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(21, 158, 204, 0.3);
}

.specialty-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.specialty-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.specialty-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(13, 59, 82, 0.95) 0%, rgba(13, 59, 82, 0.7) 60%, transparent 100%);
    padding: var(--spacing-lg) var(--spacing-md);
    color: var(--white);
    transform: translateY(0);
    transition: all 0.4s ease;
}

.specialty-overlay h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-xs);
    color: var(--cyan);
}

.specialty-overlay p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
}

/* ===================================
   PARALLAX CTA SECTION WITH hero2.png
   =================================== */
.parallax-cta {
    position: relative;
    min-height: 70vh;
    background-image: url('../images/hero/hero2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
}

/* Overlay */
.parallax-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 82, 0.85) 0%, rgba(21, 158, 204, 0.75) 100%);
    z-index: 1;
}

.parallax-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    color: var(--white);
    animation: fadeInUp 1s ease;
}

.parallax-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.parallax-content p {
    font-size: 20px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.parallax-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.btn-parallax-primary,
.btn-parallax-secondary {
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-parallax-primary {
    background: var(--cyan);
    color: var(--dark-blue);
    box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
}

.btn-parallax-primary:hover {
    background: var(--light-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(87, 197, 247, 0.5);
}

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

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

/* ===================================
   VIDEOS SECTION
   =================================== */
.videos-section {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-lg);
}

.video-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.15);
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(21, 158, 204, 0.25);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ===================================
   CTA SECTION
   =================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--light-blue) 100%);
    color: var(--white);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: var(--spacing-sm);
}

.cta-section p {
    font-size: 18px;
    margin-bottom: var(--spacing-lg);
    opacity: 0.95;
}

.btn-cta {
    background: var(--white);
    color: var(--accent-blue);
    padding: 18px 48px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-blue);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.footer-logo {
    height: 100px;
    width: auto;
    margin-bottom: var(--spacing-sm);
    filter: brightness(0) invert(1);
}

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

.footer-col h3 {
    font-size: 24px;
    margin-bottom: var(--spacing-sm);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: var(--spacing-sm);
    color: var(--cyan);
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: var(--spacing-sm);
}

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

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

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

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

html[dir="rtl"] .footer-col ul li a:hover {
    padding-right: 0;
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--cyan);
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 968px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title-large {
        font-size: 48px;
    }
    
    .hero-description-large {
        font-size: 18px;
    }
    
    .hero-content-fullscreen {
        max-width: 90%;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .logo-image {
        height: 60px;
    }
    
    .parallax-cta {
        background-attachment: scroll;
    }
    
    .parallax-content h2 {
        font-size: 32px;
    }
    
    .parallax-content p {
        font-size: 16px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .hero-title-large {
        font-size: 36px;
    }
    
    .hero-label-large {
        font-size: 14px;
        padding: 8px 16px;
    }
    
    .hero-description-large {
        font-size: 16px;
    }
    
    .parallax-buttons {
        flex-direction: column;
    }
    
    .btn-parallax-primary,
    .btn-parallax-secondary {
        width: 100%;
        text-align: center;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        left: 20px;
    }
    
    html[dir="rtl"] .whatsapp-float {
        left: auto;
        right: 20px;
    }
    
    .logo-image {
        height: 50px;
    }
    
    .footer-logo {
        height: 70px;
    }
}

/* ===================================
   STICKY NAVIGATION
   =================================== */
.navbar-transparent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 100;
    transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar-transparent.navbar-scrolled {
    background: rgba(13, 59, 82, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 12px 0;
}

.navbar-transparent.navbar-scrolled .logo-image {
    height: 55px;
}

.hero-fullscreen {
    padding-top: 120px;
}

/* ===================================
   HERO WHATSAPP CTA BUTTON
   =================================== */
.btn-hero-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
    transition: all 0.3s ease;
    margin-top: var(--spacing-md);
}

.btn-hero-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 40px rgba(37, 211, 102, 0.65);
}

.btn-hero-whatsapp svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* ===================================
   WHY CHOOSE US SECTION
   =================================== */
.why-us-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.why-us-card {
    background: var(--white);
    border-radius: 20px;
    padding: var(--spacing-lg);
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.1);
    transition: all 0.4s ease;
    border-bottom: 4px solid transparent;
}

.why-us-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(21, 158, 204, 0.2);
    border-bottom-color: var(--cyan);
}

.why-us-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--accent-blue), var(--cyan));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
}

.why-us-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.why-us-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-xs);
}

.why-us-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===================================
   PAGE HERO (Blog + Article pages)
   =================================== */
.page-hero {
    padding: 160px var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero/hero2.png') center/cover no-repeat;
    opacity: 0.12;
    z-index: 0;
}

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

.page-hero-title {
    font-size: 52px;
    font-weight: 900;
    color: var(--white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.page-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-top: var(--spacing-xs);
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.breadcrumb a {
    color: var(--cyan);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--white);
}

.breadcrumb-sep {
    color: rgba(255, 255, 255, 0.4);
}

/* ===================================
   BLOG LISTING PAGE
   =================================== */
.blog-section {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-lg);
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(26, 95, 122, 0.1);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(21, 158, 204, 0.25);
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: var(--spacing-lg);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-category-tag {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-blue), var(--cyan));
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: var(--spacing-sm);
}

.blog-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: var(--spacing-md);
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 700;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-blue);
    padding: 10px 24px;
    border-radius: 50px;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: var(--accent-blue);
    color: var(--white);
}

/* ===================================
   ARTICLE PAGE STYLES
   =================================== */
.article-hero {
    padding: 160px var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/hero/haggag.jpeg') center/cover no-repeat;
    opacity: 0.1;
    z-index: 0;
}

.article-hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

.article-category-badge {
    display: inline-block;
    background: var(--cyan);
    color: var(--dark-blue);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
}

.article-hero-title {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: var(--spacing-md);
    text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.article-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Article Body Layout */
.article-layout {
    padding: var(--spacing-xl) 0;
    background: var(--white);
}

.article-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.article-body h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-blue);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-sm);
    padding-bottom: 10px;
    border-bottom: 3px solid var(--cyan);
}

.article-body h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--accent-blue);
    margin-top: var(--spacing-md);
    margin-bottom: var(--spacing-xs);
}

.article-body p {
    font-size: 17px;
    line-height: 1.9;
    color: #2d4a56;
    margin-bottom: var(--spacing-md);
}

.article-body ul,
.article-body ol {
    margin-bottom: var(--spacing-md);
    padding-right: var(--spacing-lg);
}

.article-body li {
    font-size: 16px;
    line-height: 1.9;
    color: #2d4a56;
    margin-bottom: 8px;
}

/* Callout / Alert Boxes */
.callout-box {
    border-radius: 16px;
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    position: relative;
    overflow: hidden;
    border-right: 5px solid transparent;
}

html[dir="rtl"] .callout-box {
    border-right: 5px solid transparent;
    border-left: none;
}

.callout-info {
    background: rgba(21, 158, 204, 0.08);
    border-right-color: var(--accent-blue);
    border: 1px solid rgba(21, 158, 204, 0.25);
    border-right: 5px solid var(--accent-blue);
}

.callout-warning {
    background: rgba(255, 167, 38, 0.08);
    border: 1px solid rgba(255, 167, 38, 0.25);
    border-right: 5px solid var(--gold);
}

.callout-success {
    background: rgba(37, 211, 102, 0.08);
    border: 1px solid rgba(37, 211, 102, 0.25);
    border-right: 5px solid var(--whatsapp);
}

.callout-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
    color: var(--primary-blue);
}

.callout-box p {
    font-size: 15px;
    margin-bottom: 0;
    line-height: 1.7;
    color: #2d4a56;
}

.callout-box ul {
    font-size: 15px;
    margin-bottom: 0;
    padding-right: var(--spacing-md);
}

.callout-box ul li {
    font-size: 15px;
    margin-bottom: 6px;
    color: #2d4a56;
}

/* WhatsApp Article CTA */
.article-whatsapp-cta {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--primary-blue) 100%);
    border-radius: 24px;
    padding: var(--spacing-xl);
    text-align: center;
    margin: var(--spacing-xl) 0;
    color: var(--white);
}

.article-whatsapp-cta h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: var(--spacing-sm);
    color: var(--white);
}

.article-whatsapp-cta p {
    font-size: 17px;
    color: rgba(255,255,255,0.85);
    margin-bottom: var(--spacing-lg);
}

.btn-article-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--whatsapp);
    color: var(--white);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
}

.btn-article-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.6);
}

.btn-article-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: var(--white);
}

/* Related Articles */
.related-articles {
    padding: var(--spacing-xl) 0;
    background: var(--light-bg);
}

.related-articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.related-card {
    background: var(--white);
    border-radius: 16px;
    padding: var(--spacing-lg);
    box-shadow: 0 6px 20px rgba(26, 95, 122, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    border-right: 4px solid var(--cyan);
}

.related-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 40px rgba(21, 158, 204, 0.2);
}

.related-card-category {
    font-size: 12px;
    color: var(--accent-blue);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.related-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1.4;
}

/* ===================================
   RESPONSIVE: NEW SECTIONS
   =================================== */
@media (max-width: 968px) {
    .page-hero-title {
        font-size: 38px;
    }
    .article-hero-title {
        font-size: 32px;
    }
    .why-us-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-fullscreen {
        padding-top: 100px;
    }
}

@media (max-width: 640px) {
    .page-hero {
        padding: 130px var(--spacing-md) var(--spacing-lg);
    }
    .article-hero {
        padding: 130px var(--spacing-md) var(--spacing-lg);
    }
    .page-hero-title {
        font-size: 30px;
    }
    .article-hero-title {
        font-size: 26px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .why-us-grid {
        grid-template-columns: 1fr;
    }
    .related-articles-grid {
        grid-template-columns: 1fr;
    }
    .hero-fullscreen {
        padding-top: 90px;
    }
}