/* ============================================================
   VS Zelina – Main Stylesheet
   Primary: #2a7d5f | Secondary BG: #eaf6fb
   Font: Inter (Google Fonts)
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2a7d5f;
  --green-dark: #1f5e47;
  --green-light: #d4ede5;
  --blue-bg: #eaf6fb;
  --text: #1e2a24;
  --text-muted: #5a6b63;
  --white: #ffffff;
  --border: #d0ddd8;
  --radius: 10px;
  --shadow: 0 4px 18px rgba(42, 125, 95, 0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--green);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
ul {
  list-style: none;
}

/* ---------- Utilities ---------- */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: 1.25rem;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.divider {
  width: 54px;
  height: 4px;
  background: var(--green);
  border-radius: 2px;
  margin-bottom: 0.8rem;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  border: none;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--green-dark);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
}
.btn-outline:hover {
  background: var(--green-light);
  text-decoration: none;
}

.btn-danger {
  background: #d64545;
  color: #fff;
  font-size: 0.85rem;
  padding: 0.4rem 0.9rem;
}
.btn-danger:hover {
  background: #b83232;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.85rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.logo-text {
  line-height: 1.2;
}
.logo-text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-dark);
}
.logo-text span {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 400;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--green);
  text-decoration: none;
}

.nav-contact-btn {
  background: var(--green);
  color: #fff !important;
  padding: 0.45rem 1.1rem;
  border-radius: var(--radius);
}
.nav-contact-btn:hover {
  background: var(--green-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, #0d3325 0%, #1a5240 55%, #1f6b4f 100%);
  color: #ffffff;
  padding: 5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  z-index: 0;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.hero-content {
  flex: 1;
  min-width: 0;
}

.hero-image {
  flex: 0 0 420px;
}

.hero-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 30px;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.1rem;
}

.hero p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-white {
  background: #fff;
  color: var(--green-dark);
  font-weight: 700;
}
.hero-actions .btn-white:hover {
  background: #e8f5f0;
  text-decoration: none;
}

.hero-actions .btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.25);
  text-decoration: none;
}

/* ---------- Sections (shared) ---------- */
section {
  padding: 4rem 0;
}
section:nth-child(even) {
  background: var(--blue-bg);
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image-block {
  position: relative;
}

.about-real-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.about-badge {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  background: var(--green);
  color: #fff;
  border-radius: 12px;
  padding: 1rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-badge strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
}
.about-badge span {
  font-size: 0.8rem;
  opacity: 0.85;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.about-list {
  margin-top: 1.5rem;
}
.about-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-weight: 500;
}
.about-list li::before {
  content: "✓";
  background: var(--green);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
}

/* ---------- Working Hours ---------- */
.hours-section {
  background: linear-gradient(160deg, #f0faf6 0%, var(--blue-bg) 100%);
}

.hours-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.hours-single {
  max-width: 560px;
}

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(42, 125, 95, .13);
  overflow: hidden;
  border: 1px solid var(--border);
}

.hours-card-header {
  background: linear-gradient(90deg, var(--green-dark), var(--green));
  color: #fff;
  padding: 1.1rem 1.5rem;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: .01em;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
}
.hours-table tr {
  border-bottom: 1px solid var(--border);
  transition: background .15s;
}
.hours-table tr:last-child {
  border-bottom: none;
}
.hours-table tr:nth-child(even) {
  background: #f7fbf9;
}
.hours-table tr:hover {
  background: var(--green-light);
}
.hours-table td {
  padding: 1rem 1.5rem;
  font-size: .95rem;
}
.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.hours-today {
  background: #e6f5ee !important;
}
.hours-today td:first-child::before {
  content: '▶ ';
  color: var(--green);
  font-size: .7rem;
}
.hours-today td:last-child {
  color: var(--green) !important;
}

.hours-note {
  background: var(--green-light);
  border-top: 2px solid var(--green);
  padding: 1rem 1.5rem;
  color: var(--green-dark);
  font-size: .88rem;
}
.hours-note strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: .9rem;
}

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-icon {
  width: 60px;
  height: 60px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.6rem;
}

.service-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 0.4rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ---------- Articles / Promotions ---------- */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
}

