/* =========================================
   Jamaican Peaks Party Rentals
   Design System & Styles
   ========================================= */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

/* === CSS Custom Properties === */
:root {
  /* Brand Colors - Jamaican Flag */
  --green: #009B3A;
  --green-dark: #007A2E;
  --green-light: #00C44A;
  --gold: #FED100;
  --gold-dark: #E5BC00;
  --gold-light: #FFE03A;
  --black: #1A1A1A;
  --black-pure: #000000;

  /* Accent Colors */
  --red: #E8292C;
  --red-dark: #C41E20;
  --teal: #00B4D8;
  --teal-dark: #0096B4;
  --orange: #FF8C00;
  --coral: #FF6B6B;

  /* Neutral Colors */
  --white: #FFFFFF;
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E8E8E8;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Dark Theme */
  --bg-primary: #0A0A0A;
  --bg-secondary: #141414;
  --bg-card: #1E1E1E;
  --bg-card-hover: #282828;
  --bg-glass: rgba(30, 30, 30, 0.8);
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.15);
  --text-primary: #FFFFFF;
  --text-secondary: #A3A3A3;
  --text-tertiary: #737373;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --max-width: 1200px;
  --nav-height: 70px;

  /* Borders */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow-green: 0 0 30px rgba(0, 155, 58, 0.3);
  --shadow-glow-gold: 0 0 30px rgba(254, 209, 0, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

a:hover {
  color: var(--gold-light);
}

ul {
  list-style: none;
}

/* === Typography === */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

h4 {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
}

.section-title {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-title h2 {
  display: inline-block;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: var(--radius-full);
}

.section-title p {
  color: var(--text-secondary);
  margin-top: var(--space-md);
  font-size: 1.1rem;
}

/* === Utility === */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-4xl) 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* === Animations === */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }

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

@keyframes bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {

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

  50% {
    transform: scale(1.05);
  }
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-100%) rotate(0deg);
    opacity: 1;
  }

  100% {
    transform: translateY(100vh) rotate(720deg);
    opacity: 0;
  }
}

@keyframes gradient-shift {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  background: var(--bg-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  transition: background var(--transition-base);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  box-shadow: var(--shadow-md);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.nav-logo img {
  height: 50px;
  width: auto;
  border-radius: var(--radius-sm);
}

.nav-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--gold);
  line-height: 1.1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white) !important;
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-full);
  font-weight: 600 !important;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-green);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--space-sm);
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
  border-radius: 2px;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 30% 50%, rgba(0, 155, 58, 0.15), transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(254, 209, 0, 0.1), transparent 60%),
    var(--bg-primary);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 155, 58, 0.08), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(254, 209, 0, 0.08), transparent 50%);
  pointer-events: none;
}

.hero-content {
  text-align: center;
  padding: calc(var(--nav-height) + var(--space-2xl)) var(--space-lg) var(--space-2xl);
  max-width: 800px;
  animation: fadeInUp 0.8s ease forwards;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: rgba(0, 155, 58, 0.15);
  border: 1px solid rgba(0, 155, 58, 0.3);
  color: var(--green-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: var(--space-lg);
}

.hero-badge::before {
  content: '🎉';
}

.hero h1 {
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--white));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--green-light), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  flex-wrap: wrap;
}

.hero-image {
  margin-top: var(--space-2xl);
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image img {
  max-width: 480px;
  width: 90%;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 40px rgba(0, 155, 58, 0.25), 0 0 60px rgba(0, 155, 58, 0.1);
  border: 3px solid rgba(0, 155, 58, 0.3);
  margin: 0 auto;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius-full);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(0, 155, 58, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(0, 155, 58, 0.5);
  color: var(--white);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-medium);
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--black);
  box-shadow: 0 4px 15px rgba(254, 209, 0, 0.3);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(254, 209, 0, 0.5);
  color: var(--black);
}

.btn-lg {
  padding: 1rem 2.2rem;
  font-size: 1.1rem;
}

