@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@600;700;800;900&family=Lato:wght@400;700;900&display=swap');

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  /* Color Palette - Bright & Playful */
  --color-blue: #0066ff;
  --color-blue-light: #b3d9ff;
  --color-blue-soft: #e6f2ff;
  --color-yellow: #ffd700;
  --color-yellow-light: #fff9cc;
  --color-yellow-soft: #fffef0;
  --color-coral: #ff3366;
  --color-coral-light: #ffccdd;
  --color-coral-soft: #ffeef5;
  --color-lime: #00ff88;
  --color-lime-light: #ccffe6;
  --color-lime-soft: #f0fff8;
  --color-purple: #9966ff;
  --color-purple-light: #e6d9ff;
  --color-purple-soft: #f5f0ff;
  --color-orange: #ff6600;
  --color-orange-light: #ffd9b3;
  --color-orange-soft: #fff5eb;
  --color-text: #1a1a1a;
  --color-text-light: #4a5568;
  --color-white: #ffffff;
  --color-bg: #fafbfc;
}

body {
  margin: 0;
  font-family: 'Lato', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background-color: var(--color-bg);
  font-size: 1.05rem;
  line-height: 1.7;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text);
  margin: 0;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  font-family: 'Nunito', sans-serif;
}

h2 {
  font-size: clamp(1.8rem, 2.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-family: 'Nunito', sans-serif;
}

h3 {
  font-size: clamp(1.3rem, 1.8vw, 1.5rem);
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

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

a {
  color: var(--color-blue);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: var(--color-blue);
  text-decoration: underline;
}

.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;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.logo:hover {
  transform: scale(1.02);
  text-decoration: none;
}

.logo-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 4px rgba(37, 99, 235, 0.2));
  transition: transform 0.2s ease;
}

.logo:hover .logo-icon {
  transform: scale(1.05);
}

.logo-text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  line-height: 1.1;
}

.logo-mark {
  color: #0066ff;
  font-weight: 700;
  transition: color 0.2s ease;
  text-shadow: 0 2px 4px rgba(0, 102, 255, 0.2);
}

.logo-mark-alt {
  color: #ff3366;
  font-weight: 700;
  transition: color 0.2s ease;
  text-shadow: 0 2px 4px rgba(255, 51, 102, 0.2);
}

.logo:hover .logo-mark,
.logo:hover .logo-mark-alt {
  text-decoration: none;
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.main-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: all 0.2s ease;
}

.main-nav a:hover {
  background: var(--color-blue-soft);
  text-decoration: none;
  color: var(--color-blue);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: var(--color-white);
  cursor: pointer;
}

.nav-toggle-bar {
  width: 1.3rem;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 999px;
  transition: all 0.2s ease;
}

/* Hero Section */
.hero {
  padding: 4rem 0 3.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #9966ff 50%, #00ff88 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite reverse;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
  }
  
  .hero-text {
    order: 2;
    text-align: center;
  }
  
  .hero-gallery {
    order: 1;
  }
}

.hero-text h1 {
  margin: 0 0 1.25rem;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
}

.hero-lead {
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  font-family: 'Lato', sans-serif;
}

.eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1rem;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0066ff, #3366ff);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

.badge-family {
  background: linear-gradient(135deg, #ffd700, #ffed4e);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.badge-safe {
  background: linear-gradient(135deg, #00ff88, #33ffaa);
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.3);
}

.hero-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  width: 100%;
}

.hero-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.25), 0 10px 30px rgba(37, 99, 235, 0.2);
  background: var(--color-blue-light);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 4px solid rgba(255, 255, 255, 0.9);
  position: relative;
  aspect-ratio: 4 / 3;
}

.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.15) 0%, rgba(251, 113, 133, 0.15) 100%);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 1;
  pointer-events: none;
  border-radius: 32px;
}

.hero-image:hover::before {
  opacity: 1;
}

.hero-image:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 40px 100px rgba(15, 23, 42, 0.35), 0 16px 40px rgba(37, 99, 235, 0.3);
  border-color: rgba(255, 255, 255, 1);
}

.hero-image-large {
  min-height: 500px;
  aspect-ratio: 16 / 10;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  display: block;
}

.hero-image:hover img {
  transform: scale(1.1);
}

.hero-image-column {
  display: grid;
  grid-template-rows: 1fr;
  gap: 0;
}

