/* =========================================
   CSS Variables & Theming
========================================= */
:root {
    --primary-color: #0b2239; /* Dark Navy Blue */
    --primary-light: #163a5f;
    --primary-dark: #071726;
    --accent-color: #d49a36;
    --secondary-color: #25D366;
    --accent-hover: #b8852e;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #25D366; /* WhatsApp Green optimized */
    --action-color: #FF5722; /* Call to Action Orange */
    --font-cairo: 'Cairo', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
    --shadow-md: 0 5px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.section-padding {
    padding: 80px 0;
}

.bg-light {
    background-color: var(--bg-light);
}

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

.text-right {
    text-align: right;
}

.mt-4 {
    margin-top: 2rem;
}

/* =========================================
   Typography & Headings
========================================= */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.4;
    color: var(--primary-color);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--accent-color);
}

.section-heading.text-right h2::after {
    left: auto;
    right: 0;
    transform: none;
}

.section-heading p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* =========================================
   Buttons
========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

.btn-large {
    padding: 15px 30px;
    font-size: 1.1rem;
}

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

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-outline-light {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

.btn-action {
    background-color: var(--action-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.4);
    animation: pulse-orange 2s infinite;
}

.btn-action:hover {
    background-color: #e64a19;
    transform: translateY(-2px);
}

.btn-whatsapp-solid {
    background-color: var(--success-color);
    color: var(--bg-white);
    font-size: 1.2rem;
    padding: 15px 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp-solid:hover {
    background-color: #1ebe57;
    transform: translateY(-2px);
}

@keyframes pulse-orange {
    0% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0.7); }
    70% { box-shadow: 0 0 0 15px rgba(255, 87, 34, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 87, 34, 0); }
}

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

