:root {
    --primary: #FFC107;
    --primary-dark: #FFA000;
    --secondary: #1a1a2e;
    --accent: #DC3545;
    --light: #F8F9FA;
    --dark: #212529;
    --gray: #6c757d;
    --white: #ffffff;
    --shadow: 0 4px 20px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: var(--light);
    color: var(--dark);
    line-height: 1.8;
    overflow-x: hidden;
}

.maintenance-body {
    min-height: 100vh;
    background:
        radial-gradient(circle at 80% 10%, rgba(255, 193, 7, 0.22), transparent 28%),
        linear-gradient(135deg, #1a1a2e 0%, #2b2d42 52%, #111827 100%);
}

.maintenance-screen {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.maintenance-box {
    width: min(100%, 520px);
    background: var(--white);
    border-radius: var(--radius);
    padding: 34px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.maintenance-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 193, 7, 0.18);
    color: var(--primary-dark);
    font-size: 30px;
}

.maintenance-site {
    margin-bottom: 8px;
    color: var(--gray);
    font-weight: 700;
}

.maintenance-box h1 {
    margin-bottom: 12px;
    color: var(--secondary);
    font-size: 30px;
    line-height: 1.4;
}

.maintenance-message {
    margin-bottom: 22px;
    color: var(--gray);
}

.maintenance-error {
    margin-bottom: 16px;
    padding: 10px 12px;
    border-radius: 8px;
    background: rgba(220, 53, 69, 0.1);
    color: var(--accent);
    font-weight: 700;
}

.maintenance-form {
    text-align: right;
}

.maintenance-form label {
    display: block;
    margin-bottom: 8px;
    color: var(--secondary);
    font-weight: 700;
}

.maintenance-input-row {
    display: flex;
    gap: 10px;
}

.maintenance-input-row input {
    flex: 1;
    min-width: 0;
    padding: 13px 14px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-family: inherit;
    font-size: 16px;
}

.maintenance-input-row input:focus {
    outline: none;
    border-color: var(--primary);
}

.maintenance-input-row button {
    border: 0;
    border-radius: 8px;
    padding: 0 20px;
    background: var(--primary);
    color: var(--secondary);
    font-family: inherit;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

@media (max-width: 520px) {
    .maintenance-box {
        padding: 26px 20px;
    }

    .maintenance-box h1 {
        font-size: 24px;
    }

    .maintenance-input-row {
        flex-direction: column;
    }

    .maintenance-input-row button {
        justify-content: center;
        min-height: 48px;
    }
}

::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: var(--light);
}
::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

.header-capsule {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 1000;
    border-radius: 50px;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 193, 7, 0.15);
    overflow: visible;
}

.navbar {
    padding: 0 30px;
    height: 70px;
    display: flex;
    align-items: center;
}
.navbar .nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 800;
    color: var(--secondary);
    text-decoration: none;
    flex-shrink: 0;
}
.logo i {
    color: var(--primary);
    font-size: 28px;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 14px;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    right: 0;
    width: 0;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}
.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}
.nav-links a:hover {
    color: var(--primary-dark);
}
.nav-links a i,
.nav-links .drop-link > i:first-child {
    font-size: 14px;
    color: var(--primary);
    margin-left: 4px;
}
.nav-actions {
    display: none;
}
@keyframes waFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes phoneRing {
    0%, 100% { transform: rotate(0deg); }
    10% { transform: rotate(12deg); }
    20% { transform: rotate(-10deg); }
    30% { transform: rotate(8deg); }
    40% { transform: rotate(-6deg); }
    50% { transform: rotate(0deg); }
    100% { transform: rotate(0deg); }
}

.mobile-action-btn.mobile-wa i {
    animation: waFloat 2s ease-in-out infinite;
}

.mobile-action-btn.mobile-call i {
    animation: phoneRing 2.5s ease-in-out infinite;
}

@keyframes waGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    50% { box-shadow: 0 0 12px 4px rgba(37, 211, 102, 0.25); }
}

