/* ============================================
   GOLF BRIDGE LOGISTICS — LANDING PAGE
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a2e23;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- CSS Variables --- */
:root {
  --green-900: #0c1a12;
  --green-700: #1a6b3c;
  --green-600: #1d7a44;
  --green-500: #22954f;
  --green-400: #3ecf8e;
  --green-300: #6dbb8a;
  --green-100: #e8f5ec;
  --green-50:  #f0f9f3;
  --blue-700:  #1a56db;
  --blue-600:  #2563eb;
  --blue-100:  #ebf2fa;
  --dark:      #0a1628;
  --gray-900:  #111827;
  --gray-700:  #374151;
  --gray-500:  #6b7280;
  --gray-300:  #d1d5db;
  --gray-100:  #f3f4f6;
  --white:     #ffffff;
  --section-padding: 80px 24px;
  --max-width: 1120px;
}

/* --- Utility --- */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* --- Scroll Animations --- */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }


/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 24px;
  transition: background 0.35s, box-shadow 0.35s, padding 0.35s;
}
.navbar.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.2);
  padding: 10px 24px;
}
.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 101;
}
.nav-logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.95);
  padding: 3px;
}
.nav-brand-text {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 12px;
}
.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.08);
  border: 2px solid transparent;
  border-radius: 6px;
  padding: 4px 8px;
  cursor: pointer;
  transition: border-color 0.2s, opacity 0.2s, background 0.2s;
  opacity: 0.5;
  color: rgba(255,255,255,0.6);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.lang-btn:hover { opacity: 0.8; background: rgba(255,255,255,0.12); }
.lang-btn.active {
  opacity: 1;
  border-color: var(--green-300);
  background: rgba(109,187,138,0.15);
  color: #fff;
}
.flag-icon {
  width: 20px;
  height: 10px;
  border-radius: 2px;
  display: block;
  overflow: hidden;
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 8px;
}
.nav-link {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
/* Hamburger button — visible on mobile only */
.nav-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
/* Animate to X when open */
.nav-burger.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.nav-burger.open span:nth-child(2) {
  opacity: 0;
}
.nav-burger.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* Mobile overlay menu */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,22,40,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.nav-overlay .nav-link {
  font-size: 22px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  padding: 14px 24px;
  border-radius: 12px;
  transition: color 0.2s, background 0.2s, transform 0.3s;
  transform: translateY(20px);
  opacity: 0;
}
.nav-overlay.open .nav-link {
  transform: translateY(0);
  opacity: 1;
}
.nav-overlay .nav-link:nth-child(1) { transition-delay: 0.05s; }
.nav-overlay .nav-link:nth-child(2) { transition-delay: 0.1s; }
.nav-overlay .nav-link:nth-child(3) { transition-delay: 0.15s; }
.nav-overlay .nav-link:nth-child(4) { transition-delay: 0.2s; }
.nav-overlay .nav-link:nth-child(5) { transition-delay: 0.25s; }
.nav-overlay .nav-link:nth-child(6) { transition-delay: 0.3s; }
.nav-overlay .nav-link:hover,
.nav-overlay .nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
}


/* ============================================
   SECTION 1: HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  background: var(--dark);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10,22,40,0.55) 0%,
    rgba(10,22,40,0.30) 30%,
    rgba(10,22,40,0.45) 60%,
    rgba(10,22,40,0.88) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 80px 24px 0;
}
.hero-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 12px;
}
.hero-tagline {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-300);
  margin-bottom: 16px;
}
.hero-headline {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
.hero-headline em {
  font-style: normal;
  color: var(--green-300);
}
.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
  max-width: 420px;
}
.hero-bottom { padding-bottom: 48px; }
.btn-primary {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: var(--green-700);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(26,107,60,0.4);
}
.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.btn-secondary {
  display: block;
  width: 100%;
  padding: 18px 32px;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 14px;
  cursor: pointer;
  text-align: center;
  letter-spacing: 0.01em;
  transition: all 0.25s;
}
.btn-secondary:hover, .btn-secondary:focus-visible {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
  transform: translateY(-2px);
}
.btn-primary:hover, .btn-primary:focus-visible {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,60,0.5);
}
.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  color: rgba(255,255,255,0.5);
  font-size: 12px;
  font-weight: 500;
}
.hero-trust span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-trust svg { width: 14px; height: 14px; opacity: 0.6; }


/* ============================================
   SECTION 2: HOW IT WORKS
   ============================================ */
.how-it-works {
  padding: var(--section-padding);
  background: var(--green-50);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-100);
  color: var(--green-700);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--green-900);
  margin-bottom: 12px;
  line-height: 1.15;
}
.section-subtitle {
  font-size: 16px;
  color: var(--gray-500);
  margin-bottom: 48px;
  max-width: 500px;
  line-height: 1.6;
}

