/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --brand: #49D100;
  --brand-deep: #3AA800;
  --dark-green: #062C12;
  --text-main: #0F172A;
  --text-muted: #64748B;
  --bg-main: #F8FAF9;
  --surface: #FFFFFF;
  --border: #E2E8F0;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 20px 25px -5px rgb(0 0 0 / 0.05), 0 8px 10px -6px rgb(0 0 0 / 0.05);

  --accent: var(--brand);
  --danger: #EF4444;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg-main);
  color: var(--text-main);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(73, 209, 0, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(22, 101, 52, 0.02) 0%, transparent 50%),
    linear-gradient(180deg, #FFFFFF 0%, #F8FAF9 100%);
}

.bg-canvas::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(73, 209, 0, 0.01) 0%, transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(6, 44, 18, 0.01) 0%, transparent 35%);
  animation: bgPulse 8s ease-in-out infinite alternate;
}

@keyframes bgPulse {
  from {
    opacity: 0.6;
  }

  to {
    opacity: 1;
  }
}

/* ===== PARTICLES ===== */
.particle {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  animation: float linear infinite;
  z-index: 0;
}

@keyframes float {
  0% {
    transform: translateY(100vh) rotate(0deg);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-20px) rotate(360deg);
    opacity: 0;
  }
}

/* ===== LAYOUT ===== */
.page-wrap {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
  padding: 40px 20px 40px;
}

/* ===== HEADER ===== */
.site-header {
  text-align: center;
  margin-bottom: 48px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: white;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}

.logo-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(73, 209, 0, 0.15);
}

.logo-text {
  text-align: left;
}

.logo-text .brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark-green);
  line-height: 1.2;
}

.logo-text .tagline {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--dark-green);
  line-height: 1.1;
  margin-bottom: 16px;
  font-weight: 700;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ===== PROGRESS STEPS ===== */
.steps-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 40px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
  transition: transform 0.2s;
}

.step-item:hover {
  transform: translateY(-2px);
}

.step-item:hover .step-bubble {
  border-color: var(--brand);
  color: var(--brand);
}

.step-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 18px;
  width: 80px;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
  z-index: -1;
}

.step-item.active:not(:last-child)::after,
.step-item.done:not(:last-child)::after {
  background: linear-gradient(90deg, var(--brand), rgba(0, 0, 0, 0.08));
}

.step-bubble {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: all 0.4s ease;
  background: #FFFFFF;
}

.step-item.active .step-bubble {
  border-color: var(--brand);
  background: var(--brand);
  color: white;
  box-shadow: 0 0 0 4px rgba(73, 209, 0, 0.15);
}

.step-item.done .step-bubble {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.step-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.step-item.active .step-label {
  color: var(--dark-green);
}

.step-connector {
  width: 40px;
  height: 2px;
  background: var(--border);
  flex-shrink: 0;
}

.step-connector.filled {
  background: var(--brand);
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-md);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-title {
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--dark-green);
  font-weight: 700;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.card-title::before {
  content: '';
  width: 32px;
  height: 3px;
  background: var(--brand);
  border-radius: 2px;
}

/* ===== FORM ELEMENTS ===== */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark-green);
  margin-bottom: 4px;
}

input,
select,
textarea {
  background: #F8FAFC;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  color: var(--text-main);
  outline: none;
  transition: all 0.2s;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  background: white;
  box-shadow: 0 0 0 4px rgba(73, 209, 0, 0.1);
}

input::placeholder,
textarea::placeholder {
  color: rgba(23, 38, 26, 0.35);
}

select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C9A84C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

select option {
  background: #F1F5F9;
  color: var(--text-main);
}

textarea {
  resize: vertical;
  min-height: 90px;
}

.input-icon-wrap {
  position: relative;
}

.input-icon-wrap input {
  padding-left: 42px;
}

.input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  pointer-events: none;
}

/* ===== GUEST COUNTER ===== */
.guest-counter {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.counter-item {
  background: rgba(0, 0, 0, 0.04);
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px 12px;
  text-align: center;
  transition: border-color 0.3s;
}

.counter-item:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.counter-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.counter-price-hint {
  font-size: 0.65rem;
  color: var(--brand);
  margin-bottom: 10px;
}

.counter-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.counter-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.4);
  background: transparent;
  color: var(--brand);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
}