.article-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(42, 125, 95, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.2s,
    transform 0.2s;
}
.article-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.article-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.article-card-img-placeholder {
  width: 100%;
  height: 200px;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-size: 2.5rem;
}

.article-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.article-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.article-until {
  background: #fff3cd;
  color: #856404;
  font-size: .72rem;
  font-weight: 600;
  padding: .15rem .45rem;
  border-radius: 30px;
  white-space: nowrap;
}

.article-short-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
}

.read-more-btn {
  background: none;
  border: none;
  color: var(--green);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
.read-more-btn:hover {
  gap: 0.55rem;
}
.read-more-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}
.read-more-btn.open svg {
  transform: rotate(90deg);
}

.article-full-content {
  display: none;
  margin-top: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 0.8rem;
  white-space: pre-line;
  word-break: break-word;
}
.article-full-content.visible {
  display: block;
}

.articles-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--text-muted);
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 2px dashed var(--border);
}

/* ---------- Footer ---------- */
.site-footer {
  background: #111f1a;
  color: #a8bdb5;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #1f3029;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
}

.footer-brand .logo-text strong {
  color: #fff;
}
.footer-brand .logo-text span {
  color: #a8bdb5;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}
.footer-col ul li a {
  color: #a8bdb5;
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #fff;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
}
.footer-contact-item span:first-child {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.footer-bottom {
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.82rem;
  color: #6b8078;
}

.footer-bottom a {
  color: #6b8078;
}
.footer-bottom a:hover {
  color: #fff;
  text-decoration: none;
}

/* ---------- Admin Panel ---------- */
.admin-body {
  background: #f3f7f5;
  min-height: 100vh;
}

.admin-header {
  background: var(--green);
  color: #fff;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-header h1 {
  font-size: 1.2rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.admin-header a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}
.admin-header a:hover {
  color: #fff;
  text-decoration: none;
}

.admin-nav {
  background: var(--green-dark);
  padding: 0.5rem 1.5rem;
  display: flex;
  gap: 1.5rem;
}
.admin-nav a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
}
.admin-nav a.active,
.admin-nav a:hover {
  color: #fff;
  border-bottom-color: #fff;
  text-decoration: none;
}

.admin-main {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1.5rem 3rem;
}

.admin-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  padding: 1.8rem 2rem;
  margin-bottom: 2rem;
}

.admin-card h2 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--green-dark);
  margin-bottom: 1.4rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--green-light);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Forms */
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.form-group .hint {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.form-control {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: "Inter", sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-control:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(42, 125, 95, 0.12);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* Alert messages */
.alert {
  padding: 0.85rem 1.1rem;
  border-radius: 8px;
  margin-bottom: 1.2rem;
  font-size: 0.93rem;
  font-weight: 500;
}
.alert-success {
  background: #e6f6ef;
  color: #1a5e3a;
  border-left: 4px solid #2a7d5f;
}
.alert-error {
  background: #fdecea;
  color: #8b1e1e;
  border-left: 4px solid #d64545;
}

/* Login form */
.login-wrap {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1f5e47, #2a7d5f);
  padding: 1rem;
}
.login-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
  padding: 2.5rem 2rem;
  width: 100%;
  max-width: 380px;
  text-align: center;
}
.login-card .logo-icon {
  margin: 0 auto 1rem;
  width: 56px;
  height: 56px;
}
.login-card h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.3rem;
}
.login-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}

/* Articles table */
.articles-table {
  width: 100%;
  border-collapse: collapse;
}
.articles-table th {
  background: #f3f7f5;
  padding: 0.75rem 1rem;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
}
.articles-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  vertical-align: middle;
}
.articles-table tr:last-child td {
  border-bottom: none;
}
.articles-table tr:hover td {
  background: #f9fcfb;
}

.table-title {
  font-weight: 600;
  color: var(--text);
}
.table-date {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}
.table-has-img {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.15rem 0.5rem;
  border-radius: 30px;
}

.empty-state {
  text-align: center;
  padding: 2.5rem;
  color: var(--text-muted);
}

/* ---------- Tabs ---------- */
.tabs {
  margin-top: 1rem;
}

