/* MyWaste — Shared Styles v1.0 */
:root {
  --navy: #0a1628;
  --navy-mid: #112040;
  --navy-light: #1a3060;
  --gold: #f4b400;
  --gold-dark: #c99200;
  --gold-light: #ffd84d;
  --white: #ffffff;
  --gray-light: #f5f5f0;
  --gray-text: #8a9ab5;
  --text: #333;
  --radius: 12px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }
body {
  font-family: "Noto Serif Georgian", serif;
  background: var(--gray-light);
  color: var(--text);
  line-height: 1.6;
  display: flex;
  flex-direction: column;
}
main { flex: 1 0 auto; }

/* ── HEADER ── */
.top {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(0,0,0,.4);
}
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 5%;
  gap: 12px;
}
.header-left { display: flex; align-items: center; gap: 14px; }
.logo {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2.5px solid var(--gold);
  box-shadow: 0 0 0 4px rgba(244,180,0,.15);
  flex-shrink: 0;
}
.site-title { color: var(--white); font-size: 12px; font-weight: 700; max-width: 175px; line-height: 1.3; }
.header-right { display: flex; align-items: center; gap: 8px; }
.header-phone {
  display: none;
  color: var(--navy);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  background: var(--gold);
  padding: 9px 16px;
  border-radius: 8px;
  transition: background .25s var(--ease), transform .25s var(--ease);
  white-space: nowrap;
}
.header-phone:hover { background: var(--gold-light); transform: translateY(-1px); }
.social-link {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: 8px;
  background: var(--navy-light);
  transition: background .25s var(--ease);
}
.social-link:hover { background: rgba(244,180,0,.2); }
.social-link img { width: 18px; height: 18px; display: block; object-fit: contain; }

/* ── GOLD BAR ── */
.gold-bar { height: 4px; background: linear-gradient(90deg, var(--gold-dark), var(--gold-light), var(--gold-dark)); }

/* ── PAGE BANNER ── */
.page-banner { background: var(--navy); padding: 32px 5%; display: flex; flex-direction: column; gap: 6px; }
.page-banner .badge {
  display: inline-block;
  background: rgba(244,180,0,.15);
  color: var(--gold);
  font-size: 11px; font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  border: 1px solid rgba(244,180,0,.3);
  width: fit-content;
}
.page-banner h1 { color: var(--white); font-size: 22px; font-weight: 900; line-height: 1.25; }
.page-banner .update { color: var(--gray-text); font-size: 12px; margin-top: 4px; }

/* ── CONTENT ── */
.content-wrap { padding: 36px 5%; background: var(--white); }
.section-label {
  display: inline-block;
  background: rgba(244,180,0,.1);
  color: var(--gold-dark);
  font-size: 10px; font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.content-wrap h2 { color: var(--navy); font-size: 18px; font-weight: 900; margin: 22px 0 10px; line-height: 1.3; }
.content-wrap h2:first-of-type { margin-top: 0; }
.content-wrap p { color: #444; margin-bottom: 12px; font-size: 15px; }
.content-wrap p a { color: var(--gold-dark); font-weight: 700; text-decoration: none; }
.content-wrap p a:hover { text-decoration: underline; }
.content-wrap ul { list-style: none; margin: 8px 0 16px; }
.content-wrap ul li {
  padding: 9px 0 9px 28px;
  position: relative;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #f2f2ee;
}
.content-wrap ul li:last-child { border-bottom: none; }
.content-wrap ul li::before {
  content: '';
  position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 16px; height: 16px;
  background: var(--gold); border-radius: 4px;
}
.content-wrap ul li::after {
  content: '✓';
  position: absolute; left: 2px; top: 50%; transform: translateY(-50%);
  font-size: 10px; font-weight: 900; color: var(--navy);
}

/* ── HIGHLIGHT BOX ── */
.highlight-box { background: var(--navy); border-radius: var(--radius); padding: 20px; margin: 16px 0; }
.highlight-box p { color: var(--white); margin: 0; font-size: 14px; line-height: 1.8; }
.highlight-box strong { color: var(--gold); }

/* ── CONTACT ROW ── */
.contact-row { display: flex; flex-direction: column; gap: 10px; margin: 20px 0; }
.contact-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--gray-light); border-radius: 10px;
  padding: 12px 16px; font-size: 14px; color: #333; font-weight: 600;
}
.contact-item a { color: var(--gold-dark); font-weight: 700; text-decoration: none; }

/* ── DIVIDER ── */
.divider { height: 2px; background: linear-gradient(90deg, var(--gold), transparent); border-radius: 2px; margin: 26px 0; }
.links-title { color: var(--navy); font-size: 15px; font-weight: 700; margin-bottom: 12px; }

/* ── INTERNAL LINKS ── */
.internal-links { display: grid; grid-template-columns: 1fr; gap: 9px; }
.internal-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-weight: 700; text-decoration: none; font-size: 14px;
  background: var(--navy); color: var(--white);
  border: 1.5px solid var(--navy-light);
  transition: background .25s var(--ease), border-color .25s var(--ease),
              transform .25s var(--ease), box-shadow .25s var(--ease);
}
.internal-links a .arr { color: var(--gold); font-size: 18px; transition: transform .25s var(--ease); }
.internal-links a:last-child .arr { color: var(--gray-text); }
.internal-links a:hover { background: var(--navy-light); border-color: var(--gold); transform: translateX(4px); box-shadow: 0 4px 20px rgba(10,22,40,.3); }
.internal-links a:hover .arr { transform: translateX(4px); }
.internal-links a:last-child:hover { transform: translateX(-4px); }
.internal-links a:last-child:hover .arr { transform: translateX(-4px); }

