/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - ELEMENTS4KIDS
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #ffffff;
  --bg-secondary: #f8f6fc;
  --bg-tertiary: #eee8f8;
  --text-primary: #1e1933;
  --text-secondary: #534c6e;
  --text-muted: #8880a8;

  /* Brand Accents (Logo Color: #330099) */
  --brand-orange: #330099;
  --brand-orange-hover: #24006e;
  --brand-orange-light: #efe6ff;
  --brand-green: #330099;
  --brand-green-hover: #24006e;
  --brand-green-light: #efe6ff;
  --accent-yellow: #ffb142;
  --accent-yellow-light: #fff7eb;
  --accent-blue: #330099;
  --accent-blue-light: #eee6ff;

  /* Borders and Shadows */
  --border-color: #e4dcf5;
  --shadow-subtle: 0 4px 20px rgba(51, 0, 153, 0.07);
  --shadow-medium: 0 12px 36px rgba(51, 0, 153, 0.12);
  --shadow-inset: inset 0 2px 4px rgba(51, 0, 153, 0.04);

  /* Border Radii (16px to 32px rounded corners as requested) */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 32px;
  --radius-full: 9999px;

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

  /* Transition speed */
  --transition-smooth: 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-fast: 0.2s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-primary);
}

h1 {
  font-size: 2.8rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

h4 {
  font-size: 1.25rem;
  font-weight: 600;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

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

a:hover {
  color: var(--brand-orange-hover);
}

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

ul,
ol {
  list-style-position: inside;
  margin-bottom: 1.25rem;
}

/* ==========================================================================
   LAYOUT STRUCTURE & CONTAINERS
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  width: 100%;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-bg-secondary {
  background-color: var(--bg-secondary);
}

.section-bg-tertiary {
  background-color: var(--bg-tertiary);
}

/* ==========================================================================
   HEADER & STICKY NAVIGATION
   ========================================================================== */
.header-wrapper {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform var(--transition-smooth), background-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.header-wrapper.sticky {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(234, 229, 219, 0.4);
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 0;
}

.navbar.sticky-padding {
  padding: 0.8rem 0;
}

.logo img {
  height: 52px;
  width: auto;
  transition: transform var(--transition-smooth);
}

.logo:hover img {
  transform: scale(1.02);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 2.2rem;
}

.nav-links a {
  color: var(--text-primary);
  font-family: var(--font-headings);
  font-weight: 500;
  font-size: 1.05rem;
  position: relative;
  padding: 0.4rem 0;
  transition: color var(--transition-fast);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: var(--brand-orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-smooth);
}

.nav-links a:hover,
.nav-links li.active a {
  color: var(--brand-orange);
}

.nav-links a:hover::after,
.nav-links li.active a::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

/* Hamburgermenu mobile */
.hamburger {
  display: none;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1100;
  position: relative;
  width: 30px;
  height: 24px;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: var(--text-primary);
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 10px;
}

.hamburger span:nth-child(3) {
  top: 20px;
}

.hamburger.open span:nth-child(1) {
  top: 10px;
  transform: rotate(135deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.hamburger.open span:nth-child(3) {
  top: 10px;
  transform: rotate(-135deg);
}

/* ==========================================================================
   BUTTONS (PREMIUM MICRO-ANIMATED)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 1.05rem;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-smooth), background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
}

.btn-primary {
  background-color: var(--brand-orange);
  color: var(--bg-primary);
}

.btn-primary:hover {
  background-color: var(--brand-orange-hover);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(51, 0, 153, 0.35);
}

.btn-secondary {
  background-color: transparent;
  border-color: var(--border-color);
  color: var(--text-primary);
  box-shadow: none;
}

.btn-secondary:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: translateY(-3px);
  box-shadow: var(--shadow-subtle);
}

.btn-green {
  background-color: var(--brand-green);
  color: var(--bg-primary);
}

.btn-green:hover {
  background-color: var(--brand-green-hover);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(51, 0, 153, 0.35);
}

.btn-blue {
  background-color: var(--brand-orange);
  color: var(--bg-primary);
}

.btn-blue:hover {
  background-color: var(--brand-orange-hover);
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(51, 0, 153, 0.35);
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.95rem;
}

/* ==========================================================================
   BREADCRUMBS
   ========================================================================== */
.breadcrumbs-section {
  padding-top: 9rem;
  padding-bottom: 1.5rem;
  background-color: var(--bg-secondary);
  border-bottom: 1px solid rgba(234, 229, 219, 0.5);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.breadcrumbs li {
  display: flex;
  align-items: center;
}

.breadcrumbs li::after {
  content: '\203A';
  margin: 0 0.6rem;
  font-size: 1.2rem;
  color: var(--text-muted);
}

.breadcrumbs li:last-child::after {
  display: none;
}

.breadcrumbs a {
  color: var(--text-secondary);
  transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
  color: var(--brand-orange);
}

.breadcrumbs li.current {
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  padding-top: 10rem;
  padding-bottom: 6rem;
  background-color: var(--bg-secondary);
  overflow: hidden;
}

/* Decorative fluid blobs under Stripe/Framer inspiration */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.6;
}

.hero-blob-1 {
  width: 450px;
  height: 450px;
  background-color: var(--brand-orange-light);
  top: -10%;
  right: -5%;
}

.hero-blob-2 {
  width: 500px;
  height: 500px;
  background-color: var(--brand-green-light);
  bottom: -15%;
  left: -10%;
}

.hero .container {
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  max-width: 620px;
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--brand-orange);
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0;
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

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

.hero-image-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-frame {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 8px solid var(--bg-primary);
  transform: rotate(1deg);
  transition: transform var(--transition-smooth);
}

.hero-frame:hover {
  transform: rotate(0deg) scale(1.01);
}

/* ==========================================================================
   ORGANIC LAYOUTS (ASYNCHRONOUS PANELS - NO CARD HELL)
   ========================================================================== */
.section-intro {
  max-width: 680px;
  margin: 0 auto 5rem auto;
  text-align: center;
}

.section-tag {
  color: var(--brand-green);
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.section-intro h2 {
  margin-bottom: 1.2rem;
}

.section-intro p {
  font-size: 1.15rem;
  color: var(--text-secondary);
}

/* Organic Asymmetric Row */
.organic-row {
  display: flex;
  align-items: center;
  gap: 6rem;
  margin-bottom: 8rem;
}

.organic-row:last-child {
  margin-bottom: 0;
}

.organic-row.reverse {
  flex-direction: row-reverse;
}

.organic-img-panel {
  flex: 1;
  position: relative;
}

.organic-img-panel img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 1px solid rgba(234, 229, 219, 0.5);
  transition: transform var(--transition-smooth);
}

.organic-img-panel:hover img {
  transform: scale(1.02);
}

.organic-shape-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  z-index: -1;
  transition: transform var(--transition-smooth);
}

.organic-row:nth-child(odd) .organic-shape-bg {
  background-color: var(--brand-orange-light);
  transform: rotate(-3deg);
}

.organic-row:nth-child(even) .organic-shape-bg {
  background-color: var(--brand-green-light);
  transform: rotate(3deg);
}

.organic-row:hover .organic-shape-bg {
  transform: rotate(0deg);
}

.organic-text-panel {
  flex: 1;
  max-width: 520px;
}

.organic-text-panel h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.organic-text-panel p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.full-width {
  display: block;
}

.full-width-panel {
  width: 100%;
  max-width: 100%;
}

.pricing-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0;
}

.pricing-block {
  background: #f8faf5;
  border: 1px solid rgba(36, 90, 80, 0.12);
  border-radius: 18px;
  padding: 1.2rem 1rem 1rem;
  box-shadow: 0 8px 24px rgba(21, 59, 49, 0.06);
}

.pricing-block--wide {
  grid-column: 1 / -1;
}

.pricing-block--combined {
  margin-top: 1rem;
  border-radius: 18px;
}

.pricing-block h4 {
  margin: 0 0 0.9rem;
  font-size: 1.05rem;
  color: var(--brand-green-dark, #1d4d3d);
}

.price-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(36, 90, 80, 0.08);
  font-size: 0.98rem;
  color: var(--text-secondary);
}

.price-row:last-of-type {
  border-bottom: none;
}

.price-row span {
  flex: 1;
}

.price-row strong {
  color: var(--text-primary);
  white-space: nowrap;
}

.price-note {
  margin: 0.8rem 0 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-secondary);
}

/* ==========================================================================
   ORGANIC VALUE BLOCKS
   ========================================================================== */
.organic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

/* Bubble card style as requested: rounded shapes, smooth shadows */
.bubble-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(234, 229, 219, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  position: relative;
}

.bubble-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  pointer-events: none;
  transition: border-color var(--transition-fast);
}

.bubble-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.bubble-card.bubble-card-full {
  grid-column: 1 / -1;
}

.bubble-card:nth-child(2n+1):hover::before {
  border-color: var(--brand-orange);
}

.bubble-card:nth-child(2n):hover::before {
  border-color: var(--brand-green);
}

.card-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  font-size: 1.8rem;
}