.counter-btn:hover {
  background: var(--brand);
  color: var(--bg-main);
  border-color: var(--brand);
}

.counter-btn:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.counter-val {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main);
  min-width: 24px;
  text-align: center;
}

/* ===== EXTRAS ===== */
.extras-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.extra-card {
  position: relative;
  cursor: pointer;
}

.extra-card input[type="checkbox"],
.extra-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.extra-inner {
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px;
  transition: all 0.25s;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.extra-card input:checked+.extra-inner {
  border-color: var(--brand);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: 0 0 0 1px rgba(201, 168, 76, 0.2);
}

.extra-check {
  width: 20px;
  height: 20px;
  border: 1.5px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-size: 0.75rem;
  margin-top: 2px;
}

.extra-card input:checked~.extra-check,
.extra-card input:checked+.extra-inner .extra-check {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--bg-main);
}

.extra-info .extra-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
}

.extra-info .extra-price {
  font-size: 0.75rem;
  color: var(--brand);
  margin-top: 3px;
}

.extra-info .extra-desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 4px;
  line-height: 1.4;
}

/* ===== PRICING PANEL ===== */
.price-panel {
  position: sticky;
  top: 20px;
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

@media (max-width: 800px) {
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .price-panel {
    position: static;
  }
}

.price-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 24px;
}

.price-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}

.price-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark-green);
}

.price-live-badge {
  font-size: 0.65rem;
  background: rgba(76, 175, 80, 0.15);
  color: var(--accent);
  border: 1px solid rgba(76, 175, 80, 0.25);
  border-radius: 20px;
  padding: 3px 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.live-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 1.2s ease-in-out infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.price-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.87rem;
}

.price-row .label {
  color: var(--text-muted);
}

.price-row .value {
  color: var(--text-main);
  font-weight: 500;
}

.price-row .value.highlight {
  color: var(--brand);
}

.price-divider {
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  margin: 4px 0;
}

.price-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
}

.total-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.total-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--brand);
  line-height: 1;
  transition: all 0.3s ease;
}

.total-amount.updating {
  opacity: 0.4;
  transform: scale(0.95);
}

.per-person {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 4px;
  text-align: right;
}

.savings-badge {
  margin-top: 14px;
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.2);
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 0.78rem;
  color: #81C784;
  text-align: center;
  display: none;
}

.savings-badge.show {
  display: block;
}

/* ===== LKR PAYMENT BOX ===== */
.lkr-payment-box {
  margin-top: 18px;
  background: linear-gradient(135deg, rgba(14, 84, 139, 0.06), rgba(0, 180, 216, 0.03));
  border: 1.5px solid rgba(0, 180, 216, 0.18);
  border-radius: 12px;
  padding: 16px 18px;
  position: relative;
  overflow: hidden;
}

.lkr-payment-box::before {
  content: '🇱🇰';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  opacity: 0.18;
}

.lkr-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0288D1;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lkr-label::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 1.5px;
  background: #4FC3F7;
  opacity: 0.6;
}

.lkr-amount {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #0277BD;
  line-height: 1.1;
  transition: all 0.3s ease;
}

.lkr-amount.updating {
  opacity: 0.35;
  transform: scale(0.96);
}

.lkr-sub {
  font-size: 0.68rem;
  color: rgba(2, 119, 189, 0.7);
  margin-top: 5px;
}

.lkr-rate-note {
  font-size: 0.64rem;
  color: rgba(2, 119, 189, 0.6);
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 180, 216, 0.15);
}

/* ===== EMAIL CONFIG ===== */
.email-config-box {
  background: rgba(0, 0, 0, 0.03);
  border: 1.5px dashed rgba(0, 0, 0, 0.12);
  border-radius: var(--radius-sm);
  padding: 20px;
}

.email-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  cursor: pointer;
}

.email-toggle-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-main);
}

.email-toggle-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Toggle Switch */
.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.toggle-switch input {
  display: none;
}

.toggle-track {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
}

.toggle-track::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: transform 0.3s;
}

.toggle-switch input:checked+.toggle-track {
  background: var(--brand);
}

.toggle-switch input:checked+.toggle-track::after {
  transform: translateX(20px);
}

