/* ===========================
   CSS CUSTOM PROPERTIES
   =========================== */
:root {
  --yellow: #ffda1c;
  --yellow-dark: #e6c219;
  --black: #000000;
  --dark: #1a1a1a;
  --light-grey: #f5f5f5;
  --white: #ffffff;
  --max-width: 1200px;
  --radius: 10px;
  --transition: 0.3s ease;
}

/* ===========================
   RESET
   =========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--black); line-height: 1.5; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-weight: 900; line-height: 1.2; }

/* ===========================
   HEADER
   =========================== */
.site-header {
  background: var(--yellow);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
}
.header-spacer { flex: 1; }
.header-logo { flex: 0 0 auto; }
@media (max-width: 479px) {
  .header-inner { justify-content: space-between; }
  .header-spacer { display: none; }
}
.logo-img { height: 36px; width: auto; display: block; }
@media (min-width: 480px) { .logo-img { height: 48px; } }
@media (min-width: 768px) { .logo-img { height: 64px; } }
.header-actions { flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 12px; }

.lang-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
}
.flag-img { width: auto; height: 16px; display: block; border-radius: 2px; }
.lang-toggle:hover { background: rgba(0,0,0,0.08); }

.fb-link { color: var(--black); display: flex; align-items: center; }
.fb-link:hover { opacity: 0.65; }

/* ===========================
   BANNER CAROUSEL
   =========================== */
.banner-section { position: relative; overflow: hidden; background: var(--dark); }

.banner-carousel {
  position: relative;
  width: 100%;
  height: 260px;
}
@media (min-width: 600px)  { .banner-carousel { height: 380px; } }
@media (min-width: 1024px) { .banner-carousel { height: 650px; } }

.banner-slide {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}
.banner-slide.active { opacity: 1; pointer-events: auto; }

.banner-img { width: 100%; height: 100%; object-fit: cover; }

.banner-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  color: var(--white);
  border: none;
  font-size: 1.25rem;
  width: 40px; height: 40px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background var(--transition);
  z-index: 2;
}
.banner-btn:hover { background: rgba(0,0,0,0.7); }
.banner-prev { left: 10px; }
.banner-next { right: 10px; }

.banner-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.banner-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background var(--transition);
}
.banner-dot.active { background: var(--white); }

/* ===========================
   TRUST BADGES
   =========================== */
.badges-strip { background: var(--dark); padding: 14px 16px; }
.badges-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 32px;
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
  font-size: 0.82rem;
}
.badge-icon { width: 26px; height: 26px; color: var(--yellow); flex-shrink: 0; }

/* ===========================
   LOGO CAROUSEL
   =========================== */
.logos-section { padding: 32px 16px; background: var(--white); }
.logos-carousel { max-width: var(--max-width); margin: 0 auto; overflow: hidden; position: relative; }
.logos-viewport { position: relative; overflow: hidden; }

.logos-track {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.logos-track.slide-out-left  { transform: translateX(-100%); }
.logos-track.slide-out-right { transform: translateX(100%); }
.logos-track.slide-in-left   { transform: translateX(100%); }
.logos-track.slide-in-right  { transform: translateX(-100%); }
.logos-track.slide-in-left.active,
.logos-track.slide-in-right.active { transform: translateX(0); }
@media (min-width: 768px)  { .logos-track { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .logos-track { grid-template-columns: repeat(6, 1fr); } }

.logo-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  min-height: 80px;
}
.logo-cell img {
  max-height: 56px;
  max-width: 100%;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--transition);
}
.logo-cell img:hover { filter: grayscale(0); }

.logos-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 16px;
}
.logos-btn {
  background: var(--yellow);
  border: none;
  cursor: pointer;
  width: 34px; height: 34px;
  border-radius: 50%;
  font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.logos-btn:hover { background: var(--yellow-dark); }
.logos-dots { display: flex; gap: 8px; }
.logos-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: #ccc;
  cursor: pointer;
  transition: background var(--transition);
}
.logos-dot.active { background: var(--black); }

/* ===========================
   CONTACT SECTION
   =========================== */
.contact-section { padding: 48px 16px; background: var(--yellow); }
.contact-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .contact-inner { grid-template-columns: 3fr 2fr; } }

.contact-heading {
  font-size: 1.6rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
  line-height: 1.4;
}
.form-group { margin-bottom: 10px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.btn-submit {
  background: var(--dark);
  color: var(--white);
  border: none;
  padding: 11px 32px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--transition);
  font-family: inherit;
}
.btn-submit:hover { background: #333; }

.form-feedback { margin-top: 12px; font-weight: 700; min-height: 1.5em; }
.form-feedback.success { color: #2e7d32; }
.form-feedback.error   { color: #c62828; }

/* position:relative on parent ensures absolute child stays within the contact column */
.contact-form-col { position: relative; }
/* Honeypot: visually hidden but not display:none (some bots skip display:none fields) */
.honeypot {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

/* Focus styles for interactive buttons (keyboard navigation / WCAG 2.4.7) */
.banner-btn:focus-visible,
.banner-dot:focus-visible,
.logos-btn:focus-visible,
.logos-dot:focus-visible,
.lang-toggle:focus-visible,
.btn-submit:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

.contact-info-col { display: flex; flex-direction: column; justify-content: center; }
.contact-cta {
  font-weight: 900;
  font-size: 1.6rem;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.4;
}
.contact-name { margin-bottom: 6px; font-size: 1rem; }
.contact-name a { font-weight: 700; }
.contact-name a:hover,
.contact-email a:hover { text-decoration: underline; }

/* ===========================
   MAP + HOURS
   =========================== */
.map-hours-section { padding: 48px 16px; background: var(--white); }
.map-hours-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) { .map-hours-inner { grid-template-columns: 1fr 1fr; } }

.map-col iframe { border-radius: var(--radius); display: block; }

.hours-heading {
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hours-table { border-collapse: collapse; font-size: 1rem; }
.hours-table td { padding: 5px 20px 5px 0; }
.hours-table td:first-child { font-weight: 700; min-width: 80px; }

.notice-box {
  margin-top: 20px;
  font-weight: 700;
  font-size: 0.95rem;
}

/* ===========================
   FOOTER
   =========================== */
.site-footer {
  background: var(--yellow);
  color: var(--black);
  text-align: center;
  padding: 24px 16px;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
}
.footer-inner a { color: rgba(0,0,0,0.7); }
.footer-inner a:hover { color: var(--black); }

/* ===========================
   PRIVACY PAGE
   =========================== */
.privacy-page { padding: 48px 16px; min-height: 60vh; }
.privacy-inner { max-width: 800px; margin: 0 auto; }
.privacy-inner h1 { font-size: 1.8rem; margin-bottom: 24px; }
.privacy-inner h2 { font-size: 1.15rem; margin: 24px 0 10px; }
.privacy-inner p  { margin-bottom: 12px; line-height: 1.7; }
.privacy-inner ul { margin: 0 0 12px 24px; }
.privacy-inner li { margin-bottom: 4px; }
.privacy-inner a  { color: var(--black); text-decoration: underline; }
