@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- DESIGN SYSTEM & TOKENS --- */
:root {
  /* Color Palette */
  --color-tangerine: #F97316;
  --color-tangerine-hover: #EA580C;
  --color-yellow: #FACC15;
  --color-brown: #451A03;
  --color-brown-light: #78350F;
  --color-white: #FFFFFF;
  --color-bg-cream: #FAF8F5;
  --color-chrome-start: #E2E8F0;
  --color-chrome-mid: #94A3B8;
  --color-chrome-end: #CBD5E1;
  --color-glass-bg: rgba(255, 255, 255, 0.8);
  --color-glass-border: rgba(255, 255, 255, 0.4);

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

  /* Space-Age Curves (Molded Plastic Layouts) */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-xl: 48px;
  --radius-round: 9999px;

  /* Shadows & Highlights */
  --shadow-plastic: 0 10px 30px -5px rgba(69, 26, 3, 0.15), 
                    inset 0 2px 4px rgba(255, 255, 255, 0.8),
                    inset 0 -4px 10px rgba(69, 26, 3, 0.1);
  --shadow-chrome: 0 0 0 2px #E2E8F0,
                   0 4px 12px rgba(0, 0, 0, 0.1),
                   inset 0 1px 0 rgba(255, 255, 255, 0.8),
                   inset 0 -1px 2px rgba(0, 0, 0, 0.1);
  --shadow-inset-gloss: inset 0 8px 16px rgba(255, 255, 255, 0.6);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-cream);
  color: var(--color-brown);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-smooth);
}

/* --- CHROME EFFECTS --- */
.chrome-border {
  border: 4px solid;
  border-image: linear-gradient(135deg, 
    #ffffff 0%, 
    #94a3b8 25%, 
    #cbd5e1 45%, 
    #475569 55%, 
    #f1f5f9 70%, 
    #64748b 100%
  ) 4;
  box-shadow: 0 8px 24px rgba(69, 26, 3, 0.1);
}

.chrome-tube {
  border-radius: var(--radius-lg);
  border: 5px solid;
  border-image: linear-gradient(135deg, 
    #ffffff 0%, 
    #e2e8f0 15%, 
    #94a3b8 35%, 
    #cbd5e1 50%, 
    #475569 65%, 
    #f1f5f9 80%, 
    #64748b 100%
  ) 1;
  box-shadow: 
    0 15px 35px rgba(69, 26, 3, 0.1),
    inset 0 2px 5px rgba(255, 255, 255, 0.8);
}

/* Chrome outline effect for rounded plastic containers */
.chrome-frame {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 4px;
  background-clip: padding-box;
  z-index: 1;
}

.chrome-frame::before {
  content: '';
  position: absolute;
  top: -4px; bottom: -4px; left: -4px; right: -4px;
  background: linear-gradient(135deg, 
    #ffffff 0%, 
    #94a3b8 20%, 
    #f8fafc 40%, 
    #475569 60%, 
    #cbd5e1 80%, 
    #334155 100%
  );
  border-radius: calc(var(--radius-lg) + 4px);
  z-index: -1;
  box-shadow: 0 12px 30px rgba(69, 26, 3, 0.15);
}

/* Molded Plastic Container Style */
.molded-plastic {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-plastic);
  position: relative;
  overflow: hidden;
}

/* Glossy highlight line on molded plastic to simulate space age reflection */
.molded-plastic::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