@keyframes callGlow {
    0%, 100% { box-shadow: none; }
    40% { box-shadow: 0 0 10px 3px rgba(255, 255, 255, 0.2); }
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--secondary);
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}
.mobile-menu-btn:hover {
    background: rgba(0,0,0,0.05);
}

.nav-links .has-drop {
    position: relative;
}
.nav-links .drop-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}
.nav-links .drop-link:hover {
    color: var(--primary-dark);
}
.nav-links .drop-link .drop-icon {
    font-size: 10px;
    transition: var(--transition);
}
.nav-links .has-drop:hover > .drop-link .drop-icon {
    transform: rotate(180deg);
}

.drop-lvl1,
.drop-lvl2 {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    position: absolute;
    z-index: 1100;
}

.drop-lvl1 {
    display: none;
    top: 100%;
    right: 0;
    min-width: 200px;
}

.drop-lvl1 > li {
    position: relative;
}
.drop-lvl1 > li > a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.drop-lvl1 > li > a::after {
    display: none;
}
.drop-lvl1 > li > a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
}

.drop-arrow {
    display: none;
}

.drop-lvl2 {
    display: none;
    top: 0;
    left: 100%;
    min-width: 220px;
    max-height: 320px;
    overflow-y: auto;
}

.drop-lvl2 li a {
    display: block;
    padding: 8px 20px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}
.drop-lvl2 li a:hover {
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-dark);
    padding-right: 25px;
}

@media (min-width: 769px) {
    .nav-links .has-drop:hover > .drop-lvl1 {
        display: block;
    }
    .nav-links .has-drop:hover > .drop-link .drop-icon {
        transform: rotate(180deg);
    }
    .drop-lvl1 > li:hover > .drop-lvl2 {
        display: block;
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Cairo', sans-serif;
}
.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    box-shadow: 0 4px 15px rgba(255, 193, 7, 0.4);
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.5);
}
.btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.btn-secondary:hover {
    background: #2d2d44;
    transform: translateY(-2px);
}
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}
.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}
.btn-outline:hover {
    background: var(--white);
    color: var(--secondary);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, rgba(10,10,26,0.92) 0%, rgba(26,26,46,0.92) 50%, rgba(13,27,42,0.92) 100%), url('../uploads/hero_1779493384.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow-x: hidden;
    clip-path: none;
    padding-top: 155px;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="%23FFC107" stroke-width="0.5" opacity="0.1"/></svg>');
    background-size: 200px;
    opacity: 0.3;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 193, 7, 0.3);
}
.hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    color: var(--white);
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero h1 span {
    color: var(--primary);
    position: relative;
}
.hero p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin-bottom: 30px;
}
.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}
.stat-item {
    text-align: center;
}
.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    display: block;
}
.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-circle-wrap {
    position: relative;
    width: 420px;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-circle-img {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 4px solid var(--primary);
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.25), 0 0 80px rgba(255, 193, 7, 0.1);
    position: relative;
    z-index: 2;
    background: transparent;
}
.hero-circle-img img {
    position: absolute;
    width: auto;
    height: auto;
    max-width: none;
    max-height: 450px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    pointer-events: none;
    z-index: 3;
}
.hero-dot {
    position: absolute;
    border-radius: 50%;
    will-change: transform;
    z-index: 1;
}
.hero-dot-1 {
    width: 18px;
    height: 18px;
    background: var(--primary);
    top: 10%;
    right: -5%;
    animation: orbit1 6s ease-in-out infinite;
}
.hero-dot-2 {
    width: 12px;
    height: 12px;
    background: #25D366;
    bottom: 8%;
    right: 0%;
    animation: orbit2 8s ease-in-out infinite;
}
.hero-dot-3 {
    width: 10px;
    height: 10px;
    background: rgba(255, 193, 7, 0.6);
    top: 5%;
    left: 10%;
    animation: orbit3 7s ease-in-out infinite;
}
.hero-dot-4 {
    width: 14px;
    height: 14px;
    background: var(--accent);
    bottom: 5%;
    left: 5%;
    animation: orbit4 9s ease-in-out infinite;
}
.hero-dot-5 {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    top: 50%;
    left: -8%;
    animation: orbit5 5s ease-in-out infinite;
}
.hero-dot-6 {
    width: 11px;
    height: 11px;
    background: var(--primary-dark);
    top: 40%;
    right: -8%;
    animation: orbit6 7s ease-in-out infinite;
}

