/* ===== CSS VARIABLES (можна змінити через адмінку) ===== */
:root {
  --primary: #1a2744;
  --primary-dark: #111c35;
  --accent: #c9a84c;
  --accent-light: #e8c97a;
  --text: #2d3748;
  --text-light: #718096;
  --bg: #ffffff;
  --bg-light: #f7f9fc;
  --border: #e2e8f0;
  --heading-font: 'Montserrat', sans-serif;
  --body-font: 'Open Sans', sans-serif;
  --shadow: 0 4px 24px rgba(26,39,68,0.10);
  --shadow-lg: 0 10px 40px rgba(26,39,68,0.18);
  --radius: 10px;
  --transition: 0.3s ease;
}

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--body-font); color: var(--text); background: var(--bg); line-height: 1.7; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 { font-family: var(--heading-font); color: var(--primary); line-height: 1.3; font-weight: 700; }
h1 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h2 { font-size: clamp(1.3rem, 2.8vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.5rem); }
p { margin-bottom: 1rem; }

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

/* ===== TOPBAR ===== */
.topbar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 8px 0;
  font-family: var(--body-font);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--accent); }
.topbar a:hover { color: var(--accent-light); }
.topbar-phones { display: flex; gap: 16px; align-items: center; }
.topbar-phones a { color: rgba(255,255,255,0.9); font-weight: 600; }
.topbar-right { display: flex; gap: 16px; align-items: center; }

/* ===== HEADER ===== */
header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 70px;
}
.logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--accent);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--primary);
  font-family: var(--heading-font);
  flex-shrink: 0;
}
.logo-text { color: white; }
.logo-text .name { font-size: 1.05rem; font-weight: 700; font-family: var(--heading-font); display: block; }
.logo-text .tagline { font-size: 0.72rem; color: rgba(255,255,255,0.65); display: block; letter-spacing: 0.5px; }

/* ===== NAVIGATION ===== */
nav { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.88);
  font-family: var(--heading-font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all var(--transition);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--accent); background: rgba(201,168,76,0.12); }
.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 30px; height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* Dropdown */
.nav-item { position: relative; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: white;
  min-width: 280px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
  border-top: 3px solid var(--accent);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: block;
  padding: 10px 18px;
  color: var(--text);
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}
.nav-dropdown a:last-child { border-bottom: none; }
.nav-dropdown a:hover { background: var(--bg-light); color: var(--accent); padding-left: 24px; }

/* Hamburger */
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 8px; color: white; }
.hamburger span { display: block; width: 24px; height: 2px; background: white; margin: 5px 0; transition: all var(--transition); border-radius: 2px; }

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, #2a3f6f 60%, #1a2744 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 50%;
  height: 100%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 600 600'%3E%3Ccircle cx='400' cy='300' r='350' fill='rgba(201,168,76,0.04)'/%3E%3Ccircle cx='500' cy='200' r='200' fill='rgba(201,168,76,0.04)'/%3E%3C/svg%3E") no-repeat center/cover;
  pointer-events: none;
}
.hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--accent);
  font-size: 0.78rem; font-weight: 700;
  padding: 6px 14px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 20px;
}
.hero h1 { color: white; margin-bottom: 20px; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.hero h1 span { color: var(--accent); }
.hero-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 30px; line-height: 1.8; }
.hero-stats { display: flex; gap: 30px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-stat { text-align: left; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--accent); font-family: var(--heading-font); line-height: 1; }
.hero-stat .label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.5px; }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: white;
  border-radius: 16px;
  padding: 32px 28px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-card h3 { color: var(--primary); margin-bottom: 20px; font-size: 1.1rem; }
.hero-card .contacts-list { display: flex; flex-direction: column; gap: 14px; }
.hero-card .contact-item { display: flex; align-items: center; gap: 12px; }
.hero-card .ci-icon {
  width: 38px; height: 38px; border-radius: 8px;
  background: var(--bg-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--accent); flex-shrink: 0;
}
.hero-card .ci-text { font-size: 0.88rem; }
.hero-card .ci-text small { color: var(--text-light); display: block; font-size: 0.75rem; }
.hero-card .ci-text a { color: var(--primary); font-weight: 600; font-size: 0.95rem; }
.hero-card .messenger-links { display: flex; gap: 10px; margin-top: 16px; justify-content: center; }
.messenger-btn {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px 16px; border-radius: 8px; font-size: 0.82rem; font-weight: 600;
  transition: all var(--transition); flex: 1;
}
.messenger-btn.viber { background: #7360f2; color: white; }
.messenger-btn.telegram { background: #2ca5e0; color: white; }
.messenger-btn.whatsapp { background: #25d366; color: white; }
.messenger-btn:hover { opacity: 0.9; transform: translateY(-2px); color: white; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: 8px;
  font-family: var(--heading-font); font-size: 0.88rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px;
  cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); text-decoration: none;
}
.btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); color: var(--primary); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,168,76,0.4); }
.btn-outline { background: transparent; color: white; border-color: rgba(255,255,255,0.5); }
.btn-outline:hover { background: white; color: var(--primary); border-color: white; }
.btn-dark { background: var(--primary); color: white; border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-dark); transform: translateY(-2px); color: white; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, var(--primary) 0%, #2a3f6f 100%);
  padding: 50px 0 40px;
  text-align: center;
}
.page-header h1 { color: white; margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); max-width: 600px; margin: 0 auto; }
.breadcrumb-nav {
  background: var(--bg-light);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.82rem;
}
.breadcrumb-nav .container { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.breadcrumb-nav a { color: var(--text-light); }
.breadcrumb-nav span { color: var(--text-light); }
.breadcrumb-nav .current { color: var(--accent); font-weight: 600; }

/* ===== SECTIONS ===== */
section { padding: 70px 0; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header .subtitle {
  color: var(--accent); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); }
.section-header p { color: var(--text-light); max-width: 600px; margin: 12px auto 0; }
.divider { width: 60px; height: 3px; background: var(--accent); margin: 16px auto 0; border-radius: 2px; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; }
.service-card {
  background: white;
  border-radius: var(--radius);
  padding: 30px 24px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--accent);
  transform: scaleY(0);
  transition: transform var(--transition);
  transform-origin: bottom;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), #2a3f6f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; color: var(--accent);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.05rem; color: var(--primary); }