/* --- NAVIGATION BAR --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  background: var(--color-glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--color-glass-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--color-tangerine);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-plastic);
}

.logo-icon::after {
  content: '';
  width: 18px;
  height: 18px;
  background: var(--color-yellow);
  border-radius: 50%;
  box-shadow: inset 0 2px 4px rgba(255, 255, 255, 0.6);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: var(--color-brown);
}

.logo-text span {
  color: var(--color-tangerine);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

nav a {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-round);
}

nav a:hover, nav a.active {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  box-shadow: var(--shadow-plastic);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-lang {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--color-brown-light);
  border: 2px solid var(--color-brown);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  background: transparent;
}

.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--color-brown);
  margin: 5px 0;
  transition: var(--transition-smooth);
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  padding: 1rem 2.25rem;
  border-radius: var(--radius-round);
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  box-shadow: var(--shadow-plastic);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 50%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0) 100%);
}

.btn-primary:hover {
  background-color: var(--color-tangerine-hover);
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(249, 115, 22, 0.4);
}

.btn-chrome {
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  color: var(--color-brown);
  position: relative;
  z-index: 1;
}

.btn-chrome::before {
  content: '';
  position: absolute;
  top: -2px; bottom: -2px; left: -2px; right: -2px;
  background: linear-gradient(135deg, #ffffff, #94a3b8, #cbd5e1, #475569);
  border-radius: var(--radius-round);
  z-index: -1;
  transition: var(--transition-smooth);
}

.btn-chrome:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(148, 163, 184, 0.4);
}

.btn-chrome:hover::before {
  background: linear-gradient(135deg, #475569, #cbd5e1, #94a3b8, #ffffff);
}

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

.btn-secondary:hover {
  background-color: var(--color-brown);
  color: var(--color-white);
  transform: translateY(-2px);
}

/* --- SCROLL REVEAL CLASS --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* --- HERO SECTION --- */
.hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: flex;
  align-items: center;
  padding: 4rem 2rem;
  background: radial-gradient(circle at 80% 20%, rgba(250, 204, 21, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 10% 80%, rgba(249, 115, 22, 0.1) 0%, transparent 50%);
}

.hero-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero-tagline {
  font-family: var(--font-heading);
  color: var(--color-tangerine);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-tagline::before {
  content: '';
  width: 24px;
  height: 4px;
  background-color: var(--color-tangerine);
  border-radius: var(--radius-round);
}

.hero-title {
  font-size: 4rem;
  line-height: 1.1;
  color: var(--color-brown);
}

.hero-title span {
  position: relative;
  display: inline-block;
  color: var(--color-tangerine);
}

.hero-title span::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 5px;
  width: 100%;
  height: 12px;
  background-color: var(--color-yellow);
  z-index: -1;
  border-radius: var(--radius-round);
}

.hero-description {
  font-size: 1.15rem;
  color: var(--color-brown-light);
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-blob-bg {
  position: absolute;
  width: 110%;
  height: 110%;
  background: var(--color-yellow);
  filter: blur(80px);
  opacity: 0.35;
  z-index: -1;
  border-radius: 50%;
  animation: blob-float 10s infinite alternate ease-in-out;
}

@keyframes blob-float {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(30px, -30px) scale(1.1); }
}

.hero-image-frame {
  width: 100%;
  max-width: 500px;
  aspect-ratio: 1;
}

/* Molded orange plastic frame for main hero product */
.hero-product-display {
  width: 100%;
  height: 100%;
  background-color: var(--color-tangerine);
  border-radius: 35% 65% 60% 40% / 45% 40% 60% 55%; /* Space-age blob shape */
  box-shadow: var(--shadow-plastic);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  animation: blob-morph 12s infinite alternate ease-in-out;
}

@keyframes blob-morph {
  0% { border-radius: 35% 65% 60% 40% / 45% 40% 60% 55%; }
  50% { border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%; }
  100% { border-radius: 65% 35% 55% 45% / 40% 45% 55% 60%; }
}

.hero-product-display img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 20px 20px rgba(69, 26, 3, 0.3));
  transform: rotate(-5deg);
  transition: var(--transition-smooth);
}

.hero-product-display:hover img {
  transform: rotate(0deg) scale(1.05);
}

/* --- BADGES / TRUST --- */
.trust-bar {
  background-color: var(--color-brown);
  color: var(--color-white);
  padding: 2rem;
  overflow: hidden;
}

.trust-wrapper {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 2rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-yellow);
}