@keyframes orbit1 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-10px, 15px); }
    50% { transform: translate(5px, -10px); }
    75% { transform: translate(12px, 8px); }
}
@keyframes orbit2 {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(15px, -12px); }
    66% { transform: translate(-8px, 10px); }
}
@keyframes orbit3 {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(12px, 18px); }
}
@keyframes orbit4 {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-15px, -8px); }
    75% { transform: translate(10px, 12px); }
}
@keyframes orbit5 {
    0%, 100% { transform: translate(0, 0); }
    40% { transform: translate(8px, -15px); }
    80% { transform: translate(-5px, 10px); }
}
@keyframes orbit6 {
    0%, 100% { transform: translate(0, 0); }
    30% { transform: translate(-12px, 10px); }
    60% { transform: translate(5px, -18px); }
}

.section {
    padding: 80px 0;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}
.section-tag {
    display: inline-block;
    background: rgba(255, 193, 7, 0.15);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 13px;
    margin-bottom: 15px;
}
.section-title {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.4;
}
.section-desc {
    color: var(--gray);
    font-size: 16px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}
.feature-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 35px 25px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}
.feature-card:hover::before {
    transform: scaleX(1);
}
.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: var(--secondary);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}
.feature-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
}

.about-section {
    background: var(--white);
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.about-images {
    position: relative;
}
.about-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 2;
}
.about-img-main img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}
.about-img-float {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 200px;
    height: 200px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.about-img-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-experience {
    position: absolute;
    top: 30px;
    right: -20px;
    background: var(--primary);
    color: var(--secondary);
    padding: 20px;
    border-radius: var(--radius);
    text-align: center;
    font-weight: 800;
    box-shadow: var(--shadow-lg);
    z-index: 3;
}
.about-experience .years {
    font-size: 36px;
    display: block;
    line-height: 1;
}
.about-experience .text {
    font-size: 13px;
}
.about-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 20px;
    line-height: 1.4;
}
.about-content p {
    color: var(--gray);
    margin-bottom: 20px;
    font-size: 15px;
}
.about-list {
    list-style: none;
    margin: 25px 0;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 600;
    color: var(--dark);
}
.about-list li i {
    color: var(--primary);
    font-size: 18px;
}

.services-section {
    background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%);
    color: var(--white);
}
.services-section .section-title {
    color: var(--white);
}
.services-section .section-desc {
    color: rgba(255,255,255,0.7);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}
.service-card {
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--primary);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(30%, 30%);
    transition: var(--transition);
}
.service-card:hover::after {
    width: 150px;
    height: 150px;
    opacity: 0.2;
}
.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(255,255,255,0.08);
}
.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
}
.service-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.7;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.region-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}
.region-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}
.region-card:hover::before {
    transform: scaleX(1);
}
.region-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.region-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #e0293a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    margin-bottom: 5px;
}
.region-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    margin: 0;
}
.region-count {
    font-size: 13px;
    color: var(--gray);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 5px;
}
.region-count i {
    font-size: 12px;
    color: var(--primary-dark);
}
.article-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}
.article-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.article-card:hover .article-image img {
    transform: scale(1.1);
}
.article-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: var(--secondary);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}
.article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--gray);
}
.article-meta i {
    color: var(--primary);
    margin-left: 5px;
}
.article-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}
.article-card p {
    color: var(--gray);
    font-size: 14px;
    line-height: 1.7;
    flex-grow: 1;
}
.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-dark);
    font-weight: 700;
    text-decoration: none;
    margin-top: 15px;
    transition: var(--transition);
}
.read-more:hover {
    gap: 12px;
    color: var(--secondary);
}