/* Steps timeline */
.steps { display: flex; flex-direction: column; gap: 0; position: relative; }
.step {
  display: flex;
  gap: 20px;
  position: relative;
  padding-bottom: 40px;
}
.step:last-child { padding-bottom: 0; }
.step-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}
.step-number {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green-700);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 4px 12px rgba(26,107,60,0.25);
  position: relative;
  z-index: 1;
}
.step-line {
  width: 2px;
  flex: 1;
  background: linear-gradient(to bottom, var(--green-700), var(--green-300));
  opacity: 0.3;
  margin-top: 8px;
}
.step:last-child .step-line { display: none; }
.step-content { padding-top: 4px; flex: 1; }
.step-icon {
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.step-icon svg { width: 22px; height: 22px; color: var(--green-700); }
.step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 6px;
}
.step-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}


/* Locker showcase in How It Works */
.locker-showcase {
  margin-top: 56px;
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}
.locker-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}
.locker-caption {
  display: flex;
  gap: 16px;
  padding: 24px;
  align-items: flex-start;
}
.locker-caption-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: var(--green-100);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.locker-caption-icon svg {
  width: 22px;
  height: 22px;
  color: var(--green-700);
}
.locker-caption strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}
.locker-caption p {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
  margin: 0;
}


/* ============================================
   SECTION 3: ABOUT THE SERVICE
   ============================================ */
.about {
  padding: var(--section-padding);
  background: var(--white);
}
.about-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-image {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-text { display: flex; flex-direction: column; gap: 20px; }
.about-text p {
  font-size: 15px;
  color: var(--gray-700);
  line-height: 1.7;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 16px;
  background: var(--green-50);
  border-radius: 14px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--green-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-icon svg { width: 18px; height: 18px; color: var(--green-700); }
.about-feature-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-900);
  line-height: 1.4;
}


/* ============================================
   SECTION 4: FOR GOLF CLUBS
   ============================================ */
.for-clubs {
  padding: var(--section-padding);
  background: var(--dark);
  color: #fff;
}
.for-clubs .section-label {
  background: rgba(109,187,138,0.15);
  color: var(--green-300);
}
.for-clubs .section-title { color: #fff; }
.for-clubs .section-subtitle { color: rgba(255,255,255,0.6); }
.club-benefits {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}
.club-benefit {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  transition: background 0.3s;
}
.club-benefit:hover { background: rgba(255,255,255,0.08); }
.club-benefit-icon {
  width: 48px;
  height: 48px;
  background: rgba(109,187,138,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.club-benefit-icon svg { width: 22px; height: 22px; color: var(--green-300); }
.club-benefit-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}
.club-benefit-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border: 2px solid var(--green-300);
  color: var(--green-300);
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
  background: transparent;
}
.btn-outline:hover {
  background: var(--green-700);
  border-color: var(--green-700);
  color: #fff;
}
.btn-outline svg { width: 18px; height: 18px; }

/* Clubhouse image in For Golf Clubs */
.clubs-hero-image {
  margin: 32px 0 48px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.clubs-hero-image img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  object-position: center 40%;
}


/* ============================================
   SECTION 5: TRUST & QUALITY
   ============================================ */
.trust {
  padding: var(--section-padding);
  background: var(--white);
}
/* Trust hero image */
.trust-hero-image {
  margin: 32px 0 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.trust-hero-image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: center;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 8px;
}
.trust-card {
  padding: 28px 24px;
  border: 1px solid var(--gray-300);
  border-radius: 18px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.trust-card:hover {
  border-color: var(--green-300);
  box-shadow: 0 4px 20px rgba(26,107,60,0.08);
}
.trust-card-icon {
  width: 52px;
  height: 52px;
  background: var(--green-100);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-card-icon svg { width: 24px; height: 24px; color: var(--green-700); }
.trust-card-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--green-900);
  margin-bottom: 4px;
}
.trust-card-desc {
  font-size: 14px;
  color: var(--gray-500);
  line-height: 1.6;
}


/* ============================================
   SECTION: CONTACT US
   ============================================ */
.contact-us {
  padding: var(--section-padding);
  background: var(--dark);
}
.contact-us .section-label {
  background: rgba(109,187,138,0.15);
  color: var(--green-300);
}
.contact-us .section-title { color: #fff; }
.contact-us .section-subtitle { color: rgba(255,255,255,0.55); }

.contact-form {
  max-width: 680px;
  background: rgba(255,255,255,0.04);
  border-radius: 20px;
  padding: 36px 28px;
  border: 1px solid rgba(255,255,255,0.08);
}
.contact-form .form-group label {
  color: rgba(255,255,255,0.7);
}
.contact-form .form-group label .required { color: #f87171; }
.contact-form .form-group input,
.contact-form .form-group textarea {
  padding: 14px 16px;
  border: 1.5px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: #fff;
  background: rgba(255,255,255,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
  border-color: var(--green-300);
  box-shadow: 0 0 0 3px rgba(109,187,138,0.15);
}
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}
.contact-form .form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.contact-form .form-submit {
  width: 100%;
  padding: 16px;
  border: none;
  border-radius: 12px;
  background: var(--green-700);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.contact-form .form-submit:hover {
  background: var(--green-800);
  transform: translateY(-1px);
}
.contact-form .form-submit svg { width: 18px; height: 18px; }
.contact-form .form-footer-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  margin-top: 16px;
}

/* ============================================
   SECTION 6: FOOTER
   ============================================ */
.footer {
  padding: 48px 24px 32px;
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
}
.footer-top {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-logo {
  width: 40px; height: 40px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.95);
  padding: 3px;
}
.footer-brand-text h3 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}
.footer-brand-text p {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-contact-item:hover { color: var(--green-300); }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--green-300); }
.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}