.email-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.email-type-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.email-pill {
  position: relative;
  cursor: pointer;
}

.email-pill input {
  display: none;
}

.pill-inner {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: all 0.2s;
}

.email-pill input:checked+.pill-inner {
  border-color: var(--brand);
  background: rgba(201, 168, 76, 0.12);
  color: var(--brand);
}

/* ===== ACCOMMODATION CARDS ===== */
.accommodation-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 12px;
}

.accom-card {
  position: relative;
  cursor: pointer;
}

.accom-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.accom-inner {
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 18px 14px;
  transition: all 0.25s;
  text-align: center;
}

.accom-card input:checked+.accom-inner {
  border-color: var(--brand);
  background: rgba(201, 168, 76, 0.08);
}

.accom-icon {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.accom-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-main);
}

.accom-desc {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 3px;
}

.accom-rate {
  font-size: 0.82rem;
  color: var(--brand);
  margin-top: 6px;
  font-weight: 500;
}

/* ===== TRANSPORT ===== */
.transport-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 10px;
}

.transport-card {
  position: relative;
  cursor: pointer;
}

.transport-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.transport-inner {
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 14px;
  text-align: center;
  transition: all 0.25s;
}

.transport-card input:checked+.transport-inner {
  border-color: var(--brand);
  background: rgba(201, 168, 76, 0.08);
}

.transport-icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.transport-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
}

.transport-addon {
  font-size: 0.7rem;
  color: var(--brand);
  margin-top: 4px;
}

/* ===== TERMS & AGREEMENT ===== */
.terms-agreement-wrap {
  margin-bottom: 25px;
  padding: 0 5px;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-box {
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  background-color: #F8FAFC;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2px;
}

.custom-checkbox-label:hover .checkbox-box {
  border-color: var(--brand);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(73, 209, 0, 0.1);
}

.custom-checkbox-label input:checked~.checkbox-box {
  background-color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 10px rgba(73, 209, 0, 0.2);
}

.checkbox-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2.5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.custom-checkbox-label input:checked~.checkbox-box:after {
  display: block;
}

.checkbox-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s;
}

.checkbox-text a:hover {
  color: var(--brand-deep);
  text-decoration-color: var(--brand-deep);
}

/* ===== FORM ACTIONS ===== */
.form-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
  min-width: 200px;
}

.btn-primary {
  background: var(--brand);
  color: white;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(73, 209, 0, 0.3);
}

.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(73, 209, 0, 0.4);
}

.btn-secondary {
  background: #F8FAFC;
  color: var(--dark-green);
  border: 1px solid var(--border);
  font-weight: 600;
}

.btn-secondary:hover {
  color: var(--brand);
}

/* ===== TOAST ===== */
.toast-container {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #F1F5F9;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-sm);
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--text-main);
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: slideIn 0.35s ease;
  max-width: 320px;
}

.toast.success {
  border-left: 3px solid var(--accent);
}

.toast.error {
  border-left: 3px solid var(--danger);
}

.toast.info {
  border-left: 3px solid var(--brand);
}

@keyframes slideIn {
  from {
    transform: translateX(120%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(120%);
    opacity: 0;
  }
}

/* ===== SUCCESS SCREEN ===== */
.success-screen {
  display: none;
  text-align: center;
  padding: 60px 20px;
}

.success-screen.show {
  display: block;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--accent), #1B5E20);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 24px;
  box-shadow: 0 0 40px rgba(76, 175, 80, 0.3);
  animation: popIn 0.5s ease;
}

@keyframes popIn {
  0% {
    transform: scale(0);
  }

  70% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
  }
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--text-main);
  margin-bottom: 12px;
}

.success-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.booking-ref {
  display: inline-block;
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 10px;
  padding: 14px 28px;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brand);
  letter-spacing: 4px;
  margin-bottom: 32px;
}