/* =========================================
   Floating Buttons
========================================= */
.floating-btn {
    position: fixed;
    bottom: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: white;
    z-index: 999;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.floating-btn:hover {
    transform: scale(1.1);
}

.whatsapp-btn {
    left: 30px;
    background-color: var(--success-color);
    animation: pulse-green 2.5s infinite;
}

.phone-btn {
    right: 30px;
    background-color: var(--action-color);
    animation: pulse-orange 2.5s infinite;
}

.d-mobile {
    display: none;
}

/* On mobile, move floating buttons above sticky CTA bar */
@media (max-width: 768px) {
    .floating-btn {
        bottom: 90px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
    .whatsapp-btn { left: 16px; }
    .phone-btn { right: 16px; }
}

/* =========================================
   1. Top Bar
========================================= */
.top-bar {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 8px 0;
    font-size: 0.9rem;
}

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

.top-bar-content p {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-contact {
    display: flex;
    gap: 20px;
}

.top-bar-contact a {
    display: flex;
    align-items: center;
    gap: 5px;
}

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

/* =========================================
   2. Header
========================================= */
.main-header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
    transition: var(--transition);
}

.main-header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    font-weight: 600;
    font-size: 1rem;
    position: relative;
}

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

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

.main-nav a:hover,
.main-nav a.active {
    color: var(--accent-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--primary-color);
    cursor: pointer;
}

/* =========================================
   3. Hero Section
========================================= */
.hero {
    position: relative;
    padding: 120px 0;
    background-color: var(--primary-color); /* Fallback */
    /* background-image: url('../images/hero-bg.jpg'); - will be added later */
    background-size: cover;
    background-position: center;
    color: var(--bg-white);
    text-align: center;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(11, 34, 57, 0.9), rgba(11, 34, 57, 0.8));
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.hero h1 {
    font-size: 3.5rem;
    color: var(--bg-white);
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.trust-points {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-points span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

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

/* =========================================
   4. Services
========================================= */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-align: right;
}

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

.service-icon {
    font-size: 40px;
    color: var(--accent-color);
    margin-bottom: 20px;
    display: inline-block;
    padding: 15px;
    background-color: rgba(212, 154, 54, 0.1);
    border-radius: 12px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-link:hover {
    color: var(--accent-color);
}

.service-link:hover i {
    transform: translateX(-5px);
}

/* =========================================
   5. Why Us
========================================= */
.why-us-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.features-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 30px;
    color: var(--accent-color);
    background-color: var(--bg-white);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.feature-text p {
    color: var(--text-muted);
}

.why-us-image-placeholder .placeholder-box {
    background-color: #e9ecef;
    border: 2px dashed #ced4da;
    border-radius: 20px;
    height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #adb5bd;
    text-align: center;
}

.why-us-image-placeholder i {
    font-size: 60px;
    margin-bottom: 10px;
}

/* =========================================
   6. Gallery
========================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    height: 250px;
}

.placeholder-img {
    width: 100%;
    height: 100%;
    background-color: #e9ecef;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: var(--transition);
}

.gallery-item:hover .placeholder-img {
    transform: scale(1.05);
    background-color: #dee2e6;
}

.placeholder-img i {
    font-size: 40px;
    margin-bottom: 10px;
}

.before-after .ba-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--accent-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 40px;
    cursor: pointer;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    width: 800px;
    height: 600px;
}

.lightbox-content .placeholder-img.large {
    background-color: #333;
    color: #fff;
    border-radius: 10px;
}

/* =========================================
   7. Workflow
========================================= */
.steps-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 35px;
    right: 50px;
    left: 50px;
    height: 2px;
    background-color: var(--border-color);
    z-index: 1;
}

.step-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 70px;
    height: 70px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 800;
    margin: 0 auto 20px;
    border: 5px solid var(--bg-light);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.step-card:hover .step-number {
    background-color: var(--accent-color);
    transform: scale(1.1);
}

.step-card h4 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.step-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   8. Coverage
========================================= */
.coverage-wrapper {
    display: flex;
    align-items: center;
    gap: 50px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
}

.coverage-info {
    flex: 1;
    padding: 60px;
}

.coverage-info h2 {
    color: var(--bg-white);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.coverage-info p {
    color: #d1d5db;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.regions-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.regions-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.regions-list i {
    color: var(--accent-color);
}

.coverage-map {
    flex: 1;
    height: 100%;
    min-height: 400px;
    background-color: var(--primary-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-map {
    text-align: center;
    color: rgba(255,255,255,0.5);
}

.placeholder-map i {
    font-size: 80px;
    margin-bottom: 10px;
}

/* =========================================
   9. Testimonials
========================================= */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
    color: var(--text-main);
}

.client-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.client-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =========================================
   10. FAQ
========================================= */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: right;
    padding: 20px;
    background-color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-cairo);
    transition: var(--transition);
}

.faq-question:hover, .faq-question.active {
    background-color: var(--bg-light);
    color: var(--accent-color);
}

.faq-question i {
    transition: var(--transition);
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background-color: var(--bg-white);
}

.faq-answer p {
    padding: 0 20px 20px;
    color: var(--text-muted);
}

/* =========================================
   11. Pre-Footer CTA
========================================= */
.cta-section {
    background-color: var(--primary-light);
    padding: 80px 0;
    text-align: center;
    color: var(--bg-white);
}

.cta-content h2 {
    color: var(--bg-white);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #e0e0e0;
}

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

/* =========================================
   12. Footer
========================================= */
.main-footer {
    background-color: var(--primary-color);
    color: #d1d5db;
    padding: 80px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo {
    height: 50px;
    margin-bottom: 20px;
    filter: brightness(0) invert(1); /* make it white for dark footer if needed */
}

.footer-about p {
    line-height: 1.8;
}

.footer-links h3, .footer-contact h3 {
    color: var(--bg-white);
    margin-bottom: 25px;
    font-size: 1.3rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-links ul li {
    margin-bottom: 15px;
}

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

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-contact ul li i {
    color: var(--accent-color);
    font-size: 1.2rem;
}

.footer-contact ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

/* =========================================
   Responsive Design (Mobile First adjustments handled by media queries)
========================================= */
@media (max-width: 992px) {
    .hero h1 { font-size: 2.8rem; }
    .why-us-wrapper { grid-template-columns: 1fr; }
    .why-us-image-placeholder .placeholder-box { height: 300px; }
    .steps-container::before { display: none; }
    .step-card { min-width: 45%; margin-bottom: 30px; }
    .coverage-wrapper { flex-direction: column; }
    .coverage-info { padding: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .top-bar-content { flex-direction: column; text-align: center; gap: 10px; }
    .top-bar-contact { justify-content: center; }
    
    .main-nav {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: inset 0 10px 10px -10px rgba(0,0,0,0.1);
        z-index: 200;
    }

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

    .main-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .main-nav a { font-size: 1.3rem; }

    .header-actions .btn { display: none; }
    .mobile-menu-toggle { display: block; z-index: 201; }
    .d-mobile { display: flex; }

    .hero { padding: 80px 0; }
    .hero h1 { font-size: 2.2rem; }
    .hero p { font-size: 1rem; }
    .hero-cta { flex-direction: column; }
    .hero-cta .btn { width: 100%; }
    
    .section-padding { padding: 50px 0; }
    .section-heading h2 { font-size: 2rem; }
    
    .step-card { min-width: 100%; }
    
    .cta-buttons { flex-direction: column; }
    
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 25px; text-align: center; }
    .footer-links h3::after, .footer-contact h3::after { left: 50%; right: auto; transform: translateX(-50%); }
    .footer-contact ul li { justify-content: center; }
    .footer-logo { margin: 0 auto 20px; }
    .footer-about { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
    .footer-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================
   Ads specific classes (CRO)
========================================= */
.ad-offer-bar {
    background-color: var(--action-color);
    color: white;
    text-align: center;
    padding: 10px 15px;
    font-weight: bold;
    font-size: 1.1rem;
    position: relative;
    z-index: 101;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .ad-offer-bar {
        font-size: 0.85rem;
        padding: 8px 12px;
    }
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin: 40px 0 20px;
    flex-wrap: wrap;
}

.trust-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    min-width: 150px;
    border: 1px solid var(--border-color);
}

.trust-badge-item i {
    font-size: 40px;
    color: var(--accent-color);
}

.trust-badge-item span {
    font-weight: 700;
    color: var(--primary-color);
}

/* =========================================
   Phase 5 � Brand Building & Trust System
========================================= */

/* --- Stats Counter Section --- */
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    padding: 60px 0;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}
.stat-item {
    color: var(--bg-white);
    padding: 20px;
    border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.85); font-weight: 600; }

/* --- Quality Pledge Section --- */
.quality-pledge {
    background: var(--bg-white);
    border: 2px solid var(--accent-color);
    border-radius: 20px;
    padding: 50px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    box-shadow: 0 8px 40px rgba(212,154,54,0.15);
}
.quality-pledge h3 { font-size: 2rem; margin-bottom: 20px; }
.quality-pledge p { font-size: 1.1rem; color: var(--text-muted); max-width: 650px; margin: 0 auto 30px; line-height: 1.9; }
.pledge-items { display: flex; justify-content: center; gap: 15px; flex-wrap: wrap; margin-top: 25px; }
.pledge-item {
    display: flex; align-items: center; gap: 10px;
    background: var(--bg-light); padding: 12px 20px;
    border-radius: 30px; font-weight: 700; font-size: 0.95rem;
    color: var(--primary-color); border: 1px solid var(--border-color);
}
.pledge-item i { color: var(--accent-color); font-size: 1.3rem; }

/* --- Enhanced Testimonial Cards --- */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.testimonial-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    border-top: 4px solid var(--accent-color);
}
.testimonial-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testimonial-card .stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 15px; display: flex; gap: 3px; }
.testimonial-card p { color: var(--text-main); font-size: 1.05rem; line-height: 1.8; margin-bottom: 20px; }
.client-info { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--border-color); padding-top: 15px; }
.client-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    display: flex; align-items: center; justify-content: center;
    color: white; font-weight: 800; font-size: 1.1rem; flex-shrink: 0;
}
.client-info strong { display: block; color: var(--primary-color); font-size: 1rem; }
.client-info span { font-size: 0.85rem; color: var(--text-muted); }