.trust-text {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- SECTION GENERAL --- */
.section {
  padding: 8rem 2rem;
}

.section-container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-subtitle {
  color: var(--color-tangerine);
  font-family: var(--font-heading);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 3rem;
  line-height: 1.2;
}

/* --- CARD DISPLAY (MOLDED PLASTIC & CHROME) --- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: var(--transition-smooth);
}

.product-card-image-box {
  position: relative;
  aspect-ratio: 1;
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-bottom: 1.5rem;
  transition: var(--transition-smooth);
}

.product-card-image-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 100%;
  background: radial-gradient(circle at center, rgba(250, 204, 21, 0.1) 0%, transparent 70%);
  z-index: 1;
}

.product-card img {
  width: 75%;
  height: 75%;
  object-fit: contain;
  transition: var(--transition-smooth);
  z-index: 2;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08));
}

.product-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background-color: var(--color-yellow);
  color: var(--color-brown);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-round);
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-card:hover .product-card-image-box {
  transform: scale(0.98);
}

.product-card:hover img {
  transform: scale(1.08) rotate(3deg);
}

.product-details {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 0.5rem;
}

.product-info h3 {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
}

.product-category {
  font-size: 0.85rem;
  text-transform: uppercase;
  color: var(--color-tangerine);
  font-weight: 600;
  letter-spacing: 0.5px;
}

.product-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-brown);
}

/* Chrome outline styled button for product cards */
.product-action-btn {
  margin-top: 1.5rem;
  width: 100%;
}

/* --- COMFORT COCONUTS / TESTIMONIALS --- */
.testimonials-section {
  background-color: var(--color-bg-cream);
  background-image: radial-gradient(var(--color-yellow) 1.5px, transparent 1.5px);
  background-size: 30px 30px;
  background-repeat: repeat;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 3rem;
}

.testimonial-card {
  padding: 3rem;
  background: var(--color-white);
}

.testimonial-rating {
  color: var(--color-yellow);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--color-brown-light);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-quote::before {
  content: '“';
  font-family: var(--font-heading);
  font-size: 4rem;
  color: rgba(249, 115, 22, 0.15);
  position: absolute;
  top: -2.5rem;
  left: -1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  overflow: hidden;
  box-shadow: var(--shadow-chrome);
  border: 2px solid var(--color-white);
}

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

.testimonial-meta h4 {
  font-size: 1rem;
  margin-bottom: 0.1rem;
}

.testimonial-meta span {
  font-size: 0.8rem;
  color: var(--color-tangerine);
  font-weight: 600;
}

/* --- BANNER CTA --- */
.cta-banner {
  margin: 4rem 2rem;
}

.cta-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 4rem;
  padding: 5rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.cta-title {
  font-size: 3.5rem;
  line-height: 1.1;
}

.cta-description {
  font-size: 1.2rem;
  opacity: 0.9;
}

.cta-action {
  justify-self: center;
}

/* --- CLIENT SIDE FILTERING --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.8rem 1.8rem;
  background-color: var(--color-white);
  border: 2px solid var(--color-brown);
  border-radius: var(--radius-round);
  cursor: pointer;
  color: var(--color-brown);
  transition: var(--transition-smooth);
}

.filter-btn.active, .filter-btn:hover {
  background-color: var(--color-tangerine);
  border-color: var(--color-tangerine);
  color: var(--color-white);
  box-shadow: var(--shadow-plastic);
}

/* --- ABOUT PAGE HISTORIC TIMELINE --- */
.timeline {
  position: relative;
  max-width: 1000px;
  margin: 4rem auto 0 auto;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: var(--color-brown);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  border-radius: var(--radius-round);
}

.timeline-item {
  padding: 2rem 3rem;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--color-yellow);
  border: 4px solid var(--color-brown);
  top: 2.5rem;
  border-radius: 50%;
  z-index: 1;
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 2.5rem;
  background-color: var(--color-white);
  position: relative;
}

.timeline-year {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-tangerine);
  font-weight: 700;
  margin-bottom: 0.5rem;
  display: block;
}

/* --- CONTACT FORM WITH FLOATING LABELS --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
}

.contact-form-container {
  padding: 4rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

/* Floating label design */
.form-group {
  position: relative;
}

.form-input {
  width: 100%;
  padding: 1rem 1.5rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 2px solid var(--color-brown);
  border-radius: var(--radius-md);
  background: transparent;
  outline: none;
  color: var(--color-brown);
  transition: var(--transition-smooth);
}

.form-input:focus {
  border-color: var(--color-tangerine);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.15);
}

.form-label {
  position: absolute;
  left: 1.5rem;
  top: 1rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-brown-light);
  pointer-events: none;
  transition: var(--transition-smooth);
}

/* Label behavior on focus or when placeholder is not shown */
.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -0.75rem;
  left: 1rem;
  font-size: 0.8rem;
  padding: 0 0.5rem;
  background-color: var(--color-white);
  color: var(--color-tangerine);
}

.form-group-textarea {
  min-height: 150px;
}

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

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.contact-card-retro {
  background-color: var(--color-yellow);
  color: var(--color-brown);
  padding: 3rem;
}

.contact-info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-info-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  flex-shrink: 0;
}

/* Custom retro map (SVG styled design representing a cool minimalist space-age map of Amsterdam) */
.retro-map-container {
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  background-color: #e5e5f7;
  background-image: radial-gradient(#cbd5e1 2px, transparent 2px), radial-gradient(#cbd5e1 2px, #e5e5f7 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  border: 4px solid var(--color-brown);
}

.retro-map-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  pointer-events: none;
  box-shadow: inset 0 0 50px rgba(69, 26, 3, 0.2);
}