.service-card p { color: var(--text-light); font-size: 0.88rem; margin-bottom: 16px; }
.service-card .sub-list { margin-top: 12px; }
.service-card .sub-list li { padding: 4px 0; font-size: 0.82rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.service-card .sub-list li::before { content: '→'; color: var(--accent); font-size: 0.75rem; flex-shrink: 0; }
.service-card .btn { margin-top: 16px; font-size: 0.78rem; padding: 8px 16px; }

/* ===== WHY US ===== */
.why-us { background: var(--bg-light); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 24px; }
.why-item { text-align: center; padding: 28px 20px; }
.why-icon { font-size: 2.5rem; margin-bottom: 14px; }
.why-item h4 { color: var(--primary); margin-bottom: 8px; font-size: 1rem; }
.why-item p { color: var(--text-light); font-size: 0.85rem; }

/* ===== ABOUT SECTION ===== */
.about-grid { display: grid; grid-template-columns: 380px 1fr; gap: 60px; align-items: start; }
.about-image-wrap { position: relative; }
.about-image-wrap img { border-radius: 16px; box-shadow: var(--shadow-lg); width: 100%; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--accent);
  color: var(--primary);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge .years { font-size: 2rem; font-weight: 800; font-family: var(--heading-font); line-height: 1; }
.about-badge span { font-size: 0.75rem; font-weight: 600; display: block; }
.about-content { padding-top: 10px; }
.about-content .quote-box {
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  padding: 16px 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 20px 0;
  font-style: italic;
  color: var(--text);
}
.timeline { margin-top: 24px; }
.timeline-item { display: flex; gap: 16px; margin-bottom: 16px; }
.timeline-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.timeline-item h4 { font-size: 0.95rem; color: var(--primary); margin-bottom: 4px; }
.timeline-item p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--primary), #2a3f6f);
  padding: 60px 0;
  text-align: center;
}
.cta-section h2 { color: white; margin-bottom: 14px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 550px; margin: 0 auto 28px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== CONTACT FORM ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 420px; gap: 50px; }
.contact-info-box { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  display: flex; align-items: flex-start; gap: 16px;
  background: white; border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.info-card .ic-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), #2a3f6f);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: var(--accent); flex-shrink: 0;
}
.info-card .ic-text h4 { font-size: 0.82rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }
.info-card .ic-text p, .info-card .ic-text a { color: var(--primary); font-weight: 600; font-size: 1rem; }

.form-box { background: white; border-radius: 16px; padding: 36px 32px; box-shadow: var(--shadow-lg); }
.form-box h3 { color: var(--primary); margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.83rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--body-font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--accent); }
.form-group textarea { resize: vertical; min-height: 110px; }