/* --- Microcopy --- */
.cta-microcopy { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.75); margin-top: 6px; text-align: center; }
.cta-microcopy-dark { display: block; font-size: 0.82rem; color: var(--text-muted); margin-top: 6px; text-align: center; }

/* --- Values Bar --- */
.values-bar { background: var(--bg-light); border-top: 3px solid var(--accent-color); padding: 30px 0; }
.values-bar-inner { display: flex; justify-content: center; flex-wrap: wrap; }
.value-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 15px 35px; border-right: 1px solid var(--border-color); text-align: center; }
.value-item:last-child { border-right: none; }
.value-item i { font-size: 2rem; color: var(--accent-color); }
.value-item span { font-weight: 700; font-size: 0.95rem; color: var(--primary-color); }

/* --- About Page --- */
.about-hero { background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%); padding: 120px 0 80px; text-align: center; color: white; }
.about-hero h1 { color: white; font-size: 3rem; margin-bottom: 15px; }
.about-hero p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.value-card { background: var(--bg-white); padding: 35px 25px; border-radius: 15px; text-align: center; box-shadow: var(--shadow-sm); border-bottom: 4px solid var(--accent-color); transition: var(--transition); }
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-card i { font-size: 3rem; color: var(--accent-color); margin-bottom: 15px; }
.value-card h4 { font-size: 1.3rem; margin-bottom: 10px; }
.value-card p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }

@media (max-width: 768px) {
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
    .quality-pledge { padding: 30px 20px; }
    .values-grid { grid-template-columns: 1fr; }
    .value-item { border-right: none; border-bottom: 1px solid var(--border-color); }
    .value-item:last-child { border-bottom: none; }
    .about-hero h1 { font-size: 2.2rem; }
}

/* ===== PHASE 6: PREMIUM REDESIGN ===== */
:root {
    --primary-color: #0b2239;
    --primary-light: #163a5f;
    --accent-color: #d49a36;
    --accent-hover: #b8852e;
    --success-color: #25D366;
    --action-color: #FF5722;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --text-main: #1a1a2e;
    --text-muted: #64748b;
    --border-color: #e2e8f0;
    --font-cairo: 'Cairo', sans-serif;
    --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    --shadow-sm: 0 1px 3px rgba(0,0,0,.06),0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 6px rgba(0,0,0,.07),0 2px 4px rgba(0,0,0,.06);
    --shadow-lg: 0 10px 25px rgba(0,0,0,.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,.15);
    --radius: 16px;
    --radius-sm: 10px;
}

/* Progress Bar */
#progress-bar {
    position: fixed; top: 0; left: 0; height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #f59e0b);
    width: 0%; z-index: 9999; transition: width .1s linear;
}

/* Scroll Reveal */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity .7s ease, transform .7s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ====== HERO PREMIUM ====== */
.hero-premium {
    min-height: 100vh;
    background: linear-gradient(135deg, #0b2239 0%, #0f3460 50%, #16213e 100%);
    position: relative; overflow: hidden;
    display: flex; align-items: center;
}

.hero-geo {
    position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

.hero-geo::before {
    content: '';
    position: absolute; top: -200px; left: -200px;
    width: 700px; height: 700px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,154,54,.15) 0%, transparent 70%);
}

.hero-geo::after {
    content: '';
    position: absolute; bottom: -150px; right: -100px;
    width: 500px; height: 500px; border-radius: 50%;
    background: radial-gradient(circle, rgba(37,211,102,.08) 0%, transparent 70%);
}

.hero-grid-pattern {
    position: absolute; inset: 0;
    background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.hero-content-wrap {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
    position: relative; z-index: 2; padding: 120px 0 80px;
}

.hero-left { text-align: right; color: #fff; }

.hero-badge-new {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,154,54,.15); border: 1px solid rgba(212,154,54,.3);
    color: var(--accent-color); padding: 8px 18px; border-radius: 30px;
    font-size: .9rem; font-weight: 700; margin-bottom: 25px;
}

.hero-h1 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 800; color: #fff; line-height: 1.25;
    margin-bottom: 20px; letter-spacing: -.5px;
}

