/* ==========================================================================
   LOS DAMASCUS CUSTOMS - DESIGN SYSTEM & RESPONSIVE STYLES
   ========================================================================== */

:root {
  /* Color Palette - Dark Navy & Warm Gold */
  --bg-main: #0e141d;
  --bg-surface: #141c28;
  --bg-card: #182332;
  --bg-card-hover: #1e2c3e;
  
  --primary: #dca249;
  --primary-hover: #efb55b;
  --primary-active: #c88f37;
  --primary-glow: rgba(220, 162, 73, 0.25);
  --primary-foreground: #0e141d;
  
  --text-main: #f5f6f8;
  --text-muted: #9ba6b5;
  --text-subtle: #6b7787;
  
  --border-light: rgba(255, 255, 255, 0.08);
  --border-focus: rgba(220, 162, 73, 0.4);
  --border-gold: rgba(220, 162, 73, 0.3);
  
  /* Typography */
  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-sans: 'Barlow', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout & Transitions */
  --max-width: 1200px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  line-height: 1.6;
  overflow-x: hidden;
  background-color: var(--bg-main);
  width: 100%;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 16px; /* 16px prevents iOS automatic zoom */
  color: inherit;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
  background: #253346;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Typography Utility */
.font-display {
  font-family: var(--font-display);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.text-gold {
  color: var(--primary);
}

.highlight-gold {
  color: var(--primary);
  font-weight: 600;
}

.section-label {
  font-family: var(--font-sans);
  font-size: clamp(0.7rem, 2.5vw, 0.85rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}

.section-label::before,
.section-label::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 2px;
  background-color: var(--primary);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

@media (min-width: 768px) {
  .container {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
  min-height: 44px; /* Touch target */
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  box-shadow: 0 4px 16px var(--primary-glow);
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--primary-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  border-color: var(--border-light);
  color: var(--text-main);
  backdrop-filter: blur(8px);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  background: rgba(220, 162, 73, 0.05);
}

.btn-outline-gold {
  background: transparent;
  border-color: var(--primary);
  color: var(--primary);
}

.btn-outline-gold:hover {
  background-color: var(--primary);
  color: var(--primary-foreground);
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  min-height: 38px;
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(14, 20, 29, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: var(--transition);
  padding-top: env(safe-area-inset-top, 0px);
}

.site-header.scrolled {
  background: rgba(14, 20, 29, 0.96);
  border-bottom-color: var(--border-light);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@media (min-width: 768px) {
  .nav-container {
    height: 80px;
  }
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
}

.brand-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--primary-glow);
  box-shadow: 0 0 15px rgba(220, 162, 73, 0.2);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-logo-img {
    width: 46px;
    height: 46px;
  }
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .brand-name {
    font-size: 1.5rem;
  }
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.menu-toggle-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 9px;
  touch-action: manipulation;
}

.menu-toggle-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-main);
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.menu-toggle-btn.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(14, 20, 29, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-light);
  padding: 1.75rem 1.25rem 2.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-120%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 99;
}

@media (min-width: 768px) {
  .mobile-nav-drawer {
    top: 80px;
  }
}

.mobile-nav-drawer.open {
  transform: translateY(0);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
}

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.mobile-nav-links .nav-link {
  font-size: 1.15rem;
  display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 50px;
  overflow: hidden;
  text-align: center;
}

@media (min-width: 768px) {
  .hero-section {
    min-height: 100vh;
    padding-top: 110px;
    padding-bottom: 70px;
  }
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  transform: scale(1.02);
  animation: heroZoom 22s ease-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1.0); }
  to { transform: scale(1.05); }
}

.hero-veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    rgba(14, 20, 29, 0.72) 0%,
    rgba(14, 20, 29, 0.86) 55%,
    rgba(14, 20, 29, 0.98) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* LOGO IN DER MITTE (CENTERED & RESPONSIVE) */
.hero-logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  width: 100%;
}

.hero-logo-img {
  width: clamp(140px, 32vw, 210px);
  height: clamp(140px, 32vw, 210px);
  margin: 0 auto;
  border-radius: 50%;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.8), 0 0 35px rgba(220, 162, 73, 0.25);
  border: 2px solid rgba(220, 162, 73, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  display: block;
}

.hero-logo-img:hover {
  transform: scale(1.03) rotate(2deg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.9), 0 0 45px rgba(220, 162, 73, 0.4);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 8.5vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-top: 0.85rem;
  margin-bottom: 1.25rem;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
  word-break: break-word;
  overflow-wrap: break-word;
  text-align: center;
}

.hero-description {
  font-size: clamp(0.95rem, 3.2vw, 1.2rem);
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 2rem auto;
  line-height: 1.65;
  text-align: center;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  width: 100%;
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.25rem;
  }
}

@media (max-width: 479px) {
  .hero-cta-group .btn {
    width: 100%;
    max-width: 320px;
  }
}

/* ==========================================================================
   SERVICES SECTION (#leistungen)
   ========================================================================== */
.services-section {
  padding: 4.5rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .services-section {
    padding: 6rem 0;
  }
}

.section-header {
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header {
    margin-bottom: 3.5rem;
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  line-height: 1;
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 3vw, 1.1rem);
  max-width: 600px;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-radius: var(--radius-md);
}