.tab-buttons {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 0.65rem 1.4rem;
  border: 2px solid var(--border);
  border-bottom: none;
  background: #f3f7f5;
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: var(--radius) var(--radius) 0 0;
  transition:
    background 0.15s,
    color 0.15s;
}
.tab-btn.active {
  background: var(--white);
  color: var(--green-dark);
  border-color: var(--border);
  position: relative;
  z-index: 1;
}
.tab-btn:hover:not(.active) {
  background: var(--green-light);
  color: var(--green-dark);
}

.tab-panel {
  display: none;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) var(--radius);
  padding: 1.5rem;
}
.tab-panel.active {
  display: block;
}

/* ---------- Pricing Tables ---------- */
.pricing-note {
  background: var(--blue-bg);
  border-left: 4px solid var(--green);
  padding: 0.75rem 1rem;
  border-radius: 0 8px 8px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

.pricing-scroll {
  overflow-x: auto;
  margin-bottom: 1.5rem;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.pricing-table th {
  background: var(--green);
  color: #fff;
  padding: 0.7rem 1rem;
  text-align: left;
  font-weight: 600;
}
.pricing-table th:last-child {
  text-align: right;
  white-space: nowrap;
}
.pricing-table td {
  padding: 0.6rem 1rem;
  border-bottom: 1px solid var(--border);
}
.pricing-table td:last-child {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
  color: var(--green-dark);
}
.pricing-table tr:last-child td {
  border-bottom: none;
}
.pricing-table tr:hover td {
  background: #f0faf6;
}

.pricing-category td {
  background: var(--green-light) !important;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 1rem;
  border-bottom: none !important;
}

.pricing-subtitle {
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-dark);
  margin: 1.5rem 0 0.75rem;
}

.pricing-footnote {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-style: italic;
}

/* ---------- Sliding Captcha ---------- */
.captcha-track {
  position: relative;
  height: 50px;
  background: #f0f4f2;
  border: 2px solid var(--border);
  border-radius: 25px;
  user-select: none;
  transition: border-color .2s;
  overflow: visible;
}

.captcha-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0;
  background: rgba(42, 125, 95, .15);
  border-radius: 25px;
  pointer-events: none;
  transition: background .3s;
}
.captcha-fill.done { background: var(--green); }

.captcha-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .83rem;
  color: var(--text-muted);
  pointer-events: none;
  z-index: 1;
  transition: color .3s;
}
.captcha-label.done { color: #fff; font-weight: 600; }

.captcha-handle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 44px;
  height: 44px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: grab;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(42, 125, 95, .4);
  transition: background .3s;
  touch-action: none;
}
.captcha-handle:active { cursor: grabbing; }
.captcha-handle.done {
  background: var(--green-dark);
  cursor: default;
  font-size: 1rem;
}

.lockout-timer {
  display: flex;
  align-items: center;
  gap: .5rem;
  background: #fff3cd;
  border: 1px solid #f0c040;
  border-radius: 8px;
  padding: .75rem 1rem;
  font-size: .9rem;
  color: #856404;
  margin-bottom: 1rem;
}
.lockout-icon { font-size: 1.1rem; }

/* ---------- Type Badges ---------- */
.type-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.18rem 0.55rem;
  border-radius: 30px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.badge-article {
  background: var(--green-light);
  color: var(--green-dark);
}
.badge-promo {
  background: #fff0e0;
  color: #a05a00;
}
.badge-notice {
  background: #e0ecff;
  color: #1a3a7d;
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    gap: 2rem;
  }
  .hero-image {
    flex: none;
    width: 100%;
  }
  .hero-img {
    height: 260px;
  }
  .about-grid {
    grid-template-columns: 1fr;
  }
  .hours-wrapper {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-badge {
    bottom: 0.5rem;
    right: 0.5rem;
  }
}

@media (max-width: 680px) {
  .nav-links {
    display: none;
  }
  .hamburger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--white);
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 200;
    font-size: 1.2rem;
  }
  .nav-links.open .nav-contact-btn {
    padding: 0.7rem 2rem;
  }

  .hero {
    padding: 3rem 0 3rem;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
  .admin-card {
    padding: 1.2rem 1.1rem;
  }
  .articles-table {
    display: block;
    overflow-x: auto;
  }
}
