/* ===== Ahinur Premium — Clean Professional Design ===== */

/* --------------------------------------------------------
   ROOT TOKENS
   -------------------------------------------------------- */
:root {
  --clr-bg:          #ffffff;
  --clr-bg-warm:     #f8f5ef;
  --clr-bg-surface:  #f2ede4;
  --clr-bg-dark:     #1b3a2d;
  --clr-bg-darker:   #132a1f;
  --clr-text:        #1a1a1a;
  --clr-text-muted:  #6b7280;
  --clr-text-faint:  #9ca3af;
  --clr-text-white:  #ffffff;
  --clr-accent:      #c9a84c;
  --clr-accent-light:#e2c97e;
  --clr-accent-dark: #a8893d;
  --clr-green:       #1b3a2d;
  --clr-green-light: #2d6a4f;
  --clr-border:      #e5e7eb;
  --clr-border-dark: rgba(255,255,255,0.12);
  --shadow-sm:       0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md:       0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg:       0 12px 40px rgba(0,0,0,0.10);
  --shadow-xl:       0 24px 64px rgba(0,0,0,0.12);
  --radius-card:     1rem;
  --radius-btn:      9999px;
}

/* --------------------------------------------------------
   BASE
   -------------------------------------------------------- */
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection { background: var(--clr-accent); color: #fff; }

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-border); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--clr-accent); }

/* --------------------------------------------------------
   ANIMATIONS
   -------------------------------------------------------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

/* --------------------------------------------------------
   SCROLL REVEAL
   -------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.revealed  { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(20px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right.revealed { opacity: 1; transform: translateX(0); }

/* --------------------------------------------------------
   NAVBAR
   -------------------------------------------------------- */
.site-nav {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--clr-border);
  transition: box-shadow 0.3s ease;
}
.site-nav.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  transition: color 0.2s ease;
  text-decoration: none;
  padding: 0.25rem 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.nav-link:hover {
  color: var(--clr-green);
  border-bottom-color: var(--clr-accent);
}

/* Mega menu dropdown */
.mega-menu {
  background: #fff;
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
}
.mega-trigger:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* --------------------------------------------------------
   HERO
   -------------------------------------------------------- */
.hero-section {
  background: var(--clr-bg-warm);
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 60c5.523 0 10 4.477 10 10H10c0-5.523 4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
}
.hero-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--clr-accent);
  animation: pulse-dot 2s ease-in-out infinite;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--clr-text);
}
.hero-title span {
  color: var(--clr-green);
  position: relative;
}
.hero-title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--clr-accent);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease 0.5s;
}
.hero-title span.animated::after { transform: scaleX(1); }

.hero-category-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--clr-bg-surface);
  aspect-ratio: 1/1;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.hero-category-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.hero-category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.hero-category-tile:hover img { transform: scale(1.06); }
.hero-category-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 55%);
}
.hero-category-tile .tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.hero-category-tile.featured {
  grid-row: span 2;
  aspect-ratio: auto;
}

/* --------------------------------------------------------
   BUTTONS
   -------------------------------------------------------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--clr-green);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 14px rgba(27, 58, 45, 0.25);
}
.btn-primary:hover {
  background: var(--clr-bg-darker);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27, 58, 45, 0.35);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: var(--clr-green);
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--clr-green);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-secondary:hover {
  background: var(--clr-green);
  color: #fff;
  transform: translateY(-1px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--clr-accent);
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(201, 168, 76, 0.3);
}
.btn-accent:hover {
  background: var(--clr-accent-dark);
  transform: translateY(-1px);
  color: #fff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: #fff;
  color: var(--clr-green);
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover {
  background: var(--clr-bg-warm);
  transform: translateY(-1px);
}

.btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: transparent;
  color: #fff;
  border-radius: var(--radius-btn);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

/* --------------------------------------------------------
   SECTION UTILITIES
   -------------------------------------------------------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-dark);
  margin-bottom: 0.75rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-accent);
  border-radius: 1px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  font-weight: 700;
  color: var(--clr-text);
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--clr-text-muted);
  max-width: 560px;
  line-height: 1.7;
}

/* --------------------------------------------------------
   BRAND TICKER
   -------------------------------------------------------- */
.brand-track {
  display: flex;
  gap: 4rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}
.brand-track:hover { animation-play-state: paused; }
.brand-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.5);
  transition: filter 0.3s ease;
}
.brand-logo:hover { filter: grayscale(0) opacity(1); }

/* --------------------------------------------------------
   FEATURE CARDS (aware-foodsolutions style)
   -------------------------------------------------------- */
.feature-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201, 168, 76, 0.3);
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--clr-bg-warm);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-green);
  margin-bottom: 1.25rem;
  transition: background 0.3s;
}
.feature-card:hover .feature-icon {
  background: var(--clr-green);
  color: #fff;
}

/* --------------------------------------------------------
   CATEGORY IMAGE TILES (aware-foodsolutions inspired)
   -------------------------------------------------------- */
.category-tile {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--clr-bg-surface);
  cursor: pointer;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
  text-decoration: none;
  display: block;
}
.category-tile:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.07); }
.category-tile .tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.1) 50%, transparent 100%);
  transition: background 0.3s;
}
.category-tile:hover .tile-overlay {
  background: linear-gradient(to top, rgba(27,58,45,0.85) 0%, rgba(27,58,45,0.2) 50%, transparent 100%);
}
.category-tile .tile-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem;
  color: #fff;
}
.category-tile .tile-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.category-tile .tile-content p {
  font-size: 0.8rem;
  opacity: 0.8;
}
.category-tile .tile-arrow {
  position: absolute;
  top: 1rem; right: 1rem;
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s, transform 0.3s;
  backdrop-filter: blur(4px);
}
.category-tile:hover .tile-arrow {
  opacity: 1;
  transform: scale(1);
}