@media (min-width: 640px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    background-color: var(--border-light);
    border: 1px solid var(--border-light);
    overflow: hidden;
  }
}

@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background-color: var(--bg-card);
  padding: 1.75rem 1.25rem;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-light);
}

@media (min-width: 640px) {
  .service-card {
    padding: 2.5rem 2rem;
    border-radius: 0;
    border: none;
  }
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.service-card:hover {
  background-color: var(--bg-card-hover);
  transform: translateY(-2px);
  z-index: 2;
}

.service-card:hover::before {
  width: 100%;
}

.service-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.service-icon-wrapper svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.5;
}

.service-card-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  color: var(--primary);
  letter-spacing: 0.02em;
  margin-bottom: 0.6rem;
  line-height: 1.1;
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   WORKSHOP SECTION (#werkstatt)
   ========================================================================== */
.workshop-section {
  padding: 4.5rem 0;
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}

@media (min-width: 768px) {
  .workshop-section {
    padding: 6rem 0;
  }
}

.workshop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .workshop-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
  }
}

.workshop-text-content {
  display: flex;
  flex-direction: column;
}

.workshop-description {
  color: var(--text-muted);
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  line-height: 1.75;
  margin-top: 1.25rem;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  border-top: 1px solid var(--border-light);
  padding-top: 1.75rem;
}

@media (min-width: 640px) {
  .stats-grid {
    gap: 1.5rem;
  }
}

.stat-item dt {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.5rem);
  color: var(--primary);
  line-height: 1;
}

.stat-item dd {
  font-size: clamp(0.65rem, 2.2vw, 0.75rem);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 0.35rem;
  line-height: 1.3;
}

.workshop-image-wrapper {
  position: relative;
  width: 100%;
}

.workshop-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

@media (min-width: 640px) {
  .workshop-img {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .workshop-img {
    height: 480px;
  }
}

.workshop-image-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  background: var(--bg-card);
  border: 1px solid var(--primary);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

@media (min-width: 768px) {
  .workshop-image-badge {
    display: block;
  }
}

/* ==========================================================================
   CONTACT SECTION (#kontakt)
   ========================================================================== */
.contact-section {
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 6rem 0;
  }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 640px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.plate {
  background-color: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.25rem;
  transition: var(--transition);
  position: relative;
  display: block;
}

@media (min-width: 768px) {
  .plate {
    padding: 2rem;
  }
}

a.plate:hover {
  background-color: var(--bg-card);
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4), 0 0 20px rgba(220, 162, 73, 0.1);
}

.plate-icon {
  color: var(--primary);
  margin-bottom: 1rem;
}

.plate-icon svg {
  width: 26px;
  height: 26px;
}

.plate-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.plate-value {
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  color: var(--text-main);
  font-weight: 500;
  word-break: break-word;
}

.plate-subvalue {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* Quick Appointment CTA Banner */
.appointment-banner {
  margin-top: 3.5rem;
  background: linear-gradient(135deg, #182332 0%, #111a26 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 640px) {
  .appointment-banner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 3rem 2.5rem;
  }
}

.appointment-banner-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 3rem);
  line-height: 1;
  color: var(--text-main);
}

.appointment-banner-desc {
  color: var(--text-muted);
  max-width: 600px;
  font-size: clamp(0.95rem, 3vw, 1.05rem);
  margin-top: 0.5rem;
  line-height: 1.6;
}

.appointment-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

@media (min-width: 480px) {
  .appointment-banner-actions {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: auto;
  }
}

@media (max-width: 479px) {
  .appointment-banner-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-light);
  background-color: #090e15;
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    text-align: left;
  }
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.footer-address {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-legal {
  font-size: 0.85rem;
  color: var(--text-subtle);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

@media (min-width: 768px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal-link {
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}

.footer-legal-link:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-legal-divider {
  color: var(--border-light);
}

/* ==========================================================================
   LEGAL PAGES (IMPRESSUM & DATENSCHUTZ)
   ========================================================================== */
.legal-card {
  background: linear-gradient(145deg, rgba(20, 28, 40, 0.92) 0%, rgba(14, 20, 29, 0.96) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 30px rgba(220, 162, 73, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  line-height: 1.75;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .legal-card {
    padding: 3.5rem 3rem;
  }
}

.legal-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border-light);
}

.legal-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.legal-heading-2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--primary);
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.legal-heading-3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}

.legal-card p {
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-card ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}

.legal-card li {
  margin-bottom: 0.4rem;
}

.legal-card strong {
  color: var(--text-main);
}

.legal-card a {
  color: var(--primary);
  text-decoration: underline;
  word-break: break-all;
}

.legal-card a:hover {
  color: var(--primary-hover);
}

.contact-highlight-box {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-sm);
  padding: 1.25rem;
  margin: 1.25rem 0;
}

/* ==========================================================================
   FORM CONTROLS & INPUTS (RESPONSIVE)
   ========================================================================== */
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
}

.form-control {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  color: var(--text-main);
  outline: none;
  transition: var(--transition);
  min-height: 48px;
  font-size: 16px;
  width: 100%;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary-glow);
}

/* ==========================================================================
   DESKTOP MEDIA QUERIES
   ========================================================================== */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  
  .menu-toggle-btn {
    display: none;
  }
}

