/* =====================================================
   مندوب موبايلي الياف بصرية - Main Stylesheet
   ===================================================== */

:root {
    --primary: #0062b1;
    --primary-dark: #004d8c;
    --primary-light: #0080e0;
    --secondary: #00b4d8;
    --accent: #00c97a;
    --accent-dark: #00a562;
    --white: #ffffff;
    --light: #f0f6ff;
    --light2: #e8f1fb;
    --gray: #6b7a8d;
    --gray-light: #f5f8fc;
    --dark: #0d1b2a;
    --dark2: #1a2d42;
    --text: #2c3e50;
    --border: #d4e4f5;
    --shadow: 0 4px 20px rgba(0,98,177,0.12);
    --shadow-lg: 0 8px 40px rgba(0,98,177,0.18);
    --radius: 12px;
    --radius-lg: 20px;
    --transition: all 0.3s ease;
    --font: 'Tajawal', sans-serif;
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--white);
    direction: rtl;
    line-height: 1.7;
    font-size: 16px;
}
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font); }
input, textarea, select { font-family: var(--font); }

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

/* ============ HEADER ============ */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,98,177,0.1);
    transition: var(--transition);
}
.site-header.scrolled {
    box-shadow: 0 4px 30px rgba(0,98,177,0.2);
}
.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    height: 72px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.logo-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 20px;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-size: 17px; font-weight: 800; color: var(--primary); line-height: 1.2; }
.logo-sub { font-size: 11px; color: var(--gray); }

.main-nav { flex: 1; }
.main-nav ul { display: flex; gap: 4px; list-style: none; justify-content: center; }
.main-nav a {
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark2);
    transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
    background: var(--light);
    color: var(--primary);
}

.header-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.btn-call {
    display: flex; align-items: center; gap: 8px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-call:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-wa {
    display: flex; align-items: center; gap: 6px;
    background: #25d366;
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}
.btn-wa:hover { background: #1fba59; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--primary); border-radius: 2px; transition: var(--transition); }

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #001a3a 0%, #003372 40%, #0062b1 75%, #0096d6 100%);
    display: flex; align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 72px;
}
.hero::before {
    content: '';
    position: absolute; inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-waves {
    position: absolute; bottom: 0; left: 0; right: 0;
}
.hero-content {
    position: relative; z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 0;
}
.hero-text { color: white; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 6px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(5px);
}
.hero-badge i { color: var(--accent); }
.hero h1 {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 20px;
}
.hero h1 span { color: var(--accent); }
.hero p {
    font-size: 18px;
    opacity: 0.88;
    margin-bottom: 36px;
    line-height: 1.8;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-hero-primary {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--accent);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(0,201,122,0.4);
}
.btn-hero-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-hero-secondary {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-hero-secondary:hover { background: rgba(255,255,255,0.25); }

.hero-stats {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-top: 48px;
}
.stat-item { text-align: center; }
.stat-number { font-size: 32px; font-weight: 900; color: var(--accent); }
.stat-label { font-size: 13px; opacity: 0.8; margin-top: 4px; }

.hero-visual {
    display: flex; justify-content: center; align-items: center;
    position: relative;
}
.speed-circle {
    width: 320px; height: 320px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    border: 2px solid rgba(255,255,255,0.15);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}
.speed-circle::before, .speed-circle::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    animation: ripple 3s ease-in-out infinite;
}
.speed-circle::before { width: 380px; height: 380px; animation-delay: 0.5s; }
.speed-circle::after { width: 440px; height: 440px; animation-delay: 1s; }
.speed-number { font-size: 72px; font-weight: 900; color: white; line-height: 1; }
.speed-unit { font-size: 18px; color: var(--accent); font-weight: 700; margin-bottom: 8px; }
.speed-label { font-size: 14px; color: rgba(255,255,255,0.7); }

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,201,122,0.3); }
    50% { box-shadow: 0 0 0 20px rgba(0,201,122,0); }
}
@keyframes ripple {
    0% { opacity: 1; transform: scale(0.9); }
    100% { opacity: 0; transform: scale(1.1); }
}