.hero-image-column .hero-image {
  min-height: 400px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: none;
  padding: 0.875rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
  font-family: 'Lato', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn-primary {
  background: linear-gradient(135deg, #0066ff, #3366ff, #0066ff);
  background-size: 200% 200%;
  color: var(--color-white);
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.5), 0 0 20px rgba(0, 102, 255, 0.3);
  animation: gradient-shift 3s ease infinite;
}

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

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(0, 102, 255, 0.6), 0 0 30px rgba(0, 102, 255, 0.4);
  text-decoration: none;
  color: var(--color-white);
}

.btn-secondary {
  background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
  background-size: 200% 200%;
  color: #1a1a1a;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5), 0 0 20px rgba(255, 215, 0, 0.3);
  animation: gradient-shift 3s ease infinite;
  font-weight: 700;
}

.btn-secondary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6), 0 0 30px rgba(255, 215, 0, 0.4);
  text-decoration: none;
  color: #1a1a1a;
}

.btn-ghost {
  background: var(--color-white);
  color: var(--color-text);
  border: 2px solid #0066ff;
  box-shadow: 0 4px 12px rgba(0, 102, 255, 0.2);
}

.btn-ghost:hover {
  background: linear-gradient(135deg, #e6f2ff, #fff0f5);
  border-color: #0066ff;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 18px rgba(0, 102, 255, 0.3);
  text-decoration: none;
}

.btn-small {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
}

/* Sections */
.section {
  padding: 4rem 0;
  position: relative;
}

.section-alt-1 {
  background: linear-gradient(135deg, #e6f2ff 0%, #fff0f5 50%, #ffffff 100%);
}

.section-alt-2 {
  background: linear-gradient(135deg, #fffef0 0%, #f0fff8 50%, #ffffff 100%);
}

.section-alt-3 {
  background: linear-gradient(135deg, #ffeef5 0%, #fff9cc 50%, #ffffff 100%);
}

.section-alt-4 {
  background: linear-gradient(135deg, #f0fff8 0%, #e6f2ff 50%, #ffffff 100%);
}

.section-highlight {
  background: radial-gradient(circle at top left, var(--color-yellow-soft) 0%, var(--color-white) 60%);
  border-radius: 32px 32px 0 0;
  margin-top: 2rem;
  padding-top: 4rem;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  margin: 0;
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Feature Cards */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.75rem;
}

.feature-card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(0, 102, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #0066ff, #ff3366, #00ff88);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 102, 255, 0.25), 0 0 30px rgba(255, 51, 102, 0.2);
  border-color: transparent;
}

.feature-card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.2), 0 0 10px rgba(255, 51, 102, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.feature-card h3 {
  margin: 0.5rem 0 0;
}

.feature-card p {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.text-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-blue);
}

/* Steps Section */
.section-steps {
  background: var(--color-white);
  border-radius: 32px;
  margin: 2rem 0;
  padding: 3rem 0;
}

.steps-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.step-item {
  background: linear-gradient(135deg, #e6f2ff, #ffffff, #f0fff8);
  border-radius: 20px;
  padding: 1.5rem;
  position: relative;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2), 0 0 15px rgba(0, 255, 136, 0.1);
  border: 2px solid rgba(0, 102, 255, 0.2);
}

.step-number {
  position: absolute;
  top: -1rem;
  left: 1.5rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff3366, #ff6699, #ff3366);
  background-size: 200% 200%;
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 1.2rem;
  box-shadow: 0 8px 24px rgba(255, 51, 102, 0.5), 0 0 20px rgba(255, 51, 102, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.8);
  animation: gradient-shift 3s ease infinite;
}

.step-item h3 {
  font-size: 1.1rem;
  margin: 1rem 0 0.75rem;
}

.step-item p {
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
  color: var(--color-text-light);
}

.steps-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Banners */
.section-banners {
  background: linear-gradient(135deg, #0066ff 0%, #9966ff 30%, #ffd700 60%, #00ff88 100%);
  background-size: 400% 400%;
  border-radius: 32px;
  margin: 2rem 0;
  padding: 3rem 0;
  animation: gradient-shift 8s ease infinite;
  box-shadow: 0 12px 40px rgba(0, 102, 255, 0.2);
}

.banner-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.info-banner {
  border-radius: 24px;
  padding: 2rem;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.info-banner-blue {
  background: linear-gradient(135deg, #ffffff, #e6f2ff);
  border-left: 5px solid #0066ff;
  box-shadow: 0 8px 24px rgba(0, 102, 255, 0.15);
}

.info-banner-yellow {
  background: linear-gradient(135deg, #fffef0, #fff9cc);
  border-left: 5px solid #ffd700;
  box-shadow: 0 8px 24px rgba(255, 215, 0, 0.2);
}

.info-banner h2 {
  margin-top: 0;
  margin-bottom: 1rem;
}

.info-banner ul {
  padding-left: 1.25rem;
  margin: 0.75rem 0 0;
  line-height: 1.8;
}

/* CTA Section */
.section-cta-large {
  background: var(--color-white);
  border-radius: 32px;
  margin: 2rem 0;
  padding: 3rem 0;
}

.cta-large-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.cta-image img {
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

/* Disclaimer Block */
.disclaimer-block {
  background: linear-gradient(135deg, #fff9cc, #fffef0, #fff9cc);
  background-size: 200% 200%;
  border-left: 6px solid #ffd700;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  margin-bottom: 2.5rem;
  box-shadow: 0 6px 20px rgba(255, 215, 0, 0.3), 0 0 15px rgba(255, 215, 0, 0.2);
  border: 2px solid rgba(255, 215, 0, 0.3);
  animation: gradient-shift 4s ease infinite;
}

.disclaimer-block p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
}

.disclaimer-block strong {
  color: #92400e;
  font-weight: 700;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: #f1f5f9;
  padding: 3rem 0 1.5rem;
  margin-top: 3rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.footer-logo .logo-mark {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 102, 255, 0.3);
}

.footer-logo .logo-mark-alt {
  color: #ff6699;
  text-shadow: 0 2px 4px rgba(255, 102, 153, 0.3);
}

.footer-brand p {
  max-width: 420px;
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.6;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2rem;
}

.footer-column h3 {
  font-size: 1rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-white);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #cbd5e1;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-column a:hover {
  color: var(--color-white);
  text-decoration: none;
}

.footer-contact p {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  line-height: 1.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.85rem;
  color: #94a3b8;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  padding: 1rem;
  z-index: 30;
  display: none;
}

.cookie-banner-inner {
  max-width: 1160px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  border: 1px solid #e2e8f0;
}

.cookie-banner p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

/* Page Hero */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(135deg, #0066ff 0%, #9966ff 50%, #00ff88 100%);
  border-bottom: 3px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 5s ease-in-out infinite reverse;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  margin: 0 0 0.75rem;
}

.page-hero p {
  margin: 0;
  max-width: 700px;
  color: var(--color-text-light);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* Page Layout */
.page-layout {
  padding: 3rem 0 4rem;
  background: var(--color-white);
}

.page-layout-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.3fr);
  gap: 3rem;
}

.card {
  background: var(--color-white);
  border-radius: 24px;
  padding: 1.75rem 2rem;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
  border: 1px solid rgba(226, 232, 240, 0.8);
}

.card h2 {
  margin-top: 0;
}

.highlight-note {
  border-left: 6px solid #00ff88;
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  background: linear-gradient(135deg, #f0fff8, #ffffff, #f0fff8);
  background-size: 200% 200%;
  border-radius: 12px;
  padding-top: 1rem;
  padding-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 255, 136, 0.25), 0 0 15px rgba(0, 255, 136, 0.15);
  border: 2px solid rgba(0, 255, 136, 0.2);
  animation: gradient-shift 5s ease infinite;
}

.highlight-note strong {
  color: #006633;
  font-weight: 700;
}

/* Attraction Cards */
.attraction-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.attraction-card {
  background: var(--color-white);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(0, 102, 255, 0.1);
  border: 2px solid transparent;
  background-image: linear-gradient(white, white), linear-gradient(135deg, #0066ff, #ff3366, #00ff88);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  transition: all 0.3s ease;
}

.attraction-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 16px 40px rgba(0, 102, 255, 0.25), 0 0 25px rgba(255, 51, 102, 0.2);
  border-color: transparent;
}

.attraction-card img {
  border-radius: 16px;
  height: 150px;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 102, 255, 0.2), 0 0 10px rgba(255, 51, 102, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.attraction-card h3 {
  margin: 0.75rem 0 0.5rem;
}

.attraction-card p {
  font-size: 0.95rem;
  margin: 0 0 0.75rem;
  line-height: 1.6;
  color: var(--color-text-light);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.chip {
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
  font-size: 0.8rem;
  background: linear-gradient(135deg, #e6f2ff, #fff0f5);
  color: #0066ff;
  font-weight: 600;
  border: 1px solid rgba(0, 102, 255, 0.2);
  box-shadow: 0 2px 6px rgba(0, 102, 255, 0.15);
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
}

.timeline {
  border-left: 5px solid;
  border-image: linear-gradient(135deg, #0066ff, #ff3366, #00ff88) 1;
  padding-left: 1.5rem;
  margin: 0;
  list-style: none;
}

.timeline li {
  margin-bottom: 1.5rem;
}

.timeline strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-text);
  font-size: 1.1rem;
}

.timeline p {
  margin: 0;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* FAQ */
.faq-list details {
  border-radius: 16px;
  background: var(--color-white);
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(226, 232, 240, 0.8);
  transition: all 0.2s ease;
}

.faq-list details:hover {
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.12);
}

.faq-list details[open] {
  background: linear-gradient(135deg, #e6f2ff, #fff0f5);
  border-color: #0066ff;
  box-shadow: 0 6px 20px rgba(0, 102, 255, 0.2);
}

.faq-list summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  padding: 0.25rem 0;
}

.faq-list p {
  margin: 0.75rem 0 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-text-light);
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: 20px;
  overflow: hidden;
  background: var(--color-blue-light);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
  height: 180px;
  object-fit: cover;
  width: 100%;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.2);
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.95);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 40;
}

.lightbox.open {
  display: flex;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--color-white);
  border-radius: 50%;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  cursor: pointer;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1.2fr);
  gap: 3rem;
}

.map-container {
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 768px) {
  .map-container {
    height: 300px;
    border-radius: 12px;
  }
  
  .contact-grid iframe {
    height: 300px !important;
  }
}

@media (max-width: 480px) {
  .map-container {
    height: 250px;
    border-radius: 10px;
  }
}

form label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  width: 100%;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  resize: vertical;
  transition: all 0.2s ease;
  background: var(--color-white);
}

textarea {
  min-height: 140px;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: #0066ff;
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.2), 0 0 15px rgba(0, 102, 255, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.table th,
.table td {
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 0.5rem;
  text-align: left;
}

.table th {
  font-weight: 600;
  color: var(--color-text);
}

/* Legal Pages */
.legal-list {
  font-size: 1rem;
  line-height: 1.8;
}

.legal-list h2 {
  font-size: 1.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.legal-list h3 {
  font-size: 1.2rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.legal-list p {
  margin: 0.75rem 0;
  color: var(--color-text-light);
}

.legal-list ul {
  margin: 0.5rem 0 1rem 1.5rem;
  line-height: 1.8;
}

.legal-list li {
  margin-bottom: 0.5rem;
  color: var(--color-text-light);
}

/* Responsive - Tablets and smaller desktops */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-inner {
    gap: 2.5rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }

  .attraction-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Responsive - Tablets */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-gallery {
    max-width: 100%;
    margin: 0 auto;
    gap: 1.5rem;
    order: -1;
  }
  
  .hero-image-large {
    min-height: 350px;
  }
  
  .hero-image {
    min-height: 280px;
    border-width: 3px;
  }

  .hero-text {
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-badges {
    justify-content: center;
  }

  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .steps-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .banner-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .cta-large-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .page-layout-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
  }

  .attraction-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.25rem;
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 1rem;
  }

  .header-inner {
    padding: 0.75rem 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .main-nav ul {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background: var(--color-white);
    flex-direction: column;
    gap: 0;
    padding: 0.5rem 1.5rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .main-nav ul.open {
    display: flex;
  }

  .main-nav li a {
    width: 100%;
    padding: 0.75rem 0.5rem;
  }

  .hero {
    padding-top: 2.5rem;
  }

  .features-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .steps-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .footer-columns {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .attraction-list {
    grid-template-columns: minmax(0, 1fr);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .grid-two {
    grid-template-columns: minmax(0, 1fr);
  }

  .page-layout {
    padding: 1.5rem 0;
  }

  .card {
    padding: 1.25rem;
  }

  .info-banner {
    padding: 1rem;
  }

  .highlight-note {
    padding: 1rem 1.25rem;
  }

  .chip-list {
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .chip {
    font-size: 0.75rem;
    padding: 0.3rem 0.6rem;
  }
}

/* Touch-friendly improvements for mobile */
@media (max-width: 768px) {
  .btn {
    min-height: 44px;
    touch-action: manipulation;
  }

  .main-nav li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    min-height: 44px;
    font-size: 16px; /* Prevents zoom on iOS */
  }

  .gallery-item {
    cursor: pointer;
  }

  .gallery-item img {
    transition: transform 0.2s ease;
  }

  .gallery-item:active img {
    transform: scale(0.98);
  }
}

/* Landscape orientation for mobile */
@media (max-width: 768px) and (orientation: landscape) {
  .hero {
    padding: 1.5rem 0;
  }

  .hero-image-large {
    min-height: 200px;
  }

  .hero-image {
    min-height: 180px;
  }
}
