
:root {
  --primary: #1a56db;
  --primary-dark: #1240a0;
  --accent: #22c55e;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --card-shadow: 0 2px 12px rgba(0,0,0,0.08);
  --radius: 12px;
  --radius-sm: 8px;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.6; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 8px rgba(0,0,0,0.06); }
.header-inner { display: flex; align-items: center; gap: 20px; height: 60px; }
.logo { display: flex; align-items: center; gap: 8px; font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: var(--text); }
.logo:hover { text-decoration: none; }
.logo-icon { font-size: 1.4rem; }
.logo-kz { color: var(--primary); }
.main-nav { margin-left: auto; }
.main-nav ul { display: flex; list-style: none; gap: 4px; align-items: center; }
.main-nav a, .nav-btn { color: var(--text); padding: 6px 12px; border-radius: var(--radius-sm); font-weight: 500; font-size: 0.9rem; background: none; border: none; cursor: pointer; display: block; }
.main-nav a:hover, .nav-btn:hover { background: var(--bg); text-decoration: none; }
.dropdown { position: relative; }
.dropdown-menu { display: none; position: absolute; top: 100%; left: 0; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 6px; min-width: 200px; box-shadow: var(--card-shadow); z-index: 200; }
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu li { list-style: none; }
.dropdown-menu a { display: block; padding: 6px 12px; color: var(--text); border-radius: 6px; font-size: 0.88rem; }
.dropdown-menu a:hover { background: var(--bg); text-decoration: none; }
.cities-menu { columns: 2; min-width: 280px; }
.burger { display: none; background: none; border: none; font-size: 1.5rem; cursor: pointer; margin-left: auto; }

/* HERO */
.hero { background: linear-gradient(135deg, #1a56db 0%, #0f3a8a 100%); color: var(--white); padding: 56px 0 48px; }
.hero h1 { font-family: 'Nunito', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 12px; }
.hero p { font-size: 1.1rem; opacity: 0.9; max-width: 560px; margin-bottom: 24px; }
.hero-search { display: flex; gap: 8px; max-width: 500px; }
.hero-search input { flex: 1; padding: 12px 16px; border-radius: var(--radius-sm); border: none; font-size: 1rem; }
.hero-search button { background: var(--accent); color: var(--white); border: none; padding: 12px 20px; border-radius: var(--radius-sm); font-weight: 600; cursor: pointer; font-size: 0.95rem; }
.breadcrumbs { padding: 12px 0; font-size: 0.85rem; color: var(--text-light); }
.breadcrumbs a { color: var(--text-light); }
.breadcrumbs span { margin: 0 6px; }

/* CARDS */
.section { padding: 40px 0; }
.section-title { font-family: 'Nunito', sans-serif; font-size: 1.5rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.cards-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }

/* SC CARD */
.sc-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; transition: box-shadow 0.2s, transform 0.2s; }
.sc-card:hover { box-shadow: var(--card-shadow); transform: translateY(-2px); }
.sc-card-name { font-weight: 700; font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.sc-card-address { color: var(--text-light); font-size: 0.88rem; margin-bottom: 8px; }
.sc-card-address span { margin-right: 4px; }
.sc-card-hours { font-size: 0.83rem; color: var(--text-light); margin-bottom: 12px; }
.sc-services { list-style: none; margin-bottom: 14px; }
.sc-services li { font-size: 0.85rem; padding: 2px 0; color: var(--text); }
.sc-services li::before { content: "✓ "; color: var(--accent); font-weight: 700; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag { font-size: 0.75rem; background: var(--bg); border: 1px solid var(--border); padding: 2px 8px; border-radius: 99px; color: var(--text-light); }
.phone-block { margin-bottom: 8px; }
.phone-reveal { background: none; border: 1px solid var(--primary); color: var(--primary); padding: 8px 16px; border-radius: var(--radius-sm); cursor: pointer; font-size: 0.88rem; font-weight: 600; width: 100%; }
.phone-revealed { display: none; font-weight: 700; font-size: 1rem; color: var(--text); padding: 4px 0; }
.phone-revealed a { color: var(--primary); }
.wa-btn { display: flex; align-items: center; justify-content: center; gap: 8px; background: #22c55e; color: white; padding: 9px 16px; border-radius: var(--radius-sm); font-size: 0.88rem; font-weight: 600; text-align: center; }
.wa-btn:hover { background: #16a34a; text-decoration: none; color: white; }

/* BRAND / CATEGORY CARDS */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 12px; }
.brand-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 16px 12px; text-align: center; transition: all 0.2s; }
.brand-card:hover { border-color: var(--primary); box-shadow: 0 4px 16px rgba(26,86,219,0.15); transform: translateY(-2px); text-decoration: none; }
.brand-card .emoji { font-size: 2rem; margin-bottom: 8px; }
.brand-card .brand-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 16px; }
.cat-card { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius); padding: 24px 20px; color: white; transition: transform 0.2s; }
.cat-card:hover { transform: translateY(-3px); text-decoration: none; }
.cat-card h3 { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.1rem; margin-bottom: 6px; }
.cat-card p { font-size: 0.85rem; opacity: 0.85; }

/* CITY GRID */
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 10px; }
.city-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 12px 14px; font-weight: 600; font-size: 0.9rem; color: var(--text); transition: all 0.2s; text-align: center; }
.city-card:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; }