/* === About Section === */
.about {
  background: var(--bg-secondary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.about-text h2 {
  margin-bottom: var(--space-lg);
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: var(--space-md);
  font-size: 1.05rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.feature-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md);
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  transition: all var(--transition-base);
}

.feature-item:hover {
  border-color: var(--green);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.feature-label {
  font-weight: 600;
  font-size: 0.9rem;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.about-image::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: calc(var(--radius-lg) + 8px);
  border: 2px solid var(--green);
  opacity: 0.3;
  pointer-events: none;
}

/* === Catalog Section === */
.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: var(--space-xl);
  margin-top: var(--space-xl);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: all var(--transition-base);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-body .btn {
  margin-top: auto;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.product-card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: var(--green);
  color: var(--white);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

/* === Image Carousel === */
.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.carousel-slides {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity var(--transition-base), transform 0.5s ease;
  pointer-events: none;
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  color: var(--white);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all var(--transition-base);
  z-index: 2;
  opacity: 0;
}

.product-card:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  color: var(--gold);
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--transition-base);
}

.product-card:hover .carousel-dots {
  opacity: 1;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0;
}

.carousel-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.product-card-body {
  padding: var(--space-lg);
}

.product-card-body h3 {
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.product-card-body .description {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
  min-height: 5.4em;
}

/* Pricing Table inside card */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: var(--space-lg);
}

.pricing-table tr {
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-table tr:last-child {
  border-bottom: none;
}

.pricing-table td {
  padding: 0.6rem 0;
  font-size: 0.95rem;
}

.pricing-table td:first-child {
  color: var(--text-secondary);
}

.pricing-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.pricing-table .best-value td {
  color: var(--green-light);
}

.pricing-table .best-value td:last-child {
  color: var(--green-light);
}

.product-card .btn {
  width: 100%;
  justify-content: center;
}

.tax-disclaimer {
  text-align: center;
  margin-top: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  background: rgba(254, 209, 0, 0.1);
  border: 1px solid rgba(254, 209, 0, 0.2);
  border-radius: var(--radius-md);
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 500;
}

/* === Booking Section === */
.booking {
  background: var(--bg-secondary);
}

.booking-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.booking-info h2 {
  margin-bottom: var(--space-md);
}

.booking-info p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: var(--space-xl);
}

.booking-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
}

.step-text h4 {
  margin-bottom: 0.2rem;
}

.step-text p {
  color: var(--text-tertiary);
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* === Form Styles === */
.booking-form {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: var(--space-2xl);
}

.form-group {
  margin-bottom: var(--space-lg);
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  color: var(--text-primary);
}

.form-group label .required {
  color: var(--red);
  margin-left: 2px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-secondary);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(0, 155, 58, 0.15);
}

/* Date & Time inputs — ensure visibility on dark backgrounds */
.form-input[type="date"],
.form-input[type="time"] {
  color-scheme: dark;
  color: #FFFFFF;
  background-color: var(--bg-card);
  -webkit-appearance: none;
  appearance: none;
}

.form-input[type="date"]::-webkit-datetime-edit,
.form-input[type="time"]::-webkit-datetime-edit {
  color: #FFFFFF;
}

.form-input[type="date"]::-webkit-datetime-edit-fields-wrapper,
.form-input[type="time"]::-webkit-datetime-edit-fields-wrapper {
  color: #FFFFFF;
}

.form-input[type="date"]::-webkit-datetime-edit-text,
.form-input[type="time"]::-webkit-datetime-edit-text {
  color: rgba(255, 255, 255, 0.5);
}

.form-input[type="date"]::-webkit-datetime-edit-month-field,
.form-input[type="date"]::-webkit-datetime-edit-day-field,
.form-input[type="date"]::-webkit-datetime-edit-year-field,
.form-input[type="time"]::-webkit-datetime-edit-hour-field,
.form-input[type="time"]::-webkit-datetime-edit-minute-field,
.form-input[type="time"]::-webkit-datetime-edit-ampm-field {
  color: #FFFFFF;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator,
.form-input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(1) brightness(2) drop-shadow(0 0 1px #fff) drop-shadow(0 0 2px rgba(255, 255, 255, 0.5));
  cursor: pointer;
  opacity: 1;
  padding: 4px;
  min-width: 20px;
  min-height: 20px;
  transition: filter var(--transition-fast);
}

.form-input[type="date"]::-webkit-calendar-picker-indicator:hover,
.form-input[type="time"]::-webkit-calendar-picker-indicator:hover {
  filter: invert(1) brightness(2) drop-shadow(0 0 2px #fff) drop-shadow(0 0 4px rgba(0, 155, 58, 0.6));
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-tertiary);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23737373' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

.form-textarea {
  resize: vertical;
  min-height: 80px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Address autocomplete */
.address-wrapper {
  position: relative;
}

.address-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-top: none;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  max-height: 200px;
  overflow-y: auto;
  z-index: 100;
  display: none;
}

.address-suggestions.active {
  display: block;
}

.address-suggestion {
  padding: 0.6rem 1rem;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: background var(--transition-fast);
  border-bottom: 1px solid var(--border-subtle);
}

.address-suggestion:last-child {
  border-bottom: none;
}

.address-suggestion:hover {
  background: var(--bg-card-hover);
  color: var(--text-primary);
}

/* Checkbox */
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
  appearance: none;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-medium);
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  margin-top: 2px;
  transition: all var(--transition-fast);
  background: var(--bg-secondary);
}

.form-checkbox input[type="checkbox"]:checked {
  background: var(--green);
  border-color: var(--green);
}