/* ============ SECTIONS ============ */
.section { padding: 80px 0; }
.section-alt { background: var(--gray-light); }
.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    border: 1px solid var(--border);
}
.section-header h2 {
    font-size: clamp(26px, 3vw, 38px);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 16px;
}
.section-header p { font-size: 17px; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.feature-card::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 4px; height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    transform: scaleY(0);
    transition: var(--transition);
    transform-origin: top;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.feature-card:hover::before { transform: scaleY(1); }
.feature-icon {
    width: 64px; height: 64px;
    background: var(--light);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}
.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
}
.feature-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.feature-card p { color: var(--gray); font-size: 15px; line-height: 1.6; }

/* ============ PACKAGES ============ */
.packages-tabs {
    display: flex; gap: 12px; justify-content: center;
    margin-bottom: 40px; flex-wrap: wrap;
}
.tab-btn {
    padding: 10px 28px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    border: 2px solid var(--border);
    color: var(--gray);
    transition: var(--transition);
    background: white;
}
.tab-btn.active, .tab-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
}
.package-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}
.package-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.popular-badge {
    position: absolute;
    top: 20px; left: 20px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.package-header {
    background: linear-gradient(135deg, var(--primary), #0096d6);
    color: white;
    padding: 32px 28px;
    text-align: center;
}
.popular .package-header {
    background: linear-gradient(135deg, #003d78, var(--primary));
}
.package-name { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.package-speed {
    display: flex; align-items: baseline; justify-content: center; gap: 8px;
    margin-bottom: 4px;
}
.speed-val { font-size: 52px; font-weight: 900; line-height: 1; }
.speed-unit { font-size: 14px; opacity: 0.8; }
.package-type { font-size: 13px; opacity: 0.75; }

.package-body { padding: 28px; }
.package-price {
    text-align: center;
    background: var(--light);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}
.price-monthly .amount { font-size: 36px; font-weight: 900; color: var(--primary); }
.price-monthly .currency { font-size: 14px; color: var(--gray); }
.price-annual { font-size: 13px; color: var(--gray); margin-top: 4px; }

.package-features { margin-bottom: 24px; }
.package-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 14px;
    color: var(--text);
}
.package-features li:last-child { border-bottom: none; }
.package-features li i { color: var(--accent); font-size: 13px; flex-shrink: 0; }

.btn-package {
    display: block; width: 100%;
    text-align: center;
    background: var(--primary);
    color: white;
    padding: 14px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-package:hover { background: var(--primary-dark); transform: translateY(-2px); }
.popular .btn-package {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: var(--dark);
    box-shadow: 0 4px 20px rgba(0,201,122,0.35);
}

/* ============ FORM ============ */
.contact-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}
.contact-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,98,177,0.3) 0%, transparent 60%);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative; z-index: 1;
}
.contact-info h2 { font-size: 36px; font-weight: 900; color: white; margin-bottom: 20px; }
.contact-info p { color: rgba(255,255,255,0.75); font-size: 17px; margin-bottom: 32px; }
.contact-features li {
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 16px;
    font-size: 15px;
}
.contact-features li i { color: var(--accent); font-size: 16px; }

.form-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.form-card h3 {
    font-size: 22px; font-weight: 800;
    color: var(--dark); margin-bottom: 24px;
    text-align: center;
}
.form-group { margin-bottom: 18px; }
.form-group label {
    display: block;
    font-size: 14px; font-weight: 600;
    color: var(--dark); margin-bottom: 8px;
}
.form-group label span { color: #e74c3c; }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 10px;
    font-size: 15px;
    color: var(--text);
    background: var(--gray-light);
    transition: var(--transition);
    direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: white;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0,98,177,0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.btn-submit {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #25d366, #1fba59);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font);
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
.form-note { font-size: 12px; color: var(--gray); text-align: center; margin-top: 12px; }

/* ============ FAQ ============ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    user-select: none;
}
.faq-question i {
    color: var(--primary);
    transition: var(--transition);
    flex-shrink: 0;
    margin-right: 12px;
}
.faq-item.open .faq-question i { transform: rotate(180deg); }
.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    color: var(--gray);
    font-size: 15px;
    line-height: 1.7;
}
.faq-item.open .faq-answer {
    max-height: 400px;
    padding: 0 24px 20px;
}

/* ============ REVIEWS ============ */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}
.review-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-stars { color: #f39c12; font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: 15px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 18px; font-weight: 700;
    flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 15px; color: var(--dark); }
.reviewer-city { font-size: 13px; color: var(--gray); }
.quote-icon {
    position: absolute; top: 20px; left: 20px;
    font-size: 40px; color: var(--border);
    line-height: 1;
}

/* ============ BLOG ============ */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}
.article-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    display: flex; flex-direction: column;
}
.article-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.article-thumb {
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex; align-items: center; justify-content: center;
    position: relative;
    overflow: hidden;
}
.article-thumb-icon { font-size: 64px; color: rgba(255,255,255,0.2); }
.article-category {
    position: absolute; bottom: 16px; right: 16px;
    background: rgba(255,255,255,0.9);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}