.hero-h1 span {
    background: linear-gradient(135deg, var(--accent-color), #f59e0b);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem; color: rgba(255,255,255,.75);
    margin-bottom: 40px; line-height: 1.8;
}

.hero-cta-group { display: flex; gap: 15px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--success-color); color: #fff;
    padding: 16px 30px; border-radius: 12px; font-weight: 700;
    font-size: 1.05rem; transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37,211,102,.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,.45); background: #1ebe57; }

.btn-call {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--action-color); color: #fff;
    padding: 16px 30px; border-radius: 12px; font-weight: 700;
    font-size: 1.05rem; transition: var(--transition);
    box-shadow: 0 8px 25px rgba(255,87,34,.35);
}
.btn-call:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(255,87,34,.45); background: #e64a19; }

.hero-microcopy { font-size: .82rem; color: rgba(255,255,255,.5); margin-top: 12px; }

.hero-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.hero-stat {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm); padding: 18px; text-align: center;
    backdrop-filter: blur(10px); transition: var(--transition);
}
.hero-stat:hover { background: rgba(255,255,255,.12); }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent-color); display: block; }
.hero-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.7); font-weight: 600; }

.hero-right { position: relative; display: flex; align-items: center; justify-content: center; }

.hero-visual-card {
    background: rgba(255,255,255,.08); backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 24px; padding: 40px; text-align: center;
    width: 100%; max-width: 380px;
}

.hero-icon-big { font-size: 100px; color: var(--accent-color); margin-bottom: 20px; line-height: 1; }

.hero-visual-card h3 { color: #fff; font-size: 1.3rem; margin-bottom: 10px; }
.hero-visual-card p { color: rgba(255,255,255,.65); font-size: .95rem; line-height: 1.7; }

.floating-tag {
    position: absolute; background: var(--accent-color); color: white;
    padding: 10px 16px; border-radius: 12px; font-weight: 700; font-size: .85rem;
    box-shadow: 0 8px 20px rgba(212,154,54,.4); animation: float 3s ease-in-out infinite;
}
.floating-tag.t1 { top: 30px; right: 20px; }
.floating-tag.t2 { bottom: 50px; left: 20px; animation-delay: 1.5s; }

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

/* Services Premium */
.services-grid-new {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-card {
    background: var(--bg-white); border-radius: var(--radius);
    padding: 35px 28px; border: 1px solid var(--border-color);
    transition: var(--transition); position: relative; overflow: hidden;
    cursor: pointer;
}
.svc-card::before {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0); transition: var(--transition); transform-origin: right;
}
.svc-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover .svc-icon { background: var(--primary-color); color: var(--accent-color); }

.svc-icon {
    width: 64px; height: 64px; border-radius: 14px;
    background: rgba(11,34,57,.06); display: flex; align-items: center;
    justify-content: center; font-size: 28px; color: var(--primary-color);
    margin-bottom: 20px; transition: var(--transition);
}
.svc-card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.svc-card p { color: var(--text-muted); font-size: .95rem; line-height: 1.7; margin-bottom: 18px; }
.svc-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent-color); font-weight: 700; font-size: .9rem; }
.svc-link i { transition: transform .25s; }
.svc-card:hover .svc-link i { transform: translateX(-5px); }

/* Why Us Premium */
.why-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.why-item {
    display: flex; gap: 18px; align-items: flex-start;
    background: var(--bg-white); padding: 28px; border-radius: var(--radius);
    border: 1px solid var(--border-color); transition: var(--transition);
}
.why-item:hover { box-shadow: var(--shadow-lg); border-color: var(--accent-color); transform: translateY(-3px); }
.why-icon {
    width: 52px; height: 52px; flex-shrink: 0; border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 22px; color: var(--accent-color);
}
.why-text h4 { font-size: 1.05rem; margin-bottom: 6px; }
.why-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.6; }