.bubble-card:nth-child(2n+1) .card-icon {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}

.bubble-card:nth-child(2n) .card-icon {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
}

.bubble-card h3 {
  margin-bottom: 1rem;
}

.bubble-card p {
  color: var(--text-secondary);
  font-size: 1rem;
}

/* ==========================================================================
   LOCATIONS WIDGET (STANDORTE PREVIEW & PAGE)
   ========================================================================== */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.location-panel {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(234, 229, 219, 0.4);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.location-panel:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.location-img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

.location-body {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.location-badge {
  align-self: flex-start;
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.3rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.location-panel.sp-location .location-badge {
  background-color: var(--brand-green-light);
  color: var(--brand-green);
}

.location-panel.kw-location .location-badge {
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
}

.location-body h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.location-info-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.location-info-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--text-secondary);
  font-size: 1.05rem;
}

.location-info-list li .icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  color: var(--brand-green);
}

.location-panel.kw-location .location-info-list li .icon {
  color: var(--brand-orange);
}

.location-notice {
  background-color: var(--brand-orange-light);
  border-left: 4px solid var(--brand-orange);
  padding: 1.25rem;
  border-radius: var(--radius-sm);
  margin-bottom: 2rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  line-height: 1.5;
}

.location-body .btn {
  margin-top: auto;
}