/* ============================================
   FLOATING CTA BUTTON
   ============================================ */
.floating-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: var(--green-700);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(26,107,60,0.45), 0 2px 8px rgba(0,0,0,0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--green-600);
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 40px rgba(26,107,60,0.55), 0 4px 12px rgba(0,0,0,0.2);
}
.floating-cta svg { width: 18px; height: 18px; }


/* ============================================
   SECTION: SEND YOUR PARCEL FORM
   ============================================ */
.send-parcel {
  padding: var(--section-padding);
  background: var(--green-50);
}
.send-parcel .section-label {
  background: var(--green-100);
  color: var(--green-700);
}
.send-parcel .section-title { color: var(--green-900); }
.send-parcel .section-subtitle { color: var(--gray-500); }

.parcel-form {
  max-width: 680px;
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06), 0 1px 4px rgba(0,0,0,0.04);
  border: 1px solid var(--gray-100);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  letter-spacing: 0.01em;
}
.form-group label .required { color: #dc2626; margin-left: 2px; }
.form-group input,
.form-group select {
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}
.form-group select {
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}
.form-group input::placeholder { color: var(--gray-500); font-weight: 400; }

.delivery-type-group { margin-bottom: 16px; }
.delivery-type-group > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  display: block;
}
.delivery-options {
  display: flex;
  gap: 12px;
}
.delivery-option {
  flex: 1;
  position: relative;
}
.delivery-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.delivery-option label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.delivery-option input[type="radio"]:checked + label {
  border-color: var(--green-700);
  background: var(--green-100);
  color: var(--green-700);
  box-shadow: 0 0 0 3px rgba(26,107,60,0.1);
}
.delivery-option label:hover {
  border-color: var(--green-600);
}

.insurance-section {
  background: var(--gray-100);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
}
.insurance-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 4px;
}
.insurance-header svg { width: 18px; height: 18px; color: var(--green-700); }
.insurance-note {
  font-size: 13px;
  color: var(--gray-500);
  margin-bottom: 12px;
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  padding: 18px 32px;
  background: var(--green-700);
  color: #fff;
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(26,107,60,0.4);
}
.form-submit:hover {
  background: var(--green-600);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,107,60,0.5);
}

.form-footer-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-500);
  margin-top: 16px;
  line-height: 1.5;
}


/* ============================================
   RESPONSIVE — TABLET & DESKTOP
   ============================================ */
@media (min-width: 768px) {
  :root { --section-padding: 100px 48px; }

  /* Nav: show links, hide burger */
  .nav-links { display: flex; }
  .nav-burger { display: none; }

  .hero-content { padding: 80px 48px 0; }
  .hero-headline { font-size: 48px; }
  .hero-sub { font-size: 18px; }
  .hero-buttons { flex-direction: row; }
  .btn-primary, .btn-secondary { width: auto; display: inline-block; }
  .form-row-2 { grid-template-columns: 1fr 1fr; }
  .parcel-form { padding: 44px 40px; }

  .section-title { font-size: 38px; }

  .about-grid {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .about-image { flex: 1; min-width: 0; aspect-ratio: auto; }
  .about-text { flex: 1; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .club-benefits { flex-direction: row; flex-wrap: wrap; }
  .club-benefit { flex: 1; min-width: 280px; }

  .locker-image img { height: 340px; }
  .clubs-hero-image img { height: 360px; }
  .trust-hero-image img { height: 340px; }

  .footer-top { flex-direction: row; justify-content: space-between; align-items: flex-start; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 1024px) {
  :root { --section-padding: 120px 48px; }
  .hero-content { padding: 80px 80px 0; max-width: 1200px; margin: 0 auto; }
  .hero-headline { font-size: 56px; }

  .section-title { font-size: 42px; }
  .steps { max-width: 640px; }
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
  .about-features { grid-template-columns: 1fr 1fr; }

  .locker-showcase { max-width: 720px; }
  .locker-image img { height: 380px; }
  .clubs-hero-image img { height: 420px; }
  .trust-hero-image img { height: 380px; }
}