.summary-list {
  background: var(--glass);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: left;
  max-width: 500px;
  margin: 0 auto 32px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.88rem;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-row .s-label {
  color: var(--text-muted);
}

.summary-row .s-val {
  color: var(--text-main);
  font-weight: 500;
}

/* ===== VALIDATION ===== */
.field-error {
  font-size: 0.72rem;
  color: var(--danger);
  margin-top: 4px;
}

input.invalid,
select.invalid {
  border-color: var(--danger) !important;
  background: rgba(229, 115, 115, 0.06) !important;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 600px) {
  .card {
    padding: 20px;
  }

  .form-actions {
    flex-direction: column;
  }



  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .guest-counter {
    grid-template-columns: 1fr;
  }

  .steps-bar {
    gap: 0;
  }

  .step-label {
    display: none;
  }
}

/* ===== STRIPE PAYMENT MODAL OVERLAY (FIXED) ===== */
.stripe-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* darkened backdrop */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 9999;
  display: none;
  /* JS will set to flex */
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.stripe-modal-content {
  background: #ffffff;
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  position: relative;
  animation: modalPop 0.3s ease-out;
}

@keyframes modalPop {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.stripe-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

.stripe-modal-header h3 {
  margin: 0;
  color: #1a1a1a;
  font-size: 1.5rem;
}

#closeStripeModal {
  background: #f3f4f6;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #6b7280;
  transition: all 0.2s;
}

#closeStripeModal:hover {
  background: #fee2e2;
  color: #ef4444;
}

/* Modal Payment Summary */
.modal-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 15px;
  margin-bottom: 25px;
}

.ms-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.ms-row.total {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px dashed #cbd5e1;
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1rem;
}

.ms-row.balance {
  color: var(--dark-green);
  font-weight: 600;
}

/* Ticket Card Stylings */
.ticket-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  overflow: visible;
  /* Changed from hidden to avoid clipping */
  margin-top: 30px;
  margin-bottom: 40px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  -webkit-print-color-adjust: exact;
  print-color-adjust: exact;
}

.ticket-header {
  background: #f9fafb;
  padding: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px dashed #e5e7eb;
}

.ticket-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ticket-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.brand-main {
  display: block;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--dark-green);
  line-height: 1.1;
}

.brand-sub {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
}

.ticket-ref-box {
  text-align: right;
}

.ref-label {
  display: block;
  font-size: 0.65rem;
  color: var(--text-muted);
  font-weight: 700;
  text-transform: uppercase;
}

.ref-code {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--brand);
}

.ticket-body {
  padding: 30px;
}

.ticket-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.ts-group {
  display: flex;
  flex-direction: column;
}

.ts-label {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}

.ts-val {
  font-size: 1rem;
  color: #1f2937;
  font-weight: 600;
}

.ticket-divider {
  height: 1px;
  background: #f3f4f6;
  margin: 15px 0 25px 0;
}

.ticket-footer {
  background: #f9fafb;
  padding: 20px 30px;
  border-top: 1px solid #f3f4f6;
  text-align: center;
}

.ticket-footer p {
  font-size: 0.8rem;
  color: #6b7280;
  margin: 0 0 10px 0;
}

.ticket-foot-links {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.success-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 40px;
  margin-bottom: 40px;
  /* Added bottom margin for breathing room */
}

@media (max-width: 480px) {
  .ticket-section {
    grid-template-columns: 1fr;
    gap: 15px;
  }
}

/* Stripe Card Element Styling */
.card-element-container {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 35px;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 54px;
  box-sizing: border-box;
}

.card-element-container.focused {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(73, 209, 0, 0.1);
}

.card-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--dark-green);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

/* Success Screen Stylings */
.success-screen {
  display: none;
  text-align: center;
  padding: 60px 20px;
  max-width: 800px;
  margin: 0 auto;
  animation: fadeIn 0.6s ease-out;
}

.success-screen.show {
  display: block !important;
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--dark-green);
  margin-bottom: 10px;
}

.success-sub {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== PREMIUM DIGITAL TICKET STYLES ===== */
.digital-ticket {
  background: #ffffff;
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15),
    0 18px 36px -18px rgba(0, 0, 0, 0.1);
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  text-align: left;
}

.ticket-watermark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.12;
  pointer-events: none;
  z-index: 1;
}

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

.dt-container {
  position: relative;
  z-index: 2;
  padding: 50px;
}

.dt-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1.5px solid rgba(0, 0, 0, 0.06);
}

.dt-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.dt-logo img {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.dt-brand-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  margin: 0;
}

.dt-brand-sub {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand);
  letter-spacing: 3px;
  margin: 4px 0 0 0;
  text-transform: uppercase;
}