/* Gallery Premium */
.gallery-grid-new {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
}
.gal-item {
    border-radius: var(--radius); overflow: hidden; cursor: pointer;
    position: relative; background: #e2e8f0; min-height: 220px;
    display: flex; align-items: center; justify-content: center;
}
.gal-item.large { grid-row: span 2; min-height: 460px; }
.gal-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; color: #94a3b8; font-size: 14px; gap: 10px; }
.gal-placeholder i { font-size: 36px; }
.gal-overlay {
    position: absolute; inset: 0; background: rgba(11,34,57,.85);
    display: flex; flex-direction: column; align-items: center;
    justify-content: center; opacity: 0; transition: var(--transition);
    color: white; gap: 10px;
}
.gal-overlay i { font-size: 32px; color: var(--accent-color); }
.gal-overlay span { font-weight: 700; font-size: .95rem; }
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-item:hover .gal-placeholder { transform: scale(1.05); }
.ba-chip { position: absolute; top: 12px; right: 12px; background: var(--accent-color); color: white; padding: 4px 12px; border-radius: 20px; font-size: .78rem; font-weight: 700; z-index: 2; }

/* FAQ Premium */
.faq-new { max-width: 780px; margin: 0 auto; }
.faq-item-new {
    background: var(--bg-white); border-radius: var(--radius-sm);
    border: 1px solid var(--border-color); margin-bottom: 12px;
    overflow: hidden; transition: var(--transition);
}
.faq-item-new:hover { box-shadow: var(--shadow-md); }
.faq-q {
    width: 100%; display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px; background: none; border: none; cursor: pointer;
    font-family: var(--font-cairo); font-size: 1.05rem; font-weight: 700;
    color: var(--primary-color); text-align: right; gap: 15px;
}
.faq-q i { font-size: 20px; color: var(--accent-color); flex-shrink: 0; transition: transform .3s; }
.faq-item-new.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-a p { padding: 0 24px 20px; color: var(--text-muted); line-height: 1.8; font-size: .98rem; }
.faq-item-new.open .faq-a { max-height: 300px; }

/* Sticky Mobile CTA */
.sticky-mobile-cta {
    display: none; position: fixed; bottom: 0; left: 0; right: 0;
    background: var(--bg-white); border-top: 1px solid var(--border-color);
    padding: 12px 20px; z-index: 990; gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.sticky-mobile-cta a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 13px; border-radius: 10px; font-weight: 700; font-size: .95rem; }

/* Section divider */
.section-divider { width: 60px; height: 4px; background: linear-gradient(90deg, var(--accent-color), #f59e0b); border-radius: 2px; margin: 0 auto 50px; }
.section-divider.rtl { margin: 0 0 30px; }

/* CTA Final */
.cta-final {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 28px; padding: 70px 50px; text-align: center;
    position: relative; overflow: hidden;
}
.cta-final::before {
    content: ''; position: absolute; top: -100px; right: -100px;
    width: 350px; height: 350px; border-radius: 50%;
    background: radial-gradient(circle, rgba(212,154,54,.2) 0%, transparent 70%);
}
.cta-final h2 { color: white; font-size: 2.2rem; margin-bottom: 15px; }
.cta-final p { color: rgba(255,255,255,.8); font-size: 1.1rem; margin-bottom: 35px; }
.cta-final-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 992px) {
    .hero-content-wrap { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { text-align: center; color: #fff; }
    .hero-cta-group { justify-content: center; }
    .services-grid-new { grid-template-columns: 1fr 1fr; }
    .gallery-grid-new { grid-template-columns: 1fr 1fr; }
    .gal-item.large { grid-row: span 1; min-height: 220px; }
}
@media (max-width: 768px) {
    .hero-h1 { font-size: 2rem; }
    .hero-stats-row { grid-template-columns: repeat(3,1fr); gap: 10px; }
    .hero-stat .num { font-size: 1.5rem; }
    .services-grid-new { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .gallery-grid-new { grid-template-columns: 1fr; }
    .cta-final { padding: 40px 25px; }
    .cta-final h2 { font-size: 1.6rem; }
    .sticky-mobile-cta { display: flex; }
    body { padding-bottom: 80px; }
}

/* =========================================
   Phase 7 � Blog System
========================================= */

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}
.blog-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}
.blog-card-img {
    height: 200px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
}
.blog-card-img i { font-size: 3rem; opacity: 0.5; }
.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.blog-meta {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-weight: 600;
    display: flex;
    gap: 15px;
}
.blog-card-title {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.5;
}
.blog-card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}
.blog-card-link {
    color: var(--primary-color);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.blog-card:hover .blog-card-link {
    color: var(--accent-color);
}

/* Article Layout */
.article-container {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    align-items: start;
}
@media (max-width: 992px) {
    .article-container { grid-template-columns: 1fr; }
}

.article-content {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
}
@media (max-width: 768px) {
    .article-content { padding: 25px 20px; }
}

.article-header { margin-bottom: 30px; padding-bottom: 25px; border-bottom: 1px solid var(--border-color); }
.article-header h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.4; }
.article-meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.95rem; }
.article-meta span { display: flex; align-items: center; gap: 6px; }
.article-meta i { color: var(--accent-color); }