.form-checkbox input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.form-checkbox span {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.form-checkbox a {
  text-decoration: underline;
}

/* Form validation */
.form-input.error,
.form-select.error,
.form-textarea.error {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(232, 41, 44, 0.15);
}

.form-error {
  color: var(--red);
  font-size: 0.8rem;
  margin-top: var(--space-xs);
  display: none;
}

.form-error.visible {
  display: block;
}

/* Success message */
.form-success {
  display: none;
  text-align: center;
  padding: var(--space-2xl);
}

.form-success.visible {
  display: block;
}

.form-success .success-icon {
  font-size: 4rem;
  margin-bottom: var(--space-md);
}

.form-success h3 {
  color: var(--green-light);
  margin-bottom: var(--space-sm);
}

.form-success p {
  color: var(--text-secondary);
}

/* === Terms & Conditions === */
.terms {
  background: var(--bg-primary);
}

.terms-container {
  max-width: 800px;
  margin: 0 auto;
}

.terms-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.terms-item {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.terms-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-lg);
  cursor: pointer;
  transition: background var(--transition-fast);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--text-primary);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.terms-header:hover {
  background: var(--bg-card-hover);
}

.terms-arrow {
  transition: transform var(--transition-base);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

.terms-item.active .terms-arrow {
  transform: rotate(180deg);
}

.terms-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.terms-body-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.8;
}

.terms-body-inner ul {
  list-style: disc;
  margin-left: var(--space-xl);
  margin-top: var(--space-sm);
}

.terms-body-inner li {
  margin-bottom: var(--space-xs);
}

/* === Downloads Section === */
.downloads {
  background: var(--bg-secondary);
}

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  max-width: 1000px;
  margin: var(--space-xl) auto 0;
}

.download-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: center;
  transition: all var(--transition-base);
}

.download-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.download-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
}

.download-card-body {
  padding: var(--space-lg);
}

.download-card-body h3 {
  margin-bottom: var(--space-sm);
  font-size: 1.1rem;
}

.download-card-body p {
  color: var(--text-tertiary);
  font-size: 0.85rem;
  margin-bottom: var(--space-md);
}

/* QR Code Card */
.download-card--qr:hover {
  border-color: transparent;
  box-shadow:
    0 4px 24px rgba(131, 58, 180, 0.15),
    0 0 0 1px rgba(131, 58, 180, 0.3);
}

.qr-card-img-wrapper {
  position: relative;
  background: linear-gradient(135deg, #fdf2f8, #fef3e2, #fdf2f8);
  padding: var(--space-lg);
}

.qr-card-img-wrapper img {
  aspect-ratio: 1/1;
  object-fit: contain;
  border-radius: var(--radius-md);
}

.qr-badge {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737) !important;
}

.btn-instagram {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.65rem 1.2rem;
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  color: var(--white);
  border: none;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  width: 100%;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(253, 29, 29, 0.35);
  filter: brightness(1.1);
}

/* Footer QR Widget */
.footer-qr-widget {
  margin-top: var(--space-lg);
}

.footer-qr-link {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-sm);
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-base);
  max-width: 240px;
}

.footer-qr-link:hover {
  border-color: transparent;
  background: linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, #833AB4, #FD1D1D, #F77737) border-box;
  border: 1px solid transparent;
  box-shadow: 0 2px 12px rgba(131, 58, 180, 0.2);
  transform: translateY(-2px);
}

.footer-qr-img {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  flex-shrink: 0;
}

.footer-qr-label {
  color: var(--text-secondary);
  font-size: 0.85rem;
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-qr-link:hover .footer-qr-label {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* === Footer === */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer-links h4 {
  margin-bottom: var(--space-md);
  color: var(--text-primary);
  font-size: 1rem;
}

.footer-links a {
  display: block;
  color: var(--text-secondary);
  padding: 0.3rem 0;
  font-size: 0.9rem;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg.footer-icon {
  flex-shrink: 0;
  color: var(--text-secondary);
}

.footer-contact-item a {
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.footer-contact-item a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: var(--space-xl);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.footer-bottom p {
  color: var(--text-tertiary);
  font-size: 0.85rem;
}

.social-links {
  display: flex;
  gap: var(--space-md);
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  font-size: 1.1rem;
}

.social-link:hover {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
  border-color: transparent;
  color: var(--white);
  transform: scale(1.1);
}

/* === Responsive Design === */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .about-image {
    order: -1;
    max-width: 500px;
    margin: 0 auto;
  }

  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

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

  .downloads-grid .download-card--qr {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-height: 60px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: calc(var(--nav-height) + var(--space-xl)) var(--space-xl) var(--space-xl);
    gap: var(--space-md);
    border-left: 1px solid var(--border-subtle);
    transition: right var(--transition-base);
    z-index: 999;
    align-items: flex-start;
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.1rem;
    width: 100%;
    padding: var(--space-sm) 0;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-content {
    padding-top: calc(var(--nav-height) + var(--space-xl));
  }

  .hero-image img {
    max-width: 350px;
  }

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

  .form-row {
    grid-template-columns: 1fr;
  }

  .downloads-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn-lg {
    width: 100%;
    justify-content: center;
  }
}

/* === Mobile Overlay === */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
}

.nav-overlay.active {
  display: block;
}

/* === Loading Spinner === */
.spinner {
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* === Toast Notification === */
.toast {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  color: var(--text-primary);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
  transition: transform var(--transition-base), opacity var(--transition-base);
  z-index: 9999;
  max-width: 350px;
}

.toast.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast.success {
  border-color: var(--green);
}

.toast.error {
  border-color: var(--red);
}