.article-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.article-title {
    font-size: 17px; font-weight: 700;
    color: var(--dark); margin-bottom: 10px;
    line-height: 1.5;
}
.article-title a:hover { color: var(--primary); }
.article-excerpt { color: var(--gray); font-size: 14px; line-height: 1.6; flex: 1; margin-bottom: 16px; }
.article-meta {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 12px; color: var(--gray);
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.article-meta i { margin-left: 4px; }
.read-more { color: var(--primary); font-weight: 600; font-size: 13px; }
.read-more:hover { text-decoration: underline; }

/* ============ SINGLE ARTICLE ============ */
.article-hero {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    padding: 120px 0 60px;
    color: white;
    text-align: center;
}
.article-hero h1 { font-size: clamp(24px, 3vw, 40px); font-weight: 900; margin-bottom: 16px; }
.article-meta-bar {
    display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
    opacity: 0.8; font-size: 14px;
}
.article-content-wrapper {
    display: grid; grid-template-columns: 1fr 320px; gap: 40px;
    padding: 60px 0;
}
.article-content {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid var(--border);
}
.article-content h2 { font-size: 24px; font-weight: 800; color: var(--dark); margin: 30px 0 16px; }
.article-content h3 { font-size: 20px; font-weight: 700; color: var(--dark); margin: 24px 0 12px; }
.article-content p { margin-bottom: 16px; line-height: 1.8; color: var(--text); }
.article-content ul, .article-content ol { margin: 16px 0 16px 24px; }
.article-content li { margin-bottom: 8px; line-height: 1.7; }
.article-content strong { color: var(--dark); font-weight: 700; }
.article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.article-content th { background: var(--primary); color: white; padding: 12px; font-weight: 700; }
.article-content td { padding: 10px 12px; border-bottom: 1px solid var(--border); }
.article-content tr:nth-child(even) td { background: var(--light); }

.article-sidebar { }
.sidebar-widget {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 24px;
}
.sidebar-widget h4 {
    font-size: 16px; font-weight: 800;
    color: var(--dark); margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
}
.sidebar-cta {
    background: linear-gradient(135deg, var(--primary), #0096d6);
    color: white;
    border-color: transparent;
}
.sidebar-cta h4 { color: white; border-color: rgba(255,255,255,0.3); }
.sidebar-cta p { font-size: 14px; opacity: 0.85; margin-bottom: 16px; }
.btn-sidebar { display: block; text-align: center; background: var(--accent); color: var(--dark); padding: 12px; border-radius: 10px; font-weight: 700; font-size: 14px; }
.btn-sidebar:hover { background: var(--accent-dark); }

/* ============ CITIES GRID ============ */
.cities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 16px;
}
.city-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 16px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
}
.city-card:hover { border-color: var(--primary); background: var(--light); transform: translateY(-2px); }
.city-card i { font-size: 24px; color: var(--primary); margin-bottom: 8px; display: block; }
.city-card span { font-size: 14px; font-weight: 600; color: var(--dark); }