.verified-seal {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ebfbee;
  padding: 6px 16px;
  border-radius: 50px;
  border: 1.5px solid #d3f9d8;
  box-shadow: 0 4px 12px rgba(64, 192, 87, 0.1);
}

.seal-icon {
  background: #40c057;
  color: white;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.seal-icon svg {
  display: block;
}

.seal-main {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  color: #166534;
  line-height: 1;
}

.seal-sub {
  font-size: 0.6rem;
  color: #15803d;
  font-weight: 600;
}

.dt-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8fafc;
  padding: 25px 35px;
  border-radius: 16px;
  margin-bottom: 40px;
}

.dt-ref {
  display: flex;
  flex-direction: column;
}

.dt-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.dt-val {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e293b;
}

.dt-val.highlight {
  font-family: 'Outfit', sans-serif;
  font-size: 1.7rem;
  color: var(--brand);
  letter-spacing: 1px;
}

.dt-qr {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.dt-qr img {
  width: 90px;
  height: 90px;
  padding: 6px;
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
}

.qr-hint {
  font-size: 0.6rem;
  font-weight: 800;
  color: #64748b;
  letter-spacing: 1px;
}

.dt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.dt-item {
  margin-bottom: 25px;
}

.dt-item.full {
  width: 100%;
}

.dt-para {
  margin: 5px 0 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  font-weight: 600;
  color: #334155;
}

.prize-text {
  font-size: 1.8rem;
  color: var(--brand);
  font-family: 'Playfair Display', serif;
}

.dt-horizontal-divider {
  height: 1.5px;
  background: rgba(0, 0, 0, 0.06);
  margin-bottom: 40px;
}

.dt-balance-strip {
  background: #fefce8;
  border: 1.5px dashed #fef08a;
  padding: 20px 30px;
  border-radius: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}

.balance-val {
  font-size: 1.5rem;
  font-weight: 800;
  color: #854d0e;
  display: block;
}

.arrival-label {
  background: #854d0e;
  color: white;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.dt-footer {
  margin-top: 50px;
  padding-top: 30px;
  padding-bottom: 60px;
  /* Added bottom padding for the card */
  border-top: 1.5px solid rgba(0, 0, 0, 0.06);
  text-align: center;
}

.dt-foot-note {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0 0 10px 0;
  font-style: italic;
}

.dt-foot-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
}

.dt-foot-info .dot {
  color: #cbd5e1;
}

@media (max-width: 600px) {
  .digital-ticket {
    margin: 20px 0;
    border-radius: 0;
  }

  .dt-container {
    padding: 30px 20px;
  }

  .dt-header {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .dt-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .dt-strip {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .prize-text {
    font-size: 1.5rem;
  }
}

/* ===== FORMAL PDF VOUCHER TEMPLATE STYLES (Print Optimized) ===== */
.pdf-printable-template {
  display: block;
  width: 790px;
  background: white;
  padding: 40px 60px 60px 60px;
  font-family: 'Outfit', sans-serif;
  color: #1a1a1a;
  line-height: 1.4;
  text-align: left;
  margin: 0;
  /* Remove auto-margin to prevent left clipping during capture */
}

/* Container to hide it from the web view without breaking the PDF engine */
.pdf-template-wrapper {
  position: fixed;
  top: 0;
  left: -9999px;
  /* Hide completely from display but keep renderable */
  width: 790px;
  background: white;
  z-index: -1000;
}

.pdf-footer {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 2px solid #f1f5f9;
}

.footer-auth {
  display: block;
  /* Change from flex to block to prevent PDF overlap issues */
  width: 100%;
}

.auth-box {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.qr-container img {
  width: 90px;
  height: 90px;
  border: 1px solid #eee;
  padding: 5px;
  border-radius: 8px;
}

.pdf-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 2px solid #0f172a;
  padding-bottom: 30px;
  margin-bottom: 40px;
}

.pdf-branding {
  display: flex;
  gap: 20px;
  align-items: center;
}

.pdf-logo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
}

.pdf-company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
}

.pdf-company-sub {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand);
  margin: 2px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.pdf-contact {
  font-size: 0.75rem;
  color: #64748b;
  margin: 4px 0 0 0;
}

.pdf-voucher-type {
  text-align: right;
}

.voucher-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0;
  color: #0f172a;
  letter-spacing: 1px;
}