/* ==========================================================================
   WHY ELEMENTS4KIDS? SECTION
   ========================================================================== */
.why-features {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

.why-card {
  text-align: center;
  background-color: var(--bg-secondary);
  border-radius: var(--radius-md);
  padding: 2.5rem 1.5rem;
  transition: transform var(--transition-smooth), background-color var(--transition-smooth);
}

.why-card:hover {
  transform: translateY(-5px);
  background-color: var(--bg-primary);
  box-shadow: var(--shadow-subtle);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-smooth);
}

.why-card:hover .why-icon {
  transform: scale(1.1) rotate(5deg);
}

.why-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

/* ==========================================================================
   TRUST / TESTIMONIALS SLIDER
   ========================================================================== */
.trust-slider-wrapper {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

.testimonial-container {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
  min-width: 100%;
  padding: 2rem;
  text-align: center;
}

.testimonial-text {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--text-primary);
  margin-bottom: 2rem;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 3rem;
  color: var(--brand-orange-light);
  line-height: 0;
  position: absolute;
}

.testimonial-text::before {
  top: 0;
  left: -1.5rem;
}

.testimonial-text::after {
  bottom: -1rem;
  right: -1.5rem;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--brand-green);
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.slider-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.slider-arrow {
  background: var(--bg-primary);
  border: 1px solid var(--border-color);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-subtle);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.slider-arrow:hover {
  border-color: var(--brand-orange);
  color: var(--brand-orange);
  transform: scale(1.05);
}