/* ===== MAP ===== */
.map-wrapper { margin-top: 30px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrapper iframe { width: 100%; height: 350px; border: none; display: block; }

/* ===== FAQ ACCORDION ===== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 18px 24px; text-align: left;
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer; font-family: var(--heading-font);
  font-size: 0.95rem; font-weight: 600; color: var(--primary);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg-light); }
.faq-question .faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform var(--transition); }
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: all var(--transition); }
.faq-answer.open { padding: 4px 24px 18px; max-height: 400px; }
.faq-answer p { color: var(--text-light); font-size: 0.9rem; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--bg-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.testimonial-card {
  background: white; border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow);
  border: 1px solid var(--border); position: relative;
}
.testimonial-card::before { content: '"'; font-size: 5rem; color: var(--accent); opacity: 0.15; position: absolute; top: -10px; left: 16px; line-height: 1; font-family: serif; }
.testimonial-text { color: var(--text); font-size: 0.9rem; font-style: italic; margin-bottom: 16px; line-height: 1.8; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--primary); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: var(--heading-font); }
.testimonial-name { font-weight: 700; font-size: 0.9rem; color: var(--primary); }
.testimonial-role { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--accent); font-size: 0.85rem; margin-bottom: 4px; }

/* ===== CONTENT PAGE ===== */
.content-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; align-items: start; }
.content-main { }
.content-main h2 { color: var(--primary); margin-bottom: 14px; margin-top: 28px; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 12px 0 20px 0; }
.content-main ul li { padding: 6px 0; padding-left: 20px; position: relative; color: var(--text); font-size: 0.92rem; }
.content-main ul li::before { content: '⚖'; position: absolute; left: 0; color: var(--accent); font-size: 0.75rem; top: 8px; }
.content-main ol { margin: 12px 0 20px 20px; }
.content-main ol li { padding: 6px 0; color: var(--text); font-size: 0.92rem; }
.sidebar { }
.sidebar-card { background: white; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); border: 1px solid var(--border); margin-bottom: 20px; }
.sidebar-card h4 { color: var(--primary); margin-bottom: 14px; font-size: 1rem; border-bottom: 2px solid var(--accent); padding-bottom: 10px; }
.sidebar-card ul { }
.sidebar-card ul li { padding: 8px 0; border-bottom: 1px solid var(--border); }
.sidebar-card ul li:last-child { border-bottom: none; }
.sidebar-card ul li a { color: var(--text); font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.sidebar-card ul li a:hover { color: var(--accent); }
.sidebar-card ul li a::before { content: '→'; color: var(--accent); }
.sidebar-phone { text-align: center; }
.sidebar-phone .phone-num { font-size: 1.2rem; font-weight: 800; color: var(--primary); font-family: var(--heading-font); display: block; margin: 10px 0; }
.sidebar-phone p { color: var(--text-light); font-size: 0.82rem; margin-bottom: 14px; }

/* ===== FOOTER ===== */
footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-brand .social-links { display: flex; gap: 10px; margin-top: 16px; }
.social-link { width: 38px; height: 38px; border-radius: 8px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-col h4 { color: white; font-family: var(--heading-font); font-size: 0.9rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid rgba(201,168,76,0.3); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { color: rgba(255,255,255,0.6); font-size: 0.85rem; transition: color var(--transition); display: flex; align-items: center; gap: 6px; }
.footer-col ul li a::before { content: '›'; color: var(--accent); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-col p { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-col a { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 16px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.8rem; }

/* ===== FLOATING CONTACT ===== */
.float-contact { position: fixed; bottom: 30px; right: 30px; z-index: 999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.float-btn {
  width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 16px rgba(0,0,0,0.2); cursor: pointer;
  transition: all var(--transition); text-decoration: none; color: white;
  border: none;
}
.float-btn:hover { transform: scale(1.1); color: white; }
.float-btn.phone-btn { background: var(--accent); color: var(--primary); font-size: 1.1rem; }
.float-btn.viber-btn { background: #7360f2; }
.float-btn.telegram-btn { background: #2ca5e0; }
.float-btn.whatsapp-btn { background: #25d366; }
.float-labels { display: none; }
.float-contact:hover .float-labels { display: flex; }

/* ===== ADMIN LINK ===== */
.admin-link-btn {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
  background: rgba(26,39,68,0.85); color: rgba(255,255,255,0.6);
  border: none; cursor: pointer; font-size: 0.75rem;
  padding: 8px 14px; border-radius: 20px;
  display: flex; align-items: center; gap: 6px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.admin-link-btn:hover { background: var(--primary); color: white; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.bg-light { background: var(--bg-light); }
.mb-0 { margin-bottom: 0; }
.highlight-box { background: var(--bg-light); border-left: 4px solid var(--accent); padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0; margin: 20px 0; }
.numbered-list { counter-reset: list; list-style: none; padding-left: 0; margin-left: 0; }
.numbered-list li { counter-increment: list; list-style: none; display: flex; align-items: flex-start; gap: 14px; padding: 10px 10px; border-bottom: 1px solid var(--border); font-size: 0.9rem; }
.numbered-list li::before { content: counter(list); flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--primary); font-size: 0.75rem; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: var(--heading-font); margin-top: 1px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrap { max-width: 360px; margin: 0 auto 40px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { order: -1; }
}
@media (max-width: 768px) {
  .hamburger { display: block; }
  nav { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100vh; background: var(--primary); flex-direction: column; justify-content: center; align-items: center; gap: 8px; overflow-y: auto; padding: 80px 20px 40px; }
  nav.open { display: flex; }
  nav.open .nav-link { font-size: 1.1rem; }
  .nav-item .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: rgba(255,255,255,0.08); border-radius: var(--radius); margin-top: 4px; border-top: none; }
  .nav-dropdown a { color: rgba(255,255,255,0.8); }
  .nav-dropdown a:hover { background: rgba(255,255,255,0.1); color: var(--accent); padding-left: 18px; }
  .topbar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .hero { padding: 50px 0; }
  .hero-stats { gap: 20px; }
  section { padding: 50px 0; }
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .float-contact { bottom: 20px; right: 16px; }
  .admin-link-btn { bottom: 20px; left: 16px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .why-grid { grid-template-columns: 1fr; }
  .cta-buttons { flex-direction: column; }
  .footer-bottom { text-align: center; justify-content: center; }
}