.map-river {
  position: absolute;
  width: 100%;
  height: 60px;
  background-color: #94a3b8;
  top: 40%;
  transform: rotate(-10deg) skewX(20deg);
  opacity: 0.7;
}

.map-pin {
  position: absolute;
  top: 48%;
  left: 55%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background-color: var(--color-tangerine);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg) translate(-10px, -10px);
  box-shadow: -4px 4px 10px rgba(69, 26, 3, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pin-bounce 2s infinite alternate ease-in-out;
}

.map-pin::after {
  content: '';
  width: 18px;
  height: 18px;
  background-color: var(--color-yellow);
  border-radius: 50%;
  transform: rotate(45deg);
}

@keyframes pin-bounce {
  0% { transform: translateY(0) rotate(-45deg); }
  100% { transform: translateY(-15px) rotate(-45deg); }
}

.map-label {
  position: absolute;
  top: 58%;
  left: 55%;
  transform: translateX(-50%);
  background-color: var(--color-brown);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  white-space: nowrap;
}

/* --- FOOTER --- */
footer {
  background-color: var(--color-brown);
  color: #FEE2E2;
  padding: 5rem 2rem 2rem 2rem;
  margin-top: 4rem;
  border-top: 8px solid var(--color-tangerine);
}

.footer-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(254, 226, 226, 0.1);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand .logo-text {
  color: var(--color-white);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(254, 226, 226, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--color-tangerine);
  color: var(--color-white);
  transform: translateY(-3px);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-nav h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-yellow);
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  font-size: 0.95rem;
  opacity: 0.8;
}

.footer-nav a:hover {
  opacity: 1;
  color: var(--color-yellow);
  padding-left: 5px;
}

.footer-bottom {
  max-width: 1280px;
  margin: 2rem auto 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.85rem;
  opacity: 0.7;
}

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

/* --- GDPR COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  right: 2rem;
  max-width: 650px;
  z-index: 1000;
  display: none;
}

.cookie-content {
  background-color: var(--color-brown);
  color: var(--color-white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  border: 3px solid var(--color-yellow);
  box-shadow: 0 20px 40px rgba(69, 26, 3, 0.3);
}

.cookie-title {
  font-size: 1.5rem;
  color: var(--color-yellow);
  margin-bottom: 1rem;
}

.cookie-text {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
}

.cookie-text a {
  color: var(--color-yellow);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

/* --- LEGAL PAGES STYLES --- */
.legal-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.legal-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-brown);
}

.legal-meta {
  font-size: 0.9rem;
  color: var(--color-tangerine);
  font-weight: 600;
  margin-bottom: 3rem;
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.legal-content h2 {
  font-size: 1.8rem;
  margin-top: 1.5rem;
  color: var(--color-brown);
  border-bottom: 2px solid var(--color-yellow);
  padding-bottom: 0.5rem;
}

.legal-content p {
  color: var(--color-brown-light);
  line-height: 1.7;
}

.legal-content ul {
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: var(--color-brown-light);
}

/* --- RESPONSIVE DESIGNS --- */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-grid {
    gap: 2rem;
  }
  .cta-container {
    grid-template-columns: 1fr;
    padding: 3.5rem;
    gap: 2.5rem;
    text-align: center;
  }
  .cta-action {
    justify-self: center;
  }
}

@media (max-width: 768px) {
  header {
    padding: 1rem 1.5rem;
  }
  nav {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--color-bg-cream);
    padding: 3rem 2rem;
    transition: var(--transition-smooth);
    border-top: 1px solid var(--color-glass-border);
    box-shadow: 0 10px 15px rgba(0,0,0,0.05);
  }
  nav.open {
    left: 0;
  }
  nav ul {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }
  nav a {
    font-size: 1.25rem;
  }
  .mobile-nav-toggle {
    display: block;
  }
  .mobile-nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  .mobile-nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }
  .mobile-nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-buttons {
    justify-content: center;
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 20px;
  }
  .timeline-item::after {
    left: 22px;
  }
  .timeline-right {
    left: 0%;
  }
  .timeline-right::after {
    left: 22px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .cookie-banner {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
  .cookie-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .hero-title {
    font-size: 2.25rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons .btn {
    width: 100%;
  }
}