.slider-dots {
  display: flex;
  gap: 0.5rem;
}

.slider-dot {
  width: 8px;
  height: 8px;
  background-color: var(--border-color);
  border-radius: 50%;
  cursor: pointer;
  transition: width var(--transition-fast), background-color var(--transition-fast);
}

.slider-dot.active {
  width: 24px;
  background-color: var(--brand-orange);
  border-radius: var(--radius-full);
}

/* ==========================================================================
   VIDEO EMBED CONTEXT
   ========================================================================== */
.video-section {
  padding: 6rem 0;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  border: 8px solid var(--bg-primary);
  position: relative;
  aspect-ratio: 16/9;
  background-color: #000;
}

.video-container iframe,
.video-container video {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ==========================================================================
   GALLERY PAGE GRID & PREVIEW
   ========================================================================== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 4px solid var(--bg-primary);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(51, 0, 153, 0.4);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity var(--transition-fast);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon-zoom {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-orange);
  font-size: 1.4rem;
  transform: translateY(10px);
  transition: transform var(--transition-smooth);
}

.gallery-item:hover .gallery-icon-zoom {
  transform: translateY(0);
}

/* Lightbox Modal (Premium Vanilla JS) */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(45, 45, 45, 0.95);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox-content {
  position: relative;
  max-width: 85%;
  max-height: 85%;
}

.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: var(--radius-md);
  border: 6px solid var(--bg-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  display: block;
}

.lightbox-close {
  position: absolute;
  top: -45px;
  right: -10px;
  color: var(--bg-primary);
  font-size: 2.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: color var(--transition-fast);
}

.lightbox-close:hover {
  color: var(--brand-orange);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color var(--transition-fast), transform var(--transition-fast);
  font-size: 1.8rem;
}

.lightbox-nav:hover {
  background-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: -75px;
}

.lightbox-next {
  right: -75px;
}

/* ==========================================================================
   DOWNLOAD DOCUMENTS COMPONENT
   ========================================================================== */
.downloads-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.download-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(234, 229, 219, 0.4);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform var(--transition-smooth), border-color var(--transition-fast);
}

.download-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-orange);
}

.download-icon {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background-color: var(--brand-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--brand-orange);
  flex-shrink: 0;
}

.download-info {
  flex: 1;
}

.download-info h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.download-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   TEAM LAYOUT
   ========================================================================== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2.5rem;
}

.team-card {
  background-color: var(--bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(234, 229, 219, 0.4);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.team-img-wrapper {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.team-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-smooth);
}

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

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.3rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.team-role {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-orange);
  margin-bottom: 1rem;
}

.team-details {
  font-size: 0.9rem;
  color: var(--text-secondary);
  border-top: 1px solid rgba(234, 229, 219, 0.5);
  padding-top: 1rem;
}

.team-details p {
  margin-bottom: 0.5rem;
}

.team-details p:last-child {
  margin-bottom: 0;
}

.team-details strong {
  color: var(--text-primary);
}

/* ==========================================================================
   CONTACT FORM & CONTACT PAGE
   ========================================================================== */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.contact-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-subtle);
  border: 1px solid rgba(234, 229, 219, 0.4);
  min-width: 0;
  width: 100%;
}

.contact-form {
  width: 100%;
}

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

.contact-form .form-group {
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.contact-form label {
  font-family: var(--font-headings);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="date"],
.contact-form textarea,
.contact-form select {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-color);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

.contact-form select {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: none;
  border-color: var(--brand-orange);
  box-shadow: 0 0 0 4px rgba(51, 0, 153, 0.08);
}

.contact-form .privacy-check {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.contact-form .privacy-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--brand-orange);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-details-panel {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-width: 0;
}

.contact-info-block {
  margin-bottom: 3rem;
}

.contact-info-block h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.contact-methods {
  list-style: none;
}

.contact-methods li {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--text-secondary);
}