/* SEO TEXT */
.seo-text { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; margin: 32px 0; font-size: 0.92rem; color: var(--text-light); line-height: 1.8; }
.seo-text h2 { font-size: 1.2rem; color: var(--text); margin-bottom: 12px; font-family: 'Nunito', sans-serif; }

/* SIDEBAR */
.content-with-sidebar { display: grid; grid-template-columns: 1fr 300px; gap: 24px; align-items: start; }
.sidebar-box { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; }
.sidebar-box h3 { font-family: 'Nunito', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 12px; color: var(--text); }
.sidebar-box ul { list-style: none; }
.sidebar-box ul li { padding: 4px 0; border-bottom: 1px solid var(--border); }
.sidebar-box ul li:last-child { border: none; }
.sidebar-box a { font-size: 0.88rem; }
.disclaimer-box { font-size: 0.8rem; color: var(--text-light); border: 1px dashed var(--border); border-radius: var(--radius-sm); padding: 12px; margin-top: 16px; }

/* PAGE HEADER */
.page-header { background: var(--white); border-bottom: 1px solid var(--border); padding: 32px 0 24px; }
.page-header h1 { font-family: 'Nunito', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; margin-bottom: 8px; }
.page-header p { color: var(--text-light); max-width: 600px; }

/* FOOTER */
.site-footer { background: var(--text); color: #94a3b8; padding: 48px 0 24px; margin-top: 60px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
.footer-logo { font-family: 'Nunito', sans-serif; font-weight: 800; font-size: 1.2rem; color: white; margin-bottom: 12px; }
.footer-col h4 { color: white; font-size: 0.9rem; font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 6px; }
.footer-col a { color: #94a3b8; font-size: 0.88rem; }
.footer-col a:hover { color: white; text-decoration: none; }
.footer-col p { font-size: 0.85rem; margin-bottom: 8px; }
.footer-col p a { color: #94a3b8; }
.disclaimer { font-size: 0.75rem !important; opacity: 0.7; }
.footer-bottom { border-top: 1px solid #334155; padding-top: 20px; font-size: 0.8rem; opacity: 0.7; }
.hosting-ref { margin-top: 12px; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-with-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .main-nav { display: none; }
  .main-nav.open { display: block; position: fixed; top: 60px; left: 0; right: 0; background: white; border-bottom: 1px solid var(--border); padding: 16px; z-index: 99; }
  .main-nav.open ul { flex-direction: column; }
  .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 16px; }
  .dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: none; }
  .dropdown.open .dropdown-menu { display: block; }
  .burger { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 1.6rem; }
  .hero-search { flex-direction: column; }
  .cities-menu { columns: 1; }
}