.gallery-section {
    background: var(--white);
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}
.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.gallery-item:hover img {
    transform: scale(1.15);
}
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
    opacity: 1;
}
.gallery-overlay h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
}
.gallery-overlay p {
    color: var(--primary);
    font-size: 13px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    margin-bottom: 15px;
    box-shadow: var(--shadow);
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 22px 25px;
    background: none;
    border: none;
    text-align: right;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--secondary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--transition);
}
.faq-question:hover {
    background: rgba(255, 193, 7, 0.05);
}
.faq-question i {
    color: var(--primary);
    font-size: 18px;
    transition: var(--transition);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}
.faq-answer-content {
    padding: 0 25px 22px;
    color: var(--gray);
    line-height: 1.8;
    font-size: 15px;
}
.faq-item.active .faq-answer {
    max-height: 300px;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}
.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--secondary);
}
.cta-content h2 {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    margin-bottom: 15px;
}
.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-section .btn-secondary {
    background: var(--secondary);
    color: var(--white);
}
.cta-section .btn-outline {
    border-color: var(--secondary);
    color: var(--secondary);
}
.cta-section .btn-outline:hover {
    background: var(--secondary);
    color: var(--white);
}

.contact-bar {
    background: var(--secondary);
    color: var(--white);
    padding: 40px 0;
}
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}
.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}
.contact-icon {
    width: 55px;
    height: 55px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--secondary);
    flex-shrink: 0;
}
.contact-item h4 {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 3px;
}
.contact-item p, .contact-item a {
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.contact-item a:hover {
    color: var(--primary);
}

.footer {
    background: #0f0f1e;
    color: var(--white);
    padding: 60px 0 20px;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
    margin: 15px 0;
    font-size: 14px;
    line-height: 1.8;
}
.footer-brand .social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}
.footer h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary);
}
.footer-links {
    list-style: none;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links a::before {
    content: '\203A';
    color: var(--primary);
    font-size: 18px;
}
.footer-links a:hover {
    color: var(--primary);
    padding-right: 5px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.floating-buttons {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 999;
}
.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    text-decoration: none;
    transition: var(--transition);
}
.float-btn:hover {
    transform: scale(1.1);
}
.float-btn.phone-float {
    background: var(--accent);
    box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4);
    animation: pulsePhone 2s infinite;
}
.float-btn.phone-float:hover {
    box-shadow: 0 6px 30px rgba(220, 53, 69, 0.6);
}
.float-btn.whatsapp-float {
    background: #25D366;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: pulseWa 2s infinite;
}
.float-btn.whatsapp-float:hover {
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}
@keyframes pulsePhone {
    0%, 100% { box-shadow: 0 4px 20px rgba(220, 53, 69, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(220, 53, 69, 0.7); }
}
@keyframes pulseWa {
    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); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fade-in {
    opacity: 1;
    transform: translateY(0);
    animation: safeFadeIn 0.6s ease both;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes safeFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in {
        animation: none;
    }
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-visual {
        order: -1;
    }
    .hero-circle-wrap {
        width: 320px;
        height: 320px;
    }
    .hero-circle-img {
        width: 220px;
        height: 220px;
    }
    .hero-circle-img img {
        height: 260px;
    }
    .hero p {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-stats {
        gap: 25px;
        justify-content: center;
    }
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 6px;
}
.mobile-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    text-decoration: none;
    font-size: 18px;
    transition: var(--transition);
}
.mobile-action-btn.mobile-wa {
    background: #25D366;
    color: var(--white);
}
.mobile-action-btn.mobile-wa:hover {
    background: #128C7E;
}
.mobile-action-btn.mobile-call {
    background: var(--primary);
    color: var(--secondary);
}
.mobile-action-btn.mobile-call:hover {
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .regions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .region-card {
        padding: 20px 12px;
    }
    .region-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    .region-card h3 {
        font-size: 14px;
    }
    .header-capsule {
        width: calc(100% - 20px);
        top: 10px;
    }
    .navbar {
        padding: 0 15px;
        height: 60px;
    }
    .logo {
        font-size: 18px;
    }
    .logo i {
        font-size: 22px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 15px;
        left: 15px;
        background: var(--white);
        flex-direction: column;
        padding: 15px;
        box-shadow: var(--shadow-lg);
        border-radius: 20px;
        margin-top: 10px;
        gap: 0;
    }
    .nav-links.active {
        display: flex;
    }
    .nav-links > li {
        padding: 0;
        border-bottom: 1px solid rgba(0,0,0,0.06);
    }
    .nav-links > li > a,
    .nav-links > li > .drop-link {
        display: block;
        padding: 12px 5px;
        font-size: 15px;
    }
    .nav-links .has-drop > .drop-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .drop-lvl1,
    .drop-lvl2 {
        position: static;
        box-shadow: none;
        border-radius: 0;
        max-height: none;
        overflow-y: visible;
        display: none;
    }
    .drop-lvl1 {
        padding: 0 10px;
        min-width: auto;
        background: none;
    }
    .drop-lvl2 {
        padding: 0 15px;
        min-width: auto;
        background: none;
    }
    .has-drop.open > .drop-lvl1 {
        display: block;
    }
    .has-drop.open > .drop-lvl1 > .has-child.open > .drop-lvl2 {
        display: block;
    }

    .drop-lvl1 > li.has-child {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        border-bottom: 1px solid rgba(0,0,0,0.04);
    }
    .drop-lvl1 > li.has-child > a {
        flex: 1;
        min-width: 0;
        padding: 10px 5px;
    }
    .drop-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        cursor: pointer;
        background: rgba(0,0,0,0.04);
        border-radius: 8px;
        color: var(--gray);
        font-size: 13px;
        transition: var(--transition);
        user-select: none;
    }
    .drop-arrow:hover {
        background: rgba(255, 193, 7, 0.15);
        color: var(--primary-dark);
    }
    .has-child.open > .drop-arrow {
        background: rgba(255, 193, 7, 0.15);
        color: var(--primary-dark);
        transform: rotate(-90deg);
    }
    .has-child > .drop-lvl2 {
        flex-basis: 100%;
        order: 3;
    }

    .drop-lvl1 > li > a {
        font-size: 14px;
        padding: 10px 5px;
    }
    .drop-lvl2 li a {
        font-size: 13px;
        padding: 8px 5px;
        color: var(--gray);
    }
    .mobile-menu-btn {
        display: block;
    }
    .hero-grid {
        gap: 30px;
    }
    .hero-circle-wrap {
        width: 270px;
        height: 270px;
    }
    .hero-circle-img {
        width: 180px;
        height: 180px;
    }
    .hero-circle-img img {
       
    }
    .hero-stats {
        justify-content: center;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .about-img-float {
        display: none;
    }
    .top-bar-wa-inner {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .top-bar-wa-actions {
        width: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    .section {
        padding: 50px 0;
    }
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    .features-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    .feature-card {
        padding: 20px 12px;
    }
    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 22px;
        margin-bottom: 12px;
    }
    .feature-card h3 {
        font-size: 14px;
        margin-bottom: 6px;
    }
    .feature-card p {
        font-size: 12px;
        line-height: 1.5;
    }
}

/* Article page rich-content styling */
.article-body {
    color: var(--dark);
    font-size: 17px;
    line-height: 2.05;
    overflow-wrap: anywhere;
}

.article-body h2 {
    position: relative;
    font-size: clamp(24px, 2.8vw, 32px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.45;
    margin: 44px 0 22px;
    padding: 18px 24px 18px 18px;
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.16), rgba(255, 255, 255, 0.96));
    border-right: 6px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: 0 10px 30px rgba(26, 26, 46, 0.08);
}

.article-body h2:first-child {
    margin-top: 0;
}

.article-body h2::after {
    content: '';
    position: absolute;
    right: 24px;
    bottom: -8px;
    width: 86px;
    height: 4px;
    background: var(--accent);
    border-radius: 20px;
}

.article-body h3 {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(20px, 2.2vw, 25px);
    font-weight: 800;
    color: var(--secondary);
    line-height: 1.5;
    margin: 36px 0 17px;
}

.article-body h3::before {
    content: '';
    flex: 0 0 16px;
    width: 16px;
    height: 16px;
    border: 4px solid var(--primary);
    border-radius: 50%;
    background: var(--white);
    box-shadow: 0 0 0 5px rgba(255, 193, 7, 0.16);
}

.article-body p {
    margin: 0 0 24px;
}

.article-body img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    margin: 20px 0 28px;
    box-shadow: var(--shadow);
}

