/* Modern City Layout Styles */
.modern-city-layout { background: #fdfdfd; color: #334155; }

.breadcrumb-header { background: #f8fafc; padding: 15px 0; border-bottom: 1px solid #e2e8f0; }
.breadcrumb-nav { display: flex; align-items: center; gap: 10px; font-size: 0.85rem; color: #64748b; }
.breadcrumb-nav a { text-decoration: none; color: #64748b; transition: 0.2s; }
.breadcrumb-nav a:hover { color: #c5a059; }
.breadcrumb-nav i { font-size: 0.7rem; opacity: 0.5; }

.city-content-section { padding: 40px 0 80px; }
.layout-grid { display: grid; grid-template-columns: 1fr 340px; gap: 30px; }

.main-content-card { background: white; border-radius: 20px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid #f1f5f9; overflow: hidden; }

.city-hero-box { display: flex; background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%); color: white; padding: 50px; gap: 40px; align-items: center; }
.city-hero-text { flex: 1; }
.region-pill { background: rgba(197, 160, 89, 0.2); color: #c5a059; padding: 4px 12px; border-radius: 50px; font-size: 0.75rem; font-weight: 700; margin-bottom: 15px; display: inline-block; }
.city-hero-text h1 { font-size: 2.2rem; margin-bottom: 15px; line-height: 1.2; color: #ffffff; }
.city-hero-text h1 strong { color: #c5a059; display: block; }
.intro-p { font-size: 1rem; opacity: 0.9; line-height: 1.6; color: #ffffff; }
.city-hero-image { width: 220px; height: 220px; border-radius: 20px; overflow: hidden; border: 4px solid rgba(255,255,255,0.1); flex-shrink: 0; box-shadow: 0 10px 30px rgba(0,0,0,0.3); }
.city-hero-image img { width: 100%; height: 100%; object-fit: cover; }

.content-body { padding: 40px 50px; }

.quick-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 40px; padding-bottom: 30px; border-bottom: 1px solid #f1f5f9; }
.q-stat { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: #1e293b; text-align: center; }
.q-stat i { font-size: 1.5rem; color: #c5a059; }

.article-section h2 { font-size: 1.6rem; margin: 40px 0 20px; color: #0f172a; border-left: 4px solid #c5a059; padding-left: 15px; }
.article-section h3 { font-size: 1.4rem; margin: 30px 0 15px; color: #0f172a; border-left: 4px solid #c5a059; padding-left: 15px; }
.article-section p { line-height: 1.8; margin-bottom: 20px; color: #475569; font-size: 1rem; }

.faq-component { margin-top: 50px; padding-top: 40px; border-top: 1px solid #f1f5f9; }
.faq-list { display: flex; flex-direction: column; gap: 15px; }
.faq-node { background: #f8fafc; padding: 20px; border-radius: 12px; border: 1px solid #f1f5f9; }
.faq-q { font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.faq-a { font-size: 0.95rem; line-height: 1.6; color: #64748b; }

.sticky-sidebar { display: flex; flex-direction: column; gap: 30px; }
.sidebar-widget { background: white; padding: 25px; border-radius: 20px; box-shadow: 0 4px 15px rgba(0,0,0,0.02); border: 1px solid #f1f5f9; }
.sidebar-widget h3 { font-size: 1.1rem; margin-bottom: 20px; color: #0f172a; }

.quote-widget { background: #0f172a; color: white; text-align: center; }
.quote-widget h3 { color: white; }
.quote-widget p { font-size: 0.85rem; opacity: 0.7; margin-bottom: 20px; }
.wa-button { background: #22c55e; color: white; text-decoration: none; padding: 12px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 10px; font-weight: 700; transition: 0.3s; }
.wa-button:hover { background: #16a34a; transform: translateY(-3px); }
.call-center { margin-top: 20px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); }
.call-center span { display: block; font-size: 0.7rem; opacity: 0.5; text-transform: uppercase; }
.call-center strong { font-size: 1.1rem; }

@media (max-width: 1200px) { 
    .layout-grid { grid-template-columns: 1fr; } 
    .sticky-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } 
}

@media (max-width: 768px) { 
    .city-hero-box { flex-direction: column; text-align: center; padding: 40px 25px; gap: 30px; } 
    .city-hero-image { width: 100%; max-width: 320px; height: 320px; margin: 0 auto; }
    .city-hero-text h1 { font-size: 1.75rem; }
    .quick-stats { grid-template-columns: 1fr 1fr; gap: 20px; } 
    .sticky-sidebar { grid-template-columns: 1fr; } 
    .content-body { padding: 30px 20px; } 
}

/* Services Widget Styles */
.services-widget { background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%); }
.services-widget h3 { color: #0f172a; font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #c5a059; }

.service-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.service-list li { margin: 0; }
.service-list li a { display: flex; align-items: center; gap: 12px; padding: 12px 15px; background: white; border-radius: 10px; text-decoration: none; color: #334155; font-size: 0.9rem; font-weight: 500; transition: all 0.3s ease; border: 1px solid #f1f5f9; }
.service-list li a:hover { background: #c5a059; color: white; transform: translateX(5px); box-shadow: 0 4px 12px rgba(197, 160, 89, 0.2); }
.service-list li a i { font-size: 1.1rem; color: #c5a059; transition: color 0.3s ease; min-width: 20px; text-align: center; }
.service-list li a:hover i { color: white; }
.service-list li a span { flex: 1; }

/* Current service highlight */
.service-list li.current a { background: linear-gradient(135deg, #c5a059 0%, #a68541 100%); color: white; font-weight: 700; border-color: #c5a059; box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3); }
.service-list li.current a i { color: white; }
.service-list li.current a:hover { transform: translateX(0); }

@media (max-width: 768px) {
    .service-list li a { font-size: 0.85rem; padding: 10px 12px; }
    .service-list li a i { font-size: 1rem; }
}

/* Districts Widget Styles */
.districts-widget { background: linear-gradient(135deg, #fef3c7 0%, #ffffff 100%); border: 2px solid #fbbf24; }
.districts-widget h3 { color: #0f172a; font-size: 1.1rem; margin-bottom: 20px; padding-bottom: 15px; border-bottom: 2px solid #fbbf24; }

.district-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 6px; max-height: 400px; overflow-y: auto; }
.district-list li { margin: 0; }
.district-list li a { display: flex; align-items: center; gap: 10px; padding: 10px 12px; background: white; border-radius: 8px; text-decoration: none; color: #334155; font-size: 0.85rem; font-weight: 500; transition: all 0.3s ease; border: 1px solid #fef3c7; }
.district-list li a:hover { background: #fbbf24; color: #0f172a; transform: translateX(5px); box-shadow: 0 3px 10px rgba(251, 191, 36, 0.2); }
.district-list li a i { font-size: 0.9rem; color: #fbbf24; transition: color 0.3s ease; min-width: 16px; text-align: center; }
.district-list li a:hover i { color: #0f172a; }
.district-list li a span { flex: 1; }

/* Scrollbar styling for district list */
.district-list::-webkit-scrollbar { width: 6px; }
.district-list::-webkit-scrollbar-track { background: #fef3c7; border-radius: 10px; }
.district-list::-webkit-scrollbar-thumb { background: #fbbf24; border-radius: 10px; }
.district-list::-webkit-scrollbar-thumb:hover { background: #f59e0b; }

@media (max-width: 768px) {
    .district-list { max-height: 300px; }
    .district-list li a { font-size: 0.8rem; padding: 8px 10px; }
    .district-list li a i { font-size: 0.85rem; }
}