.voucher-id {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand);
  margin: 5px 0 0 0;
}

.pdf-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.pdf-info-box {
  background: #f8fafc;
  padding: 15px 20px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.pdf-label {
  display: block;
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.pdf-val {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e293b;
}

.pdf-section {
  margin-bottom: 35px;
}

.pdf-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 8px;
  margin-bottom: 15px;
}

.pdf-table {
  width: 100%;
  border-collapse: collapse;
}

.pdf-table th {
  text-align: left;
  font-size: 0.85rem;
  color: #64748b;
  width: 30%;
  padding: 10px 0;
  border-bottom: 1px dashed #f1f5f9;
}

.pdf-table td {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1e293b;
  padding: 10px 0;
  border-bottom: 1px dashed #f1f5f9;
}

.pdf-price-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.9rem;
}

.pdf-price-row.total {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 2px solid #0f172a;
  font-weight: 800;
  font-size: 1.2rem;
}

.pdf-price-row.highlight {
  background: #fefce8;
  padding: 12px 20px;
  border-radius: 8px;
  margin-top: 15px;
  font-weight: 700;
  color: #854d0e;
}

.terms-list {
  padding-left: 20px;
  margin: 0;
}

.terms-list li {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 6px;
}

.pdf-footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #e2e8f0;
}

.footer-auth {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 20px;
}

.auth-box {
  display: flex;
  gap: 20px;
  align-items: center;
}

.qr-container img {
  width: 80px;
  height: 80px;
  padding: 5px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.seal-container {
  display: flex;
  flex-direction: column;
}

.verified-text {
  font-size: 0.7rem;
  font-weight: 900;
  color: #15803d;
  background: #f0fdf4;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 4px;
}

.auth-serial {
  font-size: 0.6rem;
  color: #94a3b8;
  font-family: monospace;
}

.signature-box {
  width: 250px;
  text-align: center;
}

.sig-line {
  border-bottom: 1.5px solid #0f172a;
  margin-bottom: 5px;
}

.sig-label {
  font-size: 0.65rem;
  font-weight: 800;
  color: #94a3b8;
}

.print-note {
  text-align: center;
  font-size: 0.6rem;
  color: #cbd5e1;
  margin: 20px 0 0 0;
}

/* ===== TERMS & AGREEMENT ===== */
.terms-agreement-wrap {
  margin-bottom: 25px;
  padding: 0 5px;
}

.custom-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  position: relative;
  user-select: none;
}

.custom-checkbox-label input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkbox-box {
  flex-shrink: 0;
  height: 20px;
  width: 20px;
  background-color: #F8FAFC;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  position: relative;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 2px;
}

.custom-checkbox-label:hover .checkbox-box {
  border-color: var(--brand);
  background-color: white;
  box-shadow: 0 0 0 4px rgba(73, 209, 0, 0.1);
}

.custom-checkbox-label input:checked~.checkbox-box {
  background-color: var(--brand);
  border-color: var(--brand);
  box-shadow: 0 4px 10px rgba(73, 209, 0, 0.2);
}

.checkbox-box:after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2.5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

.custom-checkbox-label input:checked~.checkbox-box:after {
  display: block;
}

.checkbox-text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: all 0.2s;
}

.checkbox-text a:hover {
  color: var(--brand-deep);
  text-decoration-color: var(--brand-deep);
}

/* ===== SITE FOOTER ===== */
.site-footer {
  margin-top: 80px;
  padding: 40px 20px 0px 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.footer-nav a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s;
}

.footer-nav a:hover {
  color: var(--brand);
}

.footer-nav .divider {
  color: rgba(0, 0, 0, 0.1);
  font-size: 0.8rem;
}

.footer-copyright {
  font-size: 0.74rem;
  color: var(--text-muted);
  margin: 0;
  opacity: 0.8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-copyright a {
  color: inherit;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-copyright a:hover {
  color: var(--brand);
}

.footer-copyright .copyright-divider {
  opacity: 0.3;
}

@media (max-width: 480px) {
  .footer-nav {
    gap: 12px;
  }

  .footer-copyright {
    flex-direction: column;
    gap: 5px;
  }

  .footer-copyright .copyright-divider {
    display: none;
  }
}