.article-body {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-main);
}
.article-body h2 {
    font-size: 1.7rem; margin: 40px 0 20px; color: var(--primary-color);
    position: relative; padding-right: 20px;
}
.article-body h2::before {
    content: ''; position: absolute; right: 0; top: 10px; bottom: 10px;
    width: 4px; background: var(--accent-color); border-radius: 4px;
}
.article-body h3 { font-size: 1.3rem; margin: 30px 0 15px; color: var(--primary-light); }
.article-body p { margin-bottom: 20px; }
.article-body ul { margin-bottom: 25px; padding-right: 20px; list-style-type: disc; }
.article-body li { margin-bottom: 10px; }
.article-body a { color: var(--accent-color); font-weight: 700; text-decoration: underline; }
.article-body a:hover { color: var(--primary-color); }

/* FAQ inside Article */
.article-faq {
    margin-top: 50px; padding: 30px; background: var(--bg-light);
    border-radius: var(--radius-sm); border: 1px solid var(--border-color);
}
.article-faq h2 { margin-top: 0; }
.article-faq-item { margin-bottom: 20px; }
.article-faq-item:last-child { margin-bottom: 0; }
.article-faq-q { font-weight: 700; font-size: 1.15rem; color: var(--primary-color); margin-bottom: 8px; }
.article-faq-a { color: var(--text-muted); }

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
}
.sidebar-widget {
    background: var(--bg-white);
    padding: 25px;
    border-radius: var(--radius);
    border: 1px solid var(--border-color);
    margin-bottom: 30px;
    box-shadow: var(--shadow-sm);
}
.sidebar-widget h3 {
    font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
    position: relative;
}
.sidebar-widget h3::after {
    content: ''; position: absolute; bottom: -2px; right: 0;
    width: 50px; height: 2px; background: var(--accent-color);
}

.widget-services-list li { margin-bottom: 12px; }
.widget-services-list li:last-child { margin-bottom: 0; }
.widget-services-list a {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-muted); font-weight: 600; padding: 8px 10px;
    border-radius: 8px; transition: var(--transition);
}
.widget-services-list a:hover {
    background: var(--bg-light); color: var(--primary-color);
    transform: translateX(-5px);
}
.widget-services-list i { color: var(--accent-color); }

.widget-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white; text-align: center;
}
.widget-cta h3 { border-bottom: none; color: white; }
.widget-cta h3::after { display: none; }
.widget-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; font-size: 0.95rem; }

/* Article Prev/Next */
.article-nav {
    display: flex; justify-content: space-between; margin-top: 50px;
    padding-top: 30px; border-top: 1px solid var(--border-color);
}
.article-nav a {
    display: flex; align-items: center; gap: 10px; color: var(--primary-color);
    font-weight: 700; transition: var(--transition);
}
.article-nav a:hover { color: var(--accent-color); }