.article-body ul,
.article-body ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 24px 0 32px;
    padding: 0;
    list-style: none;
}

.article-body ol {
    counter-reset: article-list;
}

.article-body li {
    position: relative;
    min-height: 58px;
    padding: 16px 52px 16px 18px;
    background: var(--white);
    border: 1px solid rgba(26, 26, 46, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.07);
    line-height: 1.8;
}

.article-body ul > li::before,
.article-body ol > li::before {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: var(--primary);
    color: var(--secondary);
    font-weight: 800;
    box-shadow: 0 5px 14px rgba(255, 193, 7, 0.28);
}

.article-body ul > li::before {
    content: '\2713';
    font-size: 14px;
}

.article-body ol > li {
    counter-increment: article-list;
}

.article-body ol > li::before {
    content: counter(article-list);
    font-size: 13px;
}

.article-body li ul,
.article-body li ol {
    display: block;
    margin: 14px 0 0;
    padding-right: 18px;
    list-style: disc;
}

.article-body li li {
    min-height: 0;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.article-body li li::before {
    display: none;
}

.article-body blockquote {
    border-right: 4px solid var(--primary);
    padding: 15px 20px;
    background: var(--light);
    margin: 20px 0;
    border-radius: 0 var(--radius) var(--radius) 0;
}

.article-body a {
    color: var(--primary-dark);
    text-decoration: underline;
}

.article-body table,
.region-content table {
    width: 100%;
    margin: 28px 0 34px;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
    border: 1px solid rgba(26, 26, 46, 0.1);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.08);
    overflow: hidden;
    text-align: right;
}