/* ── FAQ ── */
.faq-section { padding: 36px 5%; background: var(--gray-light); }
.faq-section h2 { color: var(--navy); font-size: 20px; font-weight: 900; margin-bottom: 18px; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 8px; border: 1px solid #e5e5de; overflow: hidden; transition: box-shadow .25s var(--ease); }
.faq-item:hover { box-shadow: 0 4px 16px rgba(0,0,0,.07); }
.faq-q { padding: 15px 18px; font-weight: 700; font-size: 14px; color: var(--navy); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px; user-select: none; }
.faq-q .plus { color: var(--gold); font-size: 22px; font-weight: 300; flex-shrink: 0; transition: transform .3s var(--ease); line-height: 1; }
.faq-item.open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .3s ease; font-size: 14px; color: #555; }
.faq-item.open .faq-a { max-height: 200px; padding: 0 18px 15px; }

/* ── PRICE TABLE ── */
.price-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,.08); margin-bottom: 20px; max-width: 640px; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table thead tr { background: var(--navy); }
.price-table th { color: var(--white); padding: 14px 18px; text-align: left; font-size: 14px; font-weight: 700; }
.price-table th:last-child { text-align: right; color: var(--gold); }
.price-table td { padding: 13px 18px; border-bottom: 1px solid #f0f0ea; font-size: 14px; color: #333; }
.price-table td:last-child { font-weight: 700; color: var(--navy); text-align: right; white-space: nowrap; }
.price-table tr:last-child td { border-bottom: none; }
.price-table tbody tr { transition: background .2s; }
.price-table tbody tr:hover { background: #fffbee; }
.note-box { background: var(--white); border-radius: var(--radius); padding: 20px; margin-bottom: 20px; max-width: 640px; border-left: 4px solid var(--gold); }
.note-box h2 { color: var(--navy); font-size: 16px; font-weight: 900; margin-bottom: 10px; }
.note-box p { color: #444; font-size: 14px; margin-bottom: 8px; }
.note-box p:last-child { margin-bottom: 0; }
.note-box a { color: var(--gold-dark); font-weight: 700; text-decoration: none; }

/* ── FOOTER ── */
footer {
  background: var(--navy); color: var(--white);
  text-align: center; padding: 32px 5%;
  border-top: 3px solid var(--gold);
  flex-shrink: 0;
}
.footer-cta {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 12px 24px; border-radius: 10px;
  text-decoration: none; font-weight: 700; font-size: 14px;
  margin-bottom: 18px;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.footer-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.footer-phone { display: block; color: var(--gold); text-decoration: none; font-size: 22px; font-weight: 900; margin: 10px 0; }
.footer-text { color: var(--gray-text); font-size: 12px; line-height: 1.7; margin-top: 8px; }

/* ── FEATURES (homepage) ── */
.features { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; padding: 14px 5%; background: var(--navy); }
.feat { background: var(--navy-light); border: 1px solid rgba(244,180,0,.18); border-radius: 10px; padding: 12px; display: flex; align-items: center; gap: 10px; transition: border-color .25s var(--ease), transform .25s var(--ease); }
.feat:hover { border-color: rgba(244,180,0,.6); transform: translateY(-2px); }
.feat-icon { width: 34px; height: 34px; border-radius: 8px; background: rgba(244,180,0,.12); display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.feat span { color: var(--white); font-size: 11px; font-weight: 600; line-height: 1.4; }

/* ── HERO (homepage) ── */
.hero { position: relative; overflow: hidden; background: var(--navy); }
.hero-img { width: 100%; height: 240px; object-fit: cover; display: block; opacity: .45; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,22,40,.2) 0%, rgba(10,22,40,.88) 100%); display: flex; flex-direction: column; align-items: center; justify-content: flex-end; padding: 28px 5%; gap: 10px; }
.hero-badge { background: var(--gold); color: var(--navy); font-size: 11px; font-weight: 700; padding: 5px 16px; border-radius: 20px; letter-spacing: .05em; }
.hero h1 { color: var(--white); font-size: 24px; font-weight: 900; text-align: center; line-height: 1.25; text-shadow: 0 2px 20px rgba(0,0,0,.6); }

/* ── RESPONSIVE ── */
@media (min-width: 600px) {
  .internal-links { grid-template-columns: 1fr 1fr; }
  .contact-row { flex-direction: row; }
}
@media (min-width: 768px) {
  .logo { width: 62px; height: 62px; }
  .site-title { font-size: 17px; max-width: none; }
  .header-phone { display: flex; }
  .hero-img { height: 460px; }
  .hero h1 { font-size: 38px; }
  .features { grid-template-columns: repeat(4, 1fr); padding: 18px 5%; }
  .feat span { font-size: 13px; }
  .content-wrap { padding: 52px 8%; }
  .content-wrap h2 { font-size: 22px; }
  .faq-section { padding: 52px 8%; }
  .page-banner h1 { font-size: 30px; }
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }
.content-wrap { animation: fadeUp .5s ease both; }
.faq-section { animation: fadeUp .5s .1s ease both; }
