/*
Theme Name: Emdad Diamond V10
Author: Reza RAEISI
Version: 10.0.0
*/

/* --- CUSTOM FONT LOADING --- */
@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --primary: #fbbf24;
    --primary-dark: #f59e0b;
    --dark: #1e293b;
    --darker: #0f172a;
    --bg: #f8fafc;
    --text: #334155;
    --text-light: #64748b;
    --radius: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { 
    font-family: 'Vazirmatn', 'Yekan', sans-serif; 
    background-color: var(--bg); 
    color: var(--text); 
    direction: rtl; 
    line-height: 1.8; 
    overflow-x: hidden; 
}
a { text-decoration: none; color: inherit; transition: 0.3s; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Fallback Font CDN */
@import url('https://cdn.jsdelivr.net/gh/rastikerdar/vazirmatn@v33.003/Vazirmatn-font-face.css');

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

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header { background: #fff; box-shadow: var(--shadow); position: sticky; top: 0; z-index: 1000; padding: 15px 0; }
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-text { font-size: 1.5rem; font-weight: 900; color: var(--dark); }
.logo-badge { background: var(--primary); color: #000; font-size: 0.7rem; font-weight: 800; padding: 3px 10px; border-radius: 5px; white-space: nowrap; }

/* Desktop Nav */
.desktop-nav { display: flex; gap: 20px; align-items: center; }
.nav-link { font-weight: 600; color: var(--text-light); }
.nav-link:hover { color: var(--dark); }
.nav-blog { color: var(--primary-dark) !important; }
.btn-cta { background: var(--primary); color: #000; padding: 10px 25px; border-radius: 50px; font-weight: bold; box-shadow: 0 4px 10px rgba(251, 191, 36, 0.4); display: inline-block; }
.btn-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 15px rgba(251, 191, 36, 0.5); color: #000; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > .nav-link { cursor: pointer; }
.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    min-width: 220px;
    box-shadow: var(--shadow-lg);
    border-radius: 10px;
    padding: 10px 0;
    z-index: 100;
    border: 1px solid #e2e8f0;
}
.nav-dropdown:hover .dropdown-content { display: block; }
.dropdown-content a {
    display: block;
    padding: 10px 20px;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 500;
}
.dropdown-content a:hover { background: #f1f5f9; color: var(--dark); }

/* Menu Toggle */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.menu-toggle span { display: block; width: 25px; height: 3px; background: var(--dark); border-radius: 3px; transition: all 0.3s ease; }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* Mobile Nav */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    box-shadow: -5px 0 25px rgba(0,0,0,0.15);
    overflow-y: auto;
    padding-top: 60px;
}
header.nav-open .mobile-nav { display: block; }
header.nav-open::before {
    content: '';
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.4);
    z-index: 1000;
}
.mobile-nav-link {
    display: block;
    padding: 14px 20px;
    border-bottom: 1px solid #f1f5f9;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}
.mobile-nav-link:hover { color: var(--primary-dark); }

/* Mobile Dropdown */
.mobile-dropdown { border-bottom: 1px solid #f1f5f9; }
.mobile-dropdown-toggle {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    cursor: pointer;
    text-align: right;
    font-family: inherit;
}
.mobile-dropdown-toggle::after { content: '▾'; float: left; transition: transform 0.3s; }
.mobile-dropdown.open .mobile-dropdown-toggle::after { transform: rotate(180deg); }
.mobile-dropdown-content {
    display: none;
    background: #f8fafc;
    padding: 5px 15px 10px;
}
.mobile-dropdown.open .mobile-dropdown-content { display: block; }
.mobile-dropdown-content a {
    display: block;
    padding: 10px 10px;
    color: var(--text);
    font-size: 0.9rem;
    border-bottom: 1px solid #e2e8f0;
}
.mobile-dropdown-content a:last-child { border-bottom: none; }
.mobile-dropdown-content a:hover { color: var(--primary-dark); }

.btn-call-full {
    display: block;
    background: var(--primary);
    color: #000;
    text-align: center;
    padding: 14px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.05rem;
    margin: 20px 20px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}
.btn-call-full:hover { background: #f59e0b; }

/* ============================================================
   HERO
   ============================================================ */
.hero { 
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 60%, #334155 100%);
    color: #fff; text-align: center; padding: 100px 0 140px;
    position: relative;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 1; }
.hero-badge {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    border: 1px solid rgba(251, 191, 36, 0.3);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.hero h1 { font-size: 3rem; font-weight: 900; margin-bottom: 20px; line-height: 1.3; }
.hero h1 span { color: var(--primary); }
.hero-subtitle { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 25px; max-width: 700px; margin-left: auto; margin-right: auto; line-height: 1.8; }
.hero-trust { display: flex; justify-content: center; gap: 20px; margin-bottom: 35px; flex-wrap: wrap; }
.hero-trust span { font-size: 0.9rem; color: #94a3b8; }
.hero-btns { display: flex; gap: 15px; justify-content: center; flex-wrap: wrap; }
.btn-hero { background: var(--primary); color: #000; padding: 15px 40px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; }
.btn-hero:hover { transform: translateY(-3px); box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4); color: #000; }
.btn-outline { border: 2px solid rgba(255,255,255,0.3); color: #fff; padding: 13px 38px; border-radius: 50px; font-weight: bold; font-size: 1.1rem; }
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; }

/* ============================================================
   STATS
   ============================================================ */
.stats-bar { background: #fff; padding: 40px 0; border-bottom: 1px solid #e2e8f0; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 30px; text-align: center; }
.stat-item h3 { font-size: 2.5rem; color: var(--primary); font-weight: 900; }

/* ============================================================
   SECTIONS
   ============================================================ */
.grid-section { padding: 80px 0; }
.sec-title { text-align: center; margin-bottom: 50px; font-size: 2rem; color: var(--dark); font-weight: 800; }
.sec-subtitle { text-align: center; color: var(--text-light); font-size: 1.1rem; margin-top: -35px; margin-bottom: 50px; }

/* ============================================================
   CITIES SECTION (Homepage)
   ============================================================ */
.cities-section { padding: 80px 0; background: #fff; }
.cities-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.city-card {
    background: linear-gradient(135deg, #f8fafc 0%, #fff 100%);
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.3s ease;
}
.city-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.15);
    transform: translateY(-5px);
}
.city-card-icon { font-size: 3rem; margin-bottom: 15px; }
.city-card h3 { font-size: 1.4rem; color: var(--dark); margin-bottom: 10px; }
.city-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 20px; }
.city-card-link { color: var(--primary-dark); font-weight: bold; font-size: 1rem; }

/* ============================================================
   SERVICES OVERVIEW (Homepage)
   ============================================================ */
.services-overview { padding: 80px 0; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.service-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.service-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.service-icon { font-size: 2.5rem; margin-bottom: 15px; }
.service-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 8px; }
.service-card p { font-size: 0.9rem; color: var(--text-light); }

/* ============================================================
   POPULAR SERVICES (Homepage)
   ============================================================ */
.popular-services { padding: 80px 0; background: #fff; }
.popular-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 12px; }
.popular-item {
    display: block;
    background: var(--bg);
    padding: 14px 18px;
    border-radius: 10px;
    font-size: 0.95rem;
    color: var(--text);
    font-weight: 500;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}
.popular-item:hover {
    border-color: var(--primary);
    background: #fff;
    color: var(--dark);
    transform: translateX(-3px);
}

/* ============================================================
   CTA SECTION (Homepage)
   ============================================================ */
.cta-section {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.cta-section h2 { font-size: 2rem; color: var(--primary); margin-bottom: 15px; }
.cta-section p { font-size: 1.1rem; color: #cbd5e1; margin-bottom: 30px; }
.cta-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: #000;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.3rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
    transition: all 0.3s ease;
}
.cta-hero-btn:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5); color: #000; }

/* Pulse animation */
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(251, 191, 36, 0); }
    100% { box-shadow: 0 0 0 0 rgba(251, 191, 36, 0); }
}
.pulse-animation { animation: pulse 2s infinite; }

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why-us { padding: 80px 0; background: #fff; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.why-card {
    background: var(--bg);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}
.why-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.why-icon { font-size: 2.5rem; margin-bottom: 15px; }
.why-card h3 { font-size: 1.2rem; color: var(--dark); margin-bottom: 10px; }
.why-card p { color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section { padding: 80px 0; }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}
.blog-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.blog-card-thumb {
    height: 180px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}
.blog-card-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }
.blog-cat {
    display: inline-block;
    background: rgba(251, 191, 36, 0.1);
    color: var(--primary-dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
    width: fit-content;
}
.blog-card h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 10px; line-height: 1.5; }
.blog-card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; flex: 1; }
.blog-read-more { color: var(--primary-dark); font-weight: bold; font-size: 0.9rem; margin-top: 15px; }

/* CTA Subtext */
.cta-subtext { font-size: 0.9rem; color: #94a3b8; margin-top: 15px; }

/* Blog Article Page */
.blog-article-header { padding: 40px 0 50px; }
.blog-article-header .blog-article-cat {
    display: inline-block;
    background: var(--primary);
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 50px;
    margin-bottom: 15px;
}
.blog-article-header h1 { font-size: 2rem; margin-bottom: 15px; line-height: 1.5; }
.blog-article-header p { color: #94a3b8; font-size: 1rem; max-width: 700px; margin: 0 auto; }

.blog-article-content {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin-bottom: 40px;
}
.blog-article-content h2 { font-size: 1.5rem; color: var(--dark); margin: 30px 0 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.blog-article-content h3 { font-size: 1.2rem; color: var(--dark); margin: 25px 0 10px; }
.blog-article-content p { margin-bottom: 15px; line-height: 1.9; font-size: 1.05rem; }
.blog-article-content ul { margin: 15px 0; padding-right: 25px; }
.blog-article-content ul li { margin-bottom: 8px; line-height: 1.7; }
.blog-article-content strong { color: var(--dark); }

/* Blog Article Image Placeholders */
.blog-article-image {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #fff;
    font-weight: 700;
}
.blog-article-image-1 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.blog-article-image-2 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.blog-article-image-3 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.blog-article-image-4 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.blog-article-image-5 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.blog-article-image-6 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

/* Blog Card Image Placeholders */
.blog-card-thumb {
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #fff;
}
.blog-thumb-0 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.blog-thumb-1 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%); }
.blog-thumb-4 { background: linear-gradient(135deg, #fa709a 0%, #fee140 100%); }
.blog-thumb-5 { background: linear-gradient(135deg, #a18cd1 0%, #fbc2eb 100%); }

/* Blog Article CTA */
.blog-article-cta {
    background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}
.blog-article-cta h3 { font-size: 1.5rem; color: var(--primary); margin-bottom: 10px; }
.blog-article-cta p { color: #cbd5e1; margin-bottom: 25px; }

/* Related Articles */
.blog-other-articles { margin-bottom: 40px; }
.blog-other-articles h3 { font-size: 1.5rem; color: var(--dark); margin-bottom: 25px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.related-articles-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.related-article-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s;
}
.related-article-card:hover { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.related-article-card h4 { font-size: 1rem; color: var(--dark); margin-top: 10px; line-height: 1.5; }

/* ============================================================
   SERVICES GRID (Cards)
   ============================================================ */
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 30px; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: 0.3s; }
.card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.card-img { height: 180px; width: 100%; object-fit: cover; }
.card-body { padding: 25px; }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark); }
.card-link { color: #d97706; font-weight: bold; display: block; margin-top: 15px; }

/* ============================================================
   SINGLE PAGE
   ============================================================ */
.page-header { background: linear-gradient(135deg, var(--darker) 0%, var(--dark) 100%); padding: 60px 0; color: #fff; text-align: center; margin-bottom: 60px; }
.page-header h1 { font-size: 2.2rem; margin-bottom: 10px; }
.page-header p { color: #cbd5e1; font-size: 1.1rem; }
.content-wrapper { display: grid; grid-template-columns: 2fr 1fr; gap: 40px; margin-bottom: 80px; }
.page-content { background: #fff; padding: 40px; border-radius: var(--radius); border: 1px solid #e2e8f0; }
.page-content h2 { font-size: 1.5rem; color: var(--dark); margin: 30px 0 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.page-content h3 { font-size: 1.2rem; color: var(--dark); margin: 25px 0 10px; }
.page-content p { margin-bottom: 15px; line-height: 1.9; }
.page-content ul { margin: 15px 0; padding-right: 25px; }
.page-content ul li { margin-bottom: 8px; line-height: 1.7; }
.page-content strong { color: var(--dark); }
.sidebar-box { background: #fff; padding: 25px; border-radius: var(--radius); border: 1px solid #e2e8f0; margin-bottom: 20px; }
.sidebar-box h3 { font-size: 1.1rem; color: var(--dark); margin-bottom: 15px; padding-bottom: 10px; border-bottom: 2px solid var(--primary); }
.sidebar-cta { text-align: center; background: linear-gradient(135deg, #f8fafc 0%, #fff 100%); }
.sidebar-services ul, .sidebar-links { list-style: none; padding: 0; }
.sidebar-links li { border-bottom: 1px solid #f1f5f9; padding: 10px 0; }
.sidebar-links li:last-child { border-bottom: none; }
.sidebar-links li a { color: var(--text); font-size: 0.95rem; transition: all 0.2s; }
.sidebar-links li a:hover { color: var(--primary-dark); padding-right: 8px; }

/* ============================================================
   ALL CITIES PAGE
   ============================================================ */
.city-hub-preview {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 40px;
    border: 1px solid #e2e8f0;
}
.city-hub-preview h2 {
    font-size: 1.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}
.city-hub-preview h2 a:hover { color: var(--primary-dark); }
.city-services-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 25px;
}
.cat-group h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 12px;
}
.cat-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.cat-links a {
    display: inline-block;
    background: var(--bg);
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
}
.cat-links a:hover {
    border-color: var(--primary);
    background: #fff;
    color: var(--dark);
}

/* ============================================================
   ALL SERVICES PAGE
   ============================================================ */
.services-by-city { margin-bottom: 60px; }
.services-by-city h2 {
    font-size: 1.6rem;
    color: var(--dark);
    margin-bottom: 25px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--primary);
    display: inline-block;
}
.services-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}
.service-category-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    border: 1px solid #e2e8f0;
}
.service-category-card h3 {
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}
.service-category-card ul li {
    padding: 8px 0;
    border-bottom: 1px solid #f8fafc;
}
.service-category-card ul li:last-child { border-bottom: none; }
.service-category-card ul li a {
    color: var(--text);
    font-size: 0.95rem;
    display: block;
    padding: 5px 0;
    transition: all 0.2s ease;
}
.service-category-card ul li a:hover {
    color: var(--primary-dark);
    padding-right: 10px;
}

/* ============================================================
   CITIES PAGE (old)
   ============================================================ */
.cities-grid-page { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 15px; }
.city-btn { display: block; background: #fff; text-align: center; padding: 15px; border-radius: 8px; border: 1px solid #e2e8f0; font-weight: bold; }
.city-btn:hover { background: var(--primary); color: #000; border-color: var(--primary); }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: #0f172a; color: #94a3b8; padding: 0 0 30px; }
.trust-strip {
    background: #1e293b;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    border-bottom: 1px solid #334155;
}
.trust-item {
    font-size: 0.85rem;
    color: #cbd5e1;
    white-space: nowrap;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-top: 60px; }
footer h4 { color: #fff; margin-bottom: 20px; font-size: 1.1rem; }
footer ul li { margin-bottom: 8px; }
footer ul li a { color: #94a3b8; transition: color 0.2s ease; }
footer ul li a:hover { color: var(--primary); }
.footer-about p { font-size: 0.95rem; line-height: 1.8; margin-bottom: 15px; }
.footer-cta-btn {
    display: inline-block;
    background: var(--primary);
    color: #000;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    margin-top: 10px;
}
.footer-cta-btn:hover { background: #fff; color: #000; }
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #1e293b;
    font-size: 0.85rem;
}
.footer-credit { margin-top: 10px; }
.footer-credit a { color: #3b82f6; font-weight: 600; transition: color 0.2s; }
.footer-credit a:hover { color: #60a5fa; }
.blue-heart { color: #3b82f6; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
    .content-wrapper { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
    .desktop-nav { gap: 15px; }
}
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .menu-toggle { display: flex; }
    
    /* Hero */
    .hero { padding: 50px 0 80px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 15px; margin-bottom: 15px; }
    .hero h1 { font-size: 1.6rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-trust { gap: 10px; margin-bottom: 25px; }
    .hero-trust span { font-size: 0.75rem; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .btn-hero, .btn-outline { width: 100%; text-align: center; font-size: 1rem; padding: 12px 25px; }

    /* Sections */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item h3 { font-size: 1.3rem; }
    .stat-item p { font-size: 0.8rem; }
    .cities-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .popular-grid { grid-template-columns: 1fr; }
    .sec-title { font-size: 1.3rem; margin-bottom: 30px; }
    .sec-subtitle { font-size: 0.9rem; margin-top: -20px; margin-bottom: 30px; }
    .cta-hero-btn { font-size: 1rem; padding: 12px 25px; }
    .city-services-preview { grid-template-columns: 1fr; }
    .services-category-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-strip { gap: 12px; padding: 15px 0; }
    .trust-item { font-size: 0.7rem; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-us, .blog-section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
}
@media (max-width: 768px) {
    /* Header Mobile */
    .top-bar { padding: 8px 0; font-size: 0.75rem; }
    .top-bar-inner { justify-content: center; gap: 10px; }
    .top-bar span { white-space: nowrap; }
    .header-main { padding: 14px 15px; }
    .logo-icon { font-size: 1.6rem; }
    .logo-title { font-size: 1.1rem; }
    .logo-badge { font-size: 0.6rem; padding: 2px 8px; }
    .btn-call { width: 44px; height: 44px; }
    .menu-toggle { padding: 8px; }
    .menu-toggle span { width: 22px; }
    .header-actions { display: flex; }
    .btn-cta-desktop { display: none !important; }
    .btn-cta-mobile { display: inline-flex; padding: 8px 14px; font-size: 1rem; }
    .hamburger { display: flex; }

    /* Mobile Nav Overlay */
    .nav {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 280px;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        padding: 70px 20px 30px;
        gap: 0;
        box-shadow: -5px 0 20px rgba(0,0,0,0.15);
        z-index: 999;
        overflow-y: auto;
        align-items: stretch;
    }
    header.menu-open .nav { display: flex; }
    header.menu-open .hamburger span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
    header.menu-open .hamburger span:nth-child(2) { opacity: 0; }
    header.menu-open .hamburger span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }
    
    /* Mobile Overlay */
    header.menu-open::after {
        content: '';
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: 998;
    }
    
    .nav-link {
        padding: 14px 0;
        border-bottom: 1px solid #f1f5f9;
        font-size: 1rem;
        white-space: normal;
    }
    .nav-dropdown { width: 100%; }
    .nav-dropdown > .nav-link { display: block; }
    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 15px;
        background: #f8fafc;
        border-radius: 8px;
        margin: 5px 0;
    }
    .dropdown-content a {
        padding: 12px 15px;
        border-bottom: 1px solid #e2e8f0;
    }
    .nav .btn-cta-mobile-nav {
        margin-top: 20px;
        text-align: center;
        display: block !important;
        font-size: 1rem;
    }
    .nav .btn-cta-desktop { display: none !important; }

    /* Hero */
    .hero { padding: 50px 0 80px; }
    .hero-badge { font-size: 0.7rem; padding: 6px 15px; margin-bottom: 15px; }
    .hero h1 { font-size: 1.6rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 0.9rem; margin-bottom: 20px; }
    .hero-trust { gap: 10px; margin-bottom: 25px; }
    .hero-trust span { font-size: 0.75rem; }
    .hero-btns { flex-direction: column; align-items: center; width: 100%; }
    .btn-hero, .btn-outline { width: 100%; text-align: center; font-size: 1rem; padding: 12px 25px; }

    /* Sections */
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item h3 { font-size: 1.3rem; }
    .stat-item p { font-size: 0.8rem; }
    .cities-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .popular-grid { grid-template-columns: 1fr; }
    .sec-title { font-size: 1.3rem; margin-bottom: 30px; }
    .sec-subtitle { font-size: 0.9rem; margin-top: -20px; margin-bottom: 30px; }
    .cta-hero-btn { font-size: 1rem; padding: 12px 25px; }
    .city-services-preview { grid-template-columns: 1fr; }
    .services-category-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    .trust-strip { gap: 12px; padding: 15px 0; }
    .trust-item { font-size: 0.7rem; }
    .why-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-us, .blog-section { padding: 50px 0; }
}
@media (max-width: 480px) {
    .top-bar-inner { flex-direction: column; gap: 3px; text-align: center; }
    .header-main { padding: 12px 12px; }
    .logo-icon { font-size: 1.4rem; }
    .logo-title { font-size: 1rem; }
    .logo-badge { font-size: 0.55rem; padding: 2px 6px; }
    .hero h1 { font-size: 1.5rem; }
    .services-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .container { padding: 0 15px; }
}