.article-body table caption,
.region-content table caption {
    padding: 12px 16px;
    color: var(--secondary);
    font-size: 16px;
    font-weight: 800;
    text-align: right;
}

.article-body table th,
.region-content table th {
    padding: 15px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--secondary);
    font-weight: 800;
    line-height: 1.6;
    border-left: 1px solid rgba(26, 26, 46, 0.1);
    border-bottom: 1px solid rgba(26, 26, 46, 0.12);
    vertical-align: middle;
}

.article-body table td,
.region-content table td {
    padding: 14px 18px;
    color: var(--dark);
    line-height: 1.75;
    border-left: 1px solid rgba(26, 26, 46, 0.08);
    border-bottom: 1px solid rgba(26, 26, 46, 0.08);
    vertical-align: middle;
}

.article-body table th:last-child,
.article-body table td:last-child,
.region-content table th:last-child,
.region-content table td:last-child {
    border-left: 0;
}

.article-body table tbody tr:last-child td,
.region-content table tbody tr:last-child td {
    border-bottom: 0;
}

.article-body table tbody tr:nth-child(even),
.region-content table tbody tr:nth-child(even) {
    background: rgba(255, 193, 7, 0.055);
}

.article-body table tbody tr:hover,
.region-content table tbody tr:hover {
    background: rgba(255, 193, 7, 0.11);
}

.article-body table a,
.region-content table a {
    font-weight: 700;
}

.article-faq-section {
    margin-top: 50px;
}

.article-faq-section .section-header {
    margin-bottom: 28px;
}

.article-faq-section .faq-container {
    max-width: 100%;
}

@media (max-width: 768px) {
    .article-body {
        font-size: 16px;
        line-height: 2;
    }

    .article-body h2 {
        padding: 16px 18px;
        margin-top: 34px;
    }

    .article-body ul,
    .article-body ol {
        grid-template-columns: 1fr;
    }

    .article-body table,
    .region-content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }

    .article-body table th,
    .article-body table td,
    .region-content table th,
    .region-content table td {
        padding: 12px 14px;
        font-size: 14px;
    }
}