.contact-methods li .icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--brand-orange-light);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.contact-methods a {
  color: var(--text-secondary);
}

.contact-methods a:hover {
  color: var(--brand-orange);
}

.contact-map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-subtle);
  border: 6px solid var(--bg-secondary);
  height: 320px;
  width: 100%;
}

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

/* ==========================================================================
   BIG CALL-TO-ACTION (CTA) SECTION
   ========================================================================== */
.cta-wrapper {
  background-color: var(--brand-orange-light);
  border-radius: var(--radius-lg);
  padding: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}

.cta-wrapper::before {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background-color: rgba(51, 0, 153, 0.04);
  top: -100px;
  right: -50px;
  pointer-events: none;
}

.cta-content {
  max-width: 600px;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.cta-content p {
  font-size: 1.15rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
  z-index: 2;
}

/* ==========================================================================
   FOOTER STYLE
   ========================================================================== */
.footer {
  background-color: var(--bg-tertiary);
  padding: 6rem 0 3rem 0;
  border-top: 1px solid var(--border-color);
  color: var(--text-primary);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-col h4 {
  margin-bottom: 1.8rem;
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: var(--brand-orange);
  border-radius: 2px;
}

.footer-logo {
  height: 48px;
  width: auto;
  margin-bottom: 1.5rem;
}

.footer-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

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

.footer-links a:hover {
  color: var(--brand-orange);
  padding-left: 5px;
}

.footer-contact {
  list-style: none;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.footer-contact li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact li .icon {
  color: var(--brand-orange);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-addresses p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.footer-addresses p strong {
  color: var(--text-primary);
}

.footer-addresses p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(234, 229, 219, 0.8);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

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

.footer-legal-links a {
  color: var(--text-muted);
}

.footer-legal-links a:hover {
  color: var(--brand-orange);
}

/* Mobile-only utilities */
.mobile-only {
  display: none !important;
}

/* Interactive Clickable Bubble Cards & Info Modal */
.bubble-card.clickable-card {
  cursor: pointer;
}

.bubble-card.clickable-card:hover {
  transform: translateY(-8px) scale(1.01);
}

.card-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--brand-orange);
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.bubble-card:hover .card-more-btn {
  gap: 0.8rem;
  color: var(--brand-orange);
}

/* Info Modal Styling */
.info-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  padding: 1.5rem;
}

.info-modal.active {
  opacity: 1;
  visibility: visible;
}

.info-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 30, 30, 0.65);
  backdrop-filter: blur(6px);
}

.info-modal-container {
  position: relative;
  background: var(--bg-primary, #ffffff);
  border-radius: var(--radius-lg, 24px);
  padding: 2.5rem;
  max-width: 640px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(234, 229, 219, 0.6);
  z-index: 1;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.info-modal.active .info-modal-container {
  transform: scale(1) translateY(0);
}

.info-modal-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--bg-secondary, #f8f6f0);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-primary);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.info-modal-close:hover {
  background-color: var(--brand-orange-light, #fff0e6);
  color: var(--brand-orange);
  transform: rotate(90deg);
}

.info-modal-header {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.info-modal-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md, 16px);
  background-color: var(--brand-orange-light, #fff0e6);
  color: var(--brand-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.info-modal-title {
  font-size: 1.5rem;
  margin: 0;
  color: var(--text-primary);
  line-height: 1.3;
}

.info-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 0.5rem;
}

.info-modal-body::-webkit-scrollbar {
  width: 6px;
}

.info-modal-body::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
}

.info-modal-body::-webkit-scrollbar-thumb {
  background: var(--brand-orange);
  border-radius: 10px;
}

.info-modal-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 1.25rem;
  font-weight: 400;
}

.info-modal-body p:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 600px) {
  .info-modal-container {
    padding: 2rem 1.5rem;
    max-height: 90vh;
  }
}