/* ============ CTA BANNER ============ */
.cta-banner {
    background: linear-gradient(135deg, var(--accent-dark), var(--accent));
    padding: 60px 0;
    text-align: center;
}
.cta-banner h2 { font-size: 32px; font-weight: 900; color: var(--dark); margin-bottom: 16px; }
.cta-banner p { font-size: 17px; color: rgba(0,0,0,0.7); margin-bottom: 32px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-cta-dark {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--dark);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-cta-dark:hover { background: var(--dark2); transform: translateY(-2px); }
.btn-cta-wa {
    display: inline-flex; align-items: center; gap: 10px;
    background: #25d366;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    transition: var(--transition);
}
.btn-cta-wa:hover { background: #1fba59; transform: translateY(-2px); }

/* ============ PAGE HERO ============ */
.page-hero {
    background: linear-gradient(135deg, var(--dark), var(--primary));
    padding: 120px 0 60px;
    text-align: center;
    color: white;
}
.page-hero h1 { font-size: clamp(28px, 3vw, 44px); font-weight: 900; margin-bottom: 16px; }
.page-hero p { font-size: 17px; opacity: 0.85; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb {
    display: flex; gap: 10px; justify-content: center;
    font-size: 14px; opacity: 0.7;
    flex-wrap: wrap;
}
.breadcrumb a:hover { opacity: 1; }
.breadcrumb span { opacity: 0.5; }

/* ============ FOOTER ============ */
.site-footer { background: var(--dark); }
.footer-top { padding: 60px 0; }
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
}
.footer-about .footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-about .logo-main { color: white; }
.footer-about .logo-sub { color: rgba(255,255,255,0.5); }
.footer-about p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; }

.footer-col h4 { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { color: rgba(255,255,255,0.6); font-size: 14px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul a:hover { color: var(--accent); }
.footer-col ul a i { font-size: 10px; }
.cities-list { display: flex; flex-wrap: wrap; gap: 8px; }
.cities-list a { display: inline-block !important; padding: 4px 10px; background: rgba(255,255,255,0.07); border-radius: 20px; font-size: 13px !important; }

.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-item i { color: var(--accent); font-size: 18px; margin-top: 2px; }
.contact-item span, .contact-item a { display: block; font-size: 13px; }
.contact-item span:first-child { color: rgba(255,255,255,0.5); }
.contact-item a { color: white; font-weight: 600; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 20px 0;
}
.footer-bottom-inner {
    display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-bottom p { color: rgba(255,255,255,0.5); font-size: 13px; }
.disclaimer { font-size: 12px !important; }

/* ============ FLOATING ELEMENTS ============ */
.wa-float {
    position: fixed; bottom: 30px; left: 30px;
    width: 58px; height: 58px;
    background: #25d366;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 28px;
    box-shadow: 0 4px 20px rgba(37,211,102,0.5);
    z-index: 999;
    transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); background: #1fba59; }
.wa-tooltip {
    position: absolute; right: calc(100% + 12px);
    background: var(--dark);
    color: white;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 13px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

.back-to-top {
    position: fixed; bottom: 100px; left: 30px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-2px); }

/* ============ ADMIN ============ */
.admin-body { background: #f0f2f5; font-family: var(--font); }
.admin-login {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--dark), var(--primary));
    display: flex; align-items: center; justify-content: center;
}
.login-card {
    background: white;
    border-radius: 20px;
    padding: 48px;
    width: 100%; max-width: 420px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.login-card h2 { text-align: center; font-size: 24px; font-weight: 800; color: var(--dark); margin-bottom: 32px; }
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
    width: 260px; background: var(--dark);
    padding: 24px 0;
    position: fixed; top: 0; right: 0; bottom: 0;
    overflow-y: auto;
    z-index: 100;
}
.admin-logo { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.admin-logo span { color: white; font-size: 18px; font-weight: 800; display: block; }
.admin-logo small { color: rgba(255,255,255,0.5); font-size: 12px; }
.admin-nav a {
    display: flex; align-items: center; gap: 12px;
    padding: 12px 24px;
    color: rgba(255,255,255,0.65);
    font-size: 14px; font-weight: 500;
    transition: var(--transition);
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.08); color: white; }
.admin-nav a i { width: 18px; }

.admin-main { margin-right: 260px; padding: 24px; flex: 1; }
.admin-topbar {
    background: white;
    border-radius: var(--radius);
    padding: 16px 24px;
    display: flex; justify-content: space-between; align-items: center;
    margin-bottom: 24px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.admin-topbar h1 { font-size: 20px; font-weight: 800; color: var(--dark); }

.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; margin-bottom: 28px; }
.stat-card {
    background: white;
    border-radius: var(--radius);
    padding: 24px;
    display: flex; align-items: center; gap: 16px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.stat-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; }
.stat-icon.blue { background: var(--light); color: var(--primary); }
.stat-icon.green { background: #e8fff4; color: var(--accent); }
.stat-icon.orange { background: #fff4e5; color: #f39c12; }
.stat-icon.red { background: #fff0f0; color: #e74c3c; }
.stat-val { font-size: 28px; font-weight: 900; color: var(--dark); }
.stat-lbl { font-size: 13px; color: var(--gray); }

.admin-card {
    background: white;
    border-radius: var(--radius);
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    overflow: hidden;
    margin-bottom: 24px;
}
.admin-card-header {
    padding: 16px 24px;
    border-bottom: 1px solid var(--border);
    display: flex; justify-content: space-between; align-items: center;
}
.admin-card-header h3 { font-size: 16px; font-weight: 700; }
.admin-card-body { padding: 24px; }

.data-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.data-table th { background: var(--gray-light); padding: 12px 16px; text-align: right; font-weight: 700; color: var(--dark); font-size: 13px; }
.data-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: var(--light); }

.badge { display: inline-block; padding: 3px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-green { background: #e8fff4; color: var(--accent-dark); }
.badge-red { background: #fff0f0; color: #e74c3c; }
.badge-blue { background: var(--light); color: var(--primary); }

.btn-sm { padding: 6px 14px; border-radius: 8px; font-size: 13px; font-weight: 600; transition: var(--transition); display: inline-flex; align-items: center; gap: 6px; }
.btn-primary-sm { background: var(--primary); color: white; }
.btn-danger-sm { background: #fff0f0; color: #e74c3c; }
.btn-success-sm { background: #e8fff4; color: var(--accent-dark); }
.btn-primary-sm:hover { background: var(--primary-dark); }
.btn-danger-sm:hover { background: #e74c3c; color: white; }

/* ============ PAGINATION ============ */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 40px; flex-wrap: wrap; }
.pagination a, .pagination span {
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px;
    font-size: 14px; font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--transition);
}
.pagination a:hover { background: var(--light); border-color: var(--primary); color: var(--primary); }
.pagination .current { background: var(--primary); color: white; border-color: var(--primary); }

/* ============ ALERTS ============ */
.alert { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 14px; font-weight: 500; }
.alert-success { background: #e8fff4; color: var(--accent-dark); border: 1px solid #b7f0d4; }
.alert-error { background: #fff0f0; color: #e74c3c; border: 1px solid #ffd0d0; }

/* ============ 404 ============ */
.error-page { text-align: center; padding: 120px 20px; }
.error-page h1 { font-size: 120px; font-weight: 900; color: var(--primary); opacity: 0.2; line-height: 1; }
.error-page h2 { font-size: 28px; font-weight: 800; margin-bottom: 16px; }
.error-page p { color: var(--gray); margin-bottom: 32px; }

/* ============ RESPONSIVE ============ */
.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 999; }

@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .article-content-wrapper { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .main-nav { display: none; position: fixed; top: 72px; right: -100%; bottom: 0; width: 280px; background: white; z-index: 1000; transition: right 0.3s ease; padding: 20px; overflow-y: auto; }
    .main-nav.open { right: 0; }
    .main-nav ul { flex-direction: column; gap: 4px; }
    .main-nav a { font-size: 16px; padding: 12px 16px; }
    .hamburger { display: flex; }
    .nav-overlay.active { display: block; }

    .hero-content { grid-template-columns: 1fr; gap: 40px; }
    .hero-visual { display: none; }
    .hero { min-height: auto; padding: 40px 0; }

    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }

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

    .hide-mobile { display: none; }
    .btn-call span { display: none; }

    .admin-sidebar { right: -260px; transition: right 0.3s ease; }
    .admin-sidebar.open { right: 0; }
    .admin-main { margin-right: 0; }

    .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .stat-number { font-size: 24px; }
}

@media (max-width: 480px) {
    .packages-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; }
    .hero-actions a { text-align: center; justify-content: center; }
    .cta-actions { flex-direction: column; align-items: center; }
}

/* ============ ANIMATIONS ============ */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* Scroll progress */
.scroll-progress {
    position: fixed; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to left, var(--accent), var(--primary));
    z-index: 9999;
    transform-origin: right;
    transform: scaleX(0);
}