/* --------------------------------------------------------
   PRODUCT CARDS
   -------------------------------------------------------- */
.product-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .card-img { transform: scale(1.05); }

/* Category tabs */
.cat-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  background: var(--clr-bg);
  border: 1.5px solid var(--clr-border);
  cursor: pointer;
  transition: all 0.2s;
}
.cat-tab:hover {
  border-color: var(--clr-green);
  color: var(--clr-green);
}
.cat-tab.active {
  background: var(--clr-green);
  border-color: var(--clr-green);
  color: #fff;
  box-shadow: 0 4px 12px rgba(27, 58, 45, 0.25);
}

/* --------------------------------------------------------
   CATALOG CARDS
   -------------------------------------------------------- */
.catalog-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
}
.catalog-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.catalog-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.catalog-card:hover .catalog-img { transform: scale(1.04); }

/* --------------------------------------------------------
   STATS SECTION
   -------------------------------------------------------- */
.stat-item {
  text-align: center;
  padding: 2rem;
}
.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--clr-green);
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* --------------------------------------------------------
   INFO CARDS (contact)
   -------------------------------------------------------- */
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.info-card:hover {
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: var(--shadow-sm);
}
.info-card-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--clr-green);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

/* --------------------------------------------------------
   MAP
   -------------------------------------------------------- */
.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--clr-border);
}
.map-container iframe {
  width: 100%;
  height: 240px;
  display: block;
  border: none;
}

/* --------------------------------------------------------
   CAREER CARD
   -------------------------------------------------------- */
.career-card {
  background: var(--clr-bg-warm);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 2rem;
}

/* --------------------------------------------------------
   MVV CARDS
   -------------------------------------------------------- */
.mvv-card {
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-card);
  padding: 2rem;
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
}
.mvv-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(27, 58, 45, 0.2);
}
.mvv-icon {
  width: 52px; height: 52px;
  background: var(--clr-bg-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
  margin-bottom: 1.25rem;
}

/* --------------------------------------------------------
   VALUES LIST
   -------------------------------------------------------- */
.values-list {
  list-style: none;
  padding: 0;
  margin: 0;
  space-y: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.check-icon {
  width: 20px; height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: var(--clr-green);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* --------------------------------------------------------
   DELIVERY GRID
   -------------------------------------------------------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .delivery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1024px) {
  .delivery-grid { grid-template-columns: repeat(6, 1fr); }
}
.delivery-country {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background: var(--clr-bg);
  border: 1px solid var(--clr-border);
  border-radius: 0.75rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.delivery-country:hover {
  border-color: rgba(27,58,45,0.3);
  box-shadow: var(--shadow-sm);
}
.country-flag {
  font-size: 1.75rem;
  line-height: 1;
}

/* --------------------------------------------------------
   INSTAGRAM BANNER
   -------------------------------------------------------- */
.instagram-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  background: linear-gradient(135deg, #e1306c 0%, #fd1d1d 50%, #fcb045 100%);
  border-radius: var(--radius-card);
  color: #fff;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}
.instagram-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(225, 48, 108, 0.35);
  color: #fff;
}

/* --------------------------------------------------------
   CTA SECTION
   -------------------------------------------------------- */
.cta-section {
  background: var(--clr-bg-dark);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  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='%23c9a84c' fill-opacity='0.05'%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");
  pointer-events: none;
}

/* --------------------------------------------------------
   WAREHOUSE HIGHLIGHT
   -------------------------------------------------------- */
.warehouse-highlight {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, var(--clr-bg-dark) 0%, var(--clr-green-light) 100%);
  border-radius: var(--radius-card);
  color: #fff;
}
.warehouse-icon {
  width: 56px; height: 56px;
  min-width: 56px;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-accent);
}

/* --------------------------------------------------------
   FOOTER
   -------------------------------------------------------- */
.site-footer {
  background: var(--clr-bg-dark);
  color: rgba(255,255,255,0.75);
}
.footer-border { border-color: rgba(255,255,255,0.1); }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  margin-bottom: 1rem;
}
.footer-link {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
  display: block;
  padding: 0.2rem 0;
}
.footer-link:hover { color: var(--clr-accent); }

/* --------------------------------------------------------
   FORM INPUTS
   -------------------------------------------------------- */
.form-input {
  width: 100%;
  padding: 0.625rem 1rem;
  background: var(--clr-bg-warm);
  border: 1.5px solid var(--clr-border);
  border-radius: 0.625rem;
  font-size: 0.875rem;
  color: var(--clr-text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus {
  border-color: var(--clr-green);
  box-shadow: 0 0 0 3px rgba(27, 58, 45, 0.08);
}
.form-input::placeholder { color: var(--clr-text-faint); }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--clr-text-muted);
  margin-bottom: 0.375rem;
}

/* --------------------------------------------------------
   HTMX INDICATOR
   -------------------------------------------------------- */
.htmx-indicator { display: none; }
.htmx-request .htmx-indicator { display: flex; }
.htmx-request.htmx-indicator { display: flex; }

@keyframes spin {
  to { transform: rotate(360deg); }
}
.spinner {
  width: 36px; height: 36px;
  border: 3px solid var(--clr-border);
  border-top-color: var(--clr-green);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

/* --------------------------------------------------------
   RESPONSIVE
   -------------------------------------------------------- */
@media (max-width: 768px) {
  .hero-title { font-size: 2.25rem; }
  .section-title { font-size: 1.75rem; }
  .stat-number { font-size: 2rem; }
}
