/* ================================================================
   Pulse Party House SRL — Main CSS
   Playful Social Party Redesign 2026
   Light theme · Turquoise · Orange · Purple
   ================================================================ */

/* ================================================================
   DESIGN TOKENS
   ================================================================ */
:root {
  --color-primary:       #00A4A3;
  --color-primary-bright:#00BFBD;
  --color-cta:           #FF4B28;
  --color-cta-deep:      #F75838;
  --color-accent:        #6B2FFF;
  --color-accent-deep:   #5111FF;

  --color-bg:            #ffffff;
  --color-bg-soft:       #F3FFFE;
  --color-bg-warm:       #FFF6F2;
  --color-bg-purple:     #F5F2FF;
  --color-bg-dark:       #172033;

  --color-text:          #172033;
  --color-muted:         #5C667A;
  --color-border:        rgba(23, 32, 51, 0.12);

  --font-heading:        'Poppins', sans-serif;
  --font-body:           'Nunito Sans', sans-serif;

  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   24px;
  --radius-xl:   32px;
  --radius-pill: 100px;

  --shadow-sm:   0 2px 8px rgba(23, 32, 51, 0.08);
  --shadow-md:   0 8px 28px rgba(23, 32, 51, 0.12);
  --shadow-lg:   0 16px 56px rgba(23, 32, 51, 0.16);
  --shadow-cta:  0 8px 24px rgba(255, 75, 40, 0.35);
  --shadow-teal: 0 8px 24px rgba(0, 164, 163, 0.3);

  --transition:  all 0.28s ease;

  --section-v:     80px;
  --container-max: 1160px;
  --container-px:  24px;

  --header-h: 72px;
}

/* ================================================================
   BASE RESET & GLOBAL OVERRIDES
   ================================================================ */
*, *::before, *::after {
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body) !important;
  font-size: 17px;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

p { margin-top: 0; font-family: var(--font-body); }

a { color: var(--color-primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-cta); }

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

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

/* Force font override on elements with inline Montserrat styles */
[style*="Montserrat"],
[style*="Open Sans Hebrew"],
[style*="font-family"] {
  font-family: var(--font-body) !important;
}

/* ================================================================
   SCROLLBAR
   ================================================================ */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--color-primary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-primary-bright); }

/* ================================================================
   SKIP LINK
   ================================================================ */
.skip-link {
  position: absolute;
  top: -60px;
  left: 0;
  background: var(--color-cta);
  color: #fff;
  padding: 10px 20px;
  z-index: 100001;
  border-radius: 0 0 var(--radius-sm) 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  transition: top 0.3s;
}
.skip-link:focus { top: 0; }

/* ================================================================
   FOCUS STATES
   ================================================================ */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 2px;
}
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) { outline: none; }

/* ================================================================
   LAYOUT HELPERS
   ================================================================ */
.pph-container {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

.pph-section {
  padding: var(--section-v) var(--container-px);
  position: relative;
  overflow: hidden;
}
.pph-section--soft   { background: var(--color-bg-soft); }
.pph-section--warm   { background: var(--color-bg-warm); }
.pph-section--purple { background: var(--color-bg-purple); }
.pph-section--white  { background: var(--color-bg); }

/* Section labels / badges */
.section-badge {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 164, 163, 0.12);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-badge--orange {
  background: rgba(255, 75, 40, 0.1);
  color: var(--color-cta);
}
.section-badge--purple {
  background: rgba(107, 47, 255, 0.1);
  color: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 20px;
}

.section-lead {
  font-size: 17px;
  color: var(--color-muted);
  line-height: 1.75;
  max-width: 720px;
  margin-bottom: 40px;
}

/* ================================================================
   HEADER
   ================================================================ */
#inner-body { min-height: 100vh; display: flex; flex-direction: column; overflow: hidden; }
#main { flex: 1; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
  height: var(--header-h);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.site-header.aux-sticky {
  box-shadow: var(--shadow-md);
  border-bottom-color: transparent;
}

.site-header__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.site-logo {
  flex-shrink: 0;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.site-logo__text {
  font-family: var(--font-heading) !important;
  font-size: 20px;
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.site-logo__accent {
  color: var(--color-primary);
}

/* Desktop nav */
.site-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.site-nav__link {
  display: block;
  padding: 8px 14px;
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-muted);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: var(--transition);
}

.site-nav__link:hover,
.site-nav__link:focus-visible {
  color: var(--color-primary);
  background: rgba(0, 164, 163, 0.08);
}

/* Header CTA button */
.site-header__cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: var(--color-cta);
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: var(--shadow-cta);
  transition: var(--transition);
}

.site-header__cta:hover {
  background: var(--color-cta-deep);
  color: #fff !important;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255, 75, 40, 0.4);
}

/* Burger button */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: none;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
  transition: var(--transition);
}

.nav-burger:hover { border-color: var(--color-primary); }

.nav-burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] .nav-burger__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================================================================
   MOBILE OFFCANVAS MENU
   ================================================================ */
.pph-offcanvas-wrap { position: fixed; inset: 0; z-index: 9999; pointer-events: none; }

.pph-offcanvas {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 90vw);
  height: 100%;
  background: var(--color-bg);
  box-shadow: var(--shadow-lg);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  pointer-events: auto;
}

.pph-offcanvas.aux-open { transform: translateX(0); }

.pph-offcanvas__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 32, 51, 0.5);
  opacity: 0;
  transition: opacity 0.32s ease;
  pointer-events: none;
}
.pph-offcanvas__backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.pph-offcanvas__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border);
}

.pph-offcanvas__brand {
  font-family: var(--font-heading) !important;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-primary);
}

.pph-offcanvas__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  background: rgba(23, 32, 51, 0.06);
  border-radius: 50%;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text);
  transition: var(--transition);
}
.pph-offcanvas__close:hover { background: rgba(255, 75, 40, 0.1); color: var(--color-cta); }

.pph-offcanvas__content {
  padding: 24px;
}

/* Style cloned nav inside offcanvas */
.pph-offcanvas__content .site-nav__list {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.pph-offcanvas__content .site-nav__link {
  font-size: 16px;
  padding: 12px 16px;
  width: 100%;
  border-radius: var(--radius-sm);
}

body.menu-open { overflow: hidden; }

/* ================================================================
   HERO SECTION — redesigned 2026-06-22
   Hero image is intentionally rendered with <img> for performance
   and accessibility. No background-image used for hero content.
   ================================================================ */

.site-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #edfffe 0%, #ffffff 45%, #f4f0ff 100%);
  margin-top: var(--header-h);
  padding: 72px var(--container-px) 56px;
}

@media (min-width: 992px) {
  .site-hero { padding: 88px var(--container-px) 88px; }
}

/* ── Background decorators (CSS only — no hero image URL here) ── */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-bg__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.hero-bg__blob--1 {
  width: 560px;
  height: 560px;
  background: rgba(0, 164, 163, 0.18);
  top: -160px;
  right: -80px;
}

.hero-bg__blob--2 {
  width: 400px;
  height: 400px;
  background: rgba(107, 47, 255, 0.10);
  bottom: -100px;
  left: 5%;
}

.hero-bg__blob--3 {
  width: 280px;
  height: 280px;
  background: rgba(255, 75, 40, 0.07);
  top: 60%;
  right: 30%;
}

/* Soft confetti dot pattern */
.hero-bg__confetti {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255, 75, 40, 0.18) 2px, transparent 2px),
    radial-gradient(circle, rgba(0, 164, 163, 0.14) 2px, transparent 2px),
    radial-gradient(circle, rgba(107, 47, 255, 0.11) 2px, transparent 2px);
  background-size: 88px 88px, 60px 60px, 130px 130px;
  background-position: 12px 22px, 40px 55px, 70px 12px;
  opacity: 0.65;
}

/* ── Layout grid ─────────────────────────────────────────────── */
.hero-layout {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media (min-width: 992px) {
  .hero-layout {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

/* ── Content column (left on desktop) ───────────────────────── */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Eyebrow label */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
}

.hero-eyebrow__dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--color-primary);
  flex-shrink: 0;
}

/* Main heading */
.hero-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(30px, 4vw, 56px) !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.025em !important;
  color: var(--color-dark) !important;
  margin: 0 !important;
  text-shadow: none !important;
}

.hero-title__accent {
  display: block;
  color: var(--color-primary);
}

/* Lead paragraph */
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.68;
  color: var(--color-muted);
  margin: 0;
  max-width: 500px;
}

/* CTA row */
.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-link-secondary {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  color: var(--color-dark);
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.hero-link-secondary:hover,
.hero-link-secondary:focus-visible { color: var(--color-primary); }
.hero-link-secondary:focus-visible { outline: 2px solid var(--color-primary); border-radius: 4px; }

/* Highlight chips */
.hero-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  white-space: nowrap;
}

.hero-chip--teal {
  background: rgba(0, 164, 163, 0.10);
  color: var(--color-primary);
  border: 1px solid rgba(0, 164, 163, 0.22);
}

.hero-chip--purple {
  background: rgba(107, 47, 255, 0.08);
  color: var(--color-accent);
  border: 1px solid rgba(107, 47, 255, 0.18);
}

.hero-chip--orange {
  background: rgba(255, 75, 40, 0.08);
  color: var(--color-cta);
  border: 1px solid rgba(255, 75, 40, 0.18);
}

/* ── Visual column (right on desktop) ──────────────────────── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

/* Image card wrapper */
.hero-img-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  border-radius: 24px;
}

/* Gradient halo behind the image card */
.hero-img-card::before {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 32px;
  background: linear-gradient(
    135deg,
    rgba(0, 164, 163, 0.22),
    rgba(107, 47, 255, 0.14),
    rgba(255, 75, 40, 0.08)
  );
  z-index: -1;
}

/* Hero image — <img> tag, not background */
.hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 20px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.08),
    0 20px 56px rgba(0, 0, 0, 0.13);
}

/* Floating info badge (bottom-left of image) */
.hero-float-badge {
  position: absolute;
  bottom: -22px;
  left: -16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow:
    0 4px 20px rgba(0, 0, 0, 0.10),
    0 0 0 1px rgba(0, 0, 0, 0.05);
  min-width: 196px;
  z-index: 2;
}

.hero-float-badge__icon {
  font-size: 26px;
  line-height: 1;
  flex-shrink: 0;
}

.hero-float-badge__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-float-badge__label {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1.2;
}

.hero-float-badge__sub {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--color-muted);
  line-height: 1.3;
}

/* Stat bubble (top-right of image) */
.hero-stat-bubble {
  position: absolute;
  top: -18px;
  right: -16px;
  background: var(--color-cta);
  color: #fff;
  border-radius: 14px;
  padding: 10px 16px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(255, 75, 40, 0.35);
  z-index: 2;
}

.hero-stat-bubble__num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  display: block;
}

.hero-stat-bubble__label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.9;
  display: block;
  margin-top: 2px;
}

/* ── Decorative shapes (right column, CSS only) ─────────────── */
.hero-deco {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.hero-deco--ring {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 3px solid rgba(107, 47, 255, 0.18);
  top: -28px;
  right: -24px;
}

.hero-deco--ring::after {
  content: '';
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px dashed rgba(107, 47, 255, 0.10);
}

.hero-deco--dots {
  width: 72px;
  height: 72px;
  bottom: 40px;
  right: 10px;
  background-image: radial-gradient(circle, rgba(255, 75, 40, 0.38) 2.5px, transparent 2.5px);
  background-size: 13px 13px;
}

/* ── Responsive tweaks ──────────────────────────────────────── */
@media (max-width: 991px) {
  /* On mobile, content stacks above image */
  .hero-layout { grid-template-columns: 1fr; }
  .hero-visual { margin-top: 0; }
  .hero-img-card { max-width: 100%; }
}

@media (max-width: 600px) {
  .hero-float-badge { display: none; }
  .hero-stat-bubble { top: -14px; right: -8px; }
  .hero-deco--ring { display: none; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-img { transition: none; }
}

/* ================================================================
   SECTION: INTRO HEADING (Cada Velada...)
   ================================================================ */
.elementor-83 .elementor-element-d2c59aa { text-align: center; }
.elementor-83 .elementor-element-d2c59aa .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(26px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.elementor-83 .elementor-element-d2c59aa > .elementor-widget-container { margin: 60px 40px 24px; }

.elementor-83 .elementor-element-1dac8a1 { font-family: var(--font-body) !important; color: var(--color-muted) !important; }
.elementor-83 .elementor-element-1dac8a1 .elementor-text-editor { text-align: center; font-size: 17px; }

@media (max-width: 767px) {
  .elementor-83 .elementor-element-d2c59aa > .elementor-widget-container { margin: 40px 16px 16px; }
}

/* Logo mark image */
.elementor-83 .elementor-element-cf16020 .elementor-image {
  display: flex;
  justify-content: center;
  padding: 20px 40px;
}
.elementor-83 .elementor-element-cf16020 img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* Description text */
.elementor-83 .elementor-element-1dac8a1 > .elementor-widget-container { margin: 20px 40px 40px; }
.elementor-83 .elementor-element-96f278e { font-family: var(--font-body) !important; color: var(--color-muted) !important; font-size: 17px; }
.elementor-83 .elementor-element-96f278e .elementor-text-editor { text-align: left; line-height: 1.8; }
.elementor-83 .elementor-element-96f278e > .elementor-widget-container { margin: 30px 0 40px; }

@media (max-width: 767px) {
  .elementor-83 .elementor-element-96f278e > .elementor-widget-container { margin: 20px 0; }
  .elementor-83 .elementor-element-1dac8a1 > .elementor-widget-container { margin: 16px; }
}

/* ================================================================
   SECTION: OFFER (¿Qué Ofrecemos?)
   ================================================================ */
.elementor-83 .elementor-element-3e2addd,
.elementor-83 .elementor-element-3e2addd:not(.elementor-motion-effects-element-type-background) {
  background: var(--color-bg-purple) !important;
  background-attachment: scroll !important;
}
.elementor-83 .elementor-element-3e2addd > .elementor-background-overlay { opacity: 0 !important; }

.elementor-83 .elementor-element-38e8e5c { text-align: center; }
.elementor-83 .elementor-element-38e8e5c .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(26px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.elementor-83 .elementor-element-d2306ec { text-align: center; }
.elementor-83 .elementor-element-d2306ec .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(24px, 3vw, 40px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.elementor-83 .elementor-element-ee1841e > .elementor-element-populated { margin: 0 24px; }

/* OFFER CARDS */
.our-offer {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin: 32px 0;
}

.our-offer .single-offer {
  min-height: 180px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  width: auto;
  min-width: 0;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  position: relative;
}
.our-offer .single-offer:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.single-offer-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 180px;
  padding: 24px 16px;
  color: #fff;
  text-align: center;
  font-family: var(--font-heading) !important;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.single-offer-content a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: #fff !important;
  font-family: var(--font-heading) !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  gap: 10px;
  padding: 20px;
  width: 100%;
}

.single-offer-content a i {
  font-size: 32px;
  display: block;
  opacity: 0.95;
}

/* New palette for offer cards */
.single-offer--purple      { background: linear-gradient(135deg, #00A4A3, #00BFBD); }
.single-offer--blue        { background: linear-gradient(135deg, #6B2FFF, #8B5FFF); }
.single-offer--pink        { background: linear-gradient(135deg, #FF4B28, #FF6B4A); }
.single-offer--gold        { background: linear-gradient(135deg, #F75838, #FF7A5C); }
.single-offer--blue-dark   { background: linear-gradient(135deg, #5111FF, #6B2FFF); }
.single-offer--purple-light{ background: linear-gradient(135deg, #00BFBD, #3DD9D7); }
.single-offer--pink-dark   { background: linear-gradient(135deg, #FF4B28, #F75838); }
.single-offer--gold-dark   { background: linear-gradient(135deg, #6B2FFF, #00A4A3); }

/* ================================================================
   SECTION: ABOUT US / WHAT DIFFERENTIATES
   ================================================================ */
.elementor-83 .elementor-element-64e026f,
.elementor-83 .elementor-element-64e026f:not(.elementor-motion-effects-element-type-background) {
  background: var(--color-bg-soft) !important;
  background-attachment: scroll !important;
}
.elementor-83 .elementor-element-64e026f > .elementor-background-overlay { opacity: 0 !important; }

.elementor-83 .elementor-element-263fe6b > .elementor-element-populated { margin: 0 24px; }

/* ================================================================
   SECTION: WHY US
   ================================================================ */
.why-us {
  padding: 80px 24px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Decorative blob */
.why-us::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,164,163,0.07) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.why-us__header {
  text-align: center;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
}

.why-us__header .subtitle {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 164, 163, 0.1);
  color: var(--color-primary);
  border-radius: var(--radius-pill);
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.why-us__header h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--color-text);
}

.why-us__content {
  display: grid;
  grid-template-columns: 280px 1fr 1fr;
  gap: 40px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.why-us__content__hero {
  border-radius: var(--radius-lg);
  overflow: hidden;
  align-self: stretch;
}

.why-us__content__hero__image {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border-radius: var(--radius-lg);
  position: relative;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-accent) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-us__content__hero__image::before {
  content: '';
  position: absolute;
  inset: 20px;
  border-radius: var(--radius-md);
  border: 2px solid rgba(255,255,255,0.2);
}

.why-us__content__hero__image::after {
  content: '🎉';
  font-size: 72px;
  opacity: 0.7;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.2));
}

.why-us__content__items { display: flex; flex-direction: column; gap: 24px; }

.why-us__content__item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--color-bg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
}
.why-us__content__item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.why-us__content__item__text {
  font-family: var(--font-body) !important;
  font-size: 15px;
  color: var(--color-muted) !important;
  line-height: 1.6;
  flex: 1;
  margin: 0;
}

/* Why us icon boxes — new palette */
.why-us-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us-icon-box {
  display: flex;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-us-icon-box i { color: #fff; font-size: 20px; }
.why-us-icon-box--blue   { background: var(--color-primary); }
.why-us-icon-box--purple { background: var(--color-accent); }
.why-us-icon-box--pink   { background: var(--color-cta); }
.why-us-icon-box--gold   { background: var(--color-cta-deep); }

@media (max-width: 1024px) {
  .why-us__content { grid-template-columns: 1fr 1fr; }
  .why-us__content__hero { grid-column: span 2; }
  .why-us__content__hero__image { min-height: 200px; }
}
@media (max-width: 640px) {
  .why-us__content { grid-template-columns: 1fr; }
  .why-us__content__hero { grid-column: span 1; }
}
@media (max-width: 767px) {
  .why-us { padding: 48px 16px; }
  .why-us__header h2 { font-size: 28px; }
}

/* ================================================================
   SECTION: EXPERIENCE STATS
   ================================================================ */
.experience-section {
  background: var(--color-bg-dark);
  padding: var(--section-v) 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Decorative circles */
.experience-section::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 2px solid rgba(0, 164, 163, 0.12);
  top: -200px;
  left: -100px;
  pointer-events: none;
}
.experience-section::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 2px solid rgba(255, 75, 40, 0.1);
  bottom: -100px;
  right: -80px;
  pointer-events: none;
}

.experience-section h2 {
  font-family: var(--font-heading) !important;
  color: #fff;
  font-size: clamp(24px, 3.5vw, 44px);
  font-weight: 700;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.experience-section .exp-subtitle {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(0, 191, 189, 0.15);
  color: var(--color-primary-bright);
  border-radius: var(--radius-pill);
  font-family: var(--font-body) !important;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.experience-stats {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 48px auto 0;
  position: relative;
  z-index: 1;
}

.experience-stat {
  text-align: center;
  min-width: 160px;
  flex: 1;
  max-width: 200px;
}

.experience-stat .stat-number {
  font-family: var(--font-heading) !important;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--color-primary-bright), var(--color-cta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.experience-stat:nth-child(even) .stat-number {
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  -webkit-background-clip: text;
  background-clip: text;
}

.experience-stat .stat-label {
  font-family: var(--font-body) !important;
  color: rgba(255,255,255,0.65);
  font-size: 15px;
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 767px) {
  .experience-stats { gap: 24px; }
  .experience-stat { min-width: 130px; }
}

/* ================================================================
   SECTION: CONTACT
   ================================================================ */
.section-new-contact {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: var(--section-v) 24px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Decorative blob */
.section-new-contact::before {
  content: '';
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,164,163,0.06) 0%, transparent 70%);
  bottom: -100px;
  right: -100px;
  pointer-events: none;
}

.contact-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  width: 100%;
  max-width: 1060px;
  position: relative;
  z-index: 1;
}

.left-side-contact {
  position: relative;
  background: var(--color-primary);
  color: #fff;
  padding: 52px 48px;
  border-radius: var(--radius-lg);
  width: 580px;
  margin: 80px -80px auto 0;
  z-index: 2;
  box-shadow: var(--shadow-teal);
}

.left-side-contact::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='60' height='60'%3E%3Ccircle cx='30' cy='30' r='28' fill='none' stroke='rgba(255,255,255,0.06)' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 60px 60px;
  pointer-events: none;
}

.right-side-contact {
  flex: 1;
  padding: 64px 56px 64px 120px;
  z-index: 1;
  border-radius: var(--radius-xl);
  background: var(--color-bg-soft);
  border: 1px solid rgba(0,164,163,0.1);
}

h2.contact-title {
  font-family: var(--font-heading) !important;
  font-weight: 700;
  font-size: clamp(26px, 3vw, 40px);
  padding-bottom: 16px;
  color: #fff;
}

.contact-description {
  padding-bottom: 40px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

.contact-icon {
  display: flex;
  align-items: center;
  padding-bottom: 24px;
}

.contact-icon circle { fill: rgba(255,255,255,0.15) !important; }

.text-container {
  margin-left: 20px;
  display: flex;
  flex-direction: column;
  color: #fff;
  font-family: var(--font-body) !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.text-container a { color: #fff !important; }
.text-container a:hover { color: rgba(255,255,255,0.75) !important; }

/* Decorative shapes in contact section */
.triangle-up1, .triangle-up2, .triangle-down1, .triangle-down2 { position: absolute; }
.triangle-up1 { top: 4%; left: 10%; z-index: 3; }
.triangle-up2 { top: -2%; right: 3%; z-index: 3; }
.triangle-down1 { bottom: 12%; left: 35%; }
.triangle-down2 { bottom: 22%; left: 1%; }

@media (max-width: 930px) {
  .triangle-up1, .triangle-up2, .triangle-down1, .triangle-down2 { display: none; }
  .contact-wrapper { flex-direction: column; gap: 0; }
  .left-side-contact { width: 100%; margin: 0; }
  .right-side-contact { width: 100%; padding: 40px 32px; margin-top: -20px; border-radius: 0 0 var(--radius-xl) var(--radius-xl); }
}

@media (max-width: 767px) {
  .section-new-contact { padding: 48px 16px; }
  .left-side-contact { padding: 36px 24px; }
  .right-side-contact { padding: 32px 20px; }
  h2.contact-title { font-size: 26px; }
  .contact-description { padding-bottom: 24px; }
}

/* ================================================================
   EVENT CONFIGURATOR
   ================================================================ */
.event-configurator {
  background: transparent;
  padding: 0;
  max-width: 560px;
}

.event-configurator h3 {
  font-family: var(--font-heading) !important;
  font-size: 26px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 28px;
}

.config-step { display: none; }
.config-step.active { display: block; }

.config-step > p {
  margin-bottom: 16px;
  color: var(--color-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
}

.config-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.config-option {
  padding: 14px 18px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 15px;
  color: var(--color-text);
  background: #fff;
  transition: var(--transition);
}

.config-option:hover,
.config-option.selected {
  border-color: var(--color-primary);
  background: rgba(0, 164, 163, 0.05);
  color: var(--color-text);
}

.config-option.selected {
  background: rgba(0, 164, 163, 0.1);
  font-weight: 600;
}

.config-btn {
  padding: 13px 32px;
  background: var(--color-cta);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 12px;
  box-shadow: var(--shadow-cta);
}

.config-btn:hover {
  background: var(--color-cta-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(255,75,40,0.4);
}

.config-btn.back {
  background: transparent;
  color: var(--color-primary);
  border: 2px solid var(--color-primary);
  box-shadow: none;
  margin-right: 10px;
}

.config-btn.back:hover {
  background: rgba(0, 164, 163, 0.06);
  box-shadow: none;
  transform: none;
}

.config-input {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: var(--font-body) !important;
  font-size: 15px;
  margin-bottom: 12px;
  color: var(--color-text);
  background: #fff;
  transition: var(--transition);
}

.config-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 164, 163, 0.15);
}

.config-input[rows] { resize: vertical; }

label[for] {
  display: block;
  margin-bottom: 6px;
  color: var(--color-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 600;
}

.config-result { text-align: center; padding: 32px 0; }
.config-result .check-icon {
  font-size: 56px;
  color: var(--color-primary);
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.config-result h4 {
  font-family: var(--font-heading) !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 10px;
}
.config-result p { font-family: var(--font-body) !important; font-size: 15px; color: var(--color-muted); }

/* ================================================================
   SECTION: SERVICES DETAIL (two columns)
   ================================================================ */
.elementor-83 .elementor-element-e9af725 > .elementor-element-populated,
.elementor-83 .elementor-element-855b5a1 > .elementor-element-populated {
  margin: 0 20px;
}

.elementor-83 .elementor-element-e9af725 .elementor-heading-title,
.elementor-83 .elementor-element-855b5a1 .elementor-heading-title,
.elementor-83 .elementor-element-c468cbf .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 2.5vw, 34px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}

.elementor-83 .elementor-element-e9af725 ul,
.elementor-83 .elementor-element-855b5a1 ul {
  list-style: none;
  padding: 0;
}

.elementor-83 .elementor-element-e9af725 li,
.elementor-83 .elementor-element-855b5a1 li {
  padding: 10px 0;
  padding-left: 24px;
  position: relative;
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted);
  border-bottom: 1px solid var(--color-border);
  line-height: 1.6;
}

.elementor-83 .elementor-element-e9af725 li::before,
.elementor-83 .elementor-element-855b5a1 li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

/* ================================================================
   SECTION: CTA
   ================================================================ */
.elementor-83 .elementor-element-53b44a6,
.elementor-83 .elementor-element-53b44a6:not(.elementor-motion-effects-element-type-background) {
  background: var(--color-bg-soft) !important;
  background-attachment: scroll !important;
  position: relative;
  overflow: hidden;
}

/* Confetti dots decorator */
.elementor-83 .elementor-element-53b44a6::before {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,164,163,0.15) 0%, transparent 70%);
  top: -60px;
  left: -40px;
  pointer-events: none;
}
.elementor-83 .elementor-element-53b44a6::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,40,0.1) 0%, transparent 70%);
  bottom: -80px;
  right: -60px;
  pointer-events: none;
}

.elementor-83 .elementor-element-53b44a6 > .elementor-background-overlay { opacity: 0 !important; }

.elementor-83 .elementor-element-6c93790 { text-align: center; position: relative; z-index: 1; }
.elementor-83 .elementor-element-6c93790 .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 3vw, 40px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}
.elementor-83 .elementor-element-6c93790 > .elementor-widget-container { margin: 48px 32px 20px; }

.elementor-83 .elementor-element-60b48f1 { font-family: var(--font-body) !important; position: relative; z-index: 1; }
.elementor-83 .elementor-element-60b48f1 .elementor-text-editor { text-align: center; color: var(--color-muted) !important; font-size: 17px; }
.elementor-83 .elementor-element-60b48f1 > .elementor-widget-container { margin: 0 32px 32px; }

.elementor-83 .elementor-element-a4d4503 { position: relative; z-index: 1; }
.elementor-83 .elementor-element-a4d4503 > .elementor-widget-container { margin: 0 20px 48px; text-align: center; }

.elementor-button-link.elementor-button,
.elementor-83 .elementor-element-a4d4503 a.elementor-button,
.elementor-83 .elementor-element-a4d4503 .elementor-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px !important;
  background: var(--color-cta) !important;
  color: #fff !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border-radius: var(--radius-pill) !important;
  box-shadow: var(--shadow-cta) !important;
  transition: var(--transition) !important;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.elementor-83 .elementor-element-a4d4503 a.elementor-button:hover,
.elementor-83 .elementor-element-a4d4503 .elementor-button:hover {
  background: var(--color-cta-deep) !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(255,75,40,0.4) !important;
}

@media (max-width: 767px) {
  .elementor-83 .elementor-element-6c93790 > .elementor-widget-container { margin: 40px 16px 16px; }
  .elementor-83 .elementor-element-60b48f1 > .elementor-widget-container { margin: 0 16px 24px; }
  .elementor-83 .elementor-element-a4d4503 > .elementor-widget-container { margin: 0 16px 40px; }
}

/* ================================================================
   SECTION: MISSION & COLLABORATION (image + text pairs)
   ================================================================ */
.elementor-83 .elementor-element-4f8b670 > .elementor-element-populated,
.elementor-83 .elementor-element-8074b1d > .elementor-element-populated,
.elementor-83 .elementor-element-6cc65db > .elementor-element-populated,
.elementor-83 .elementor-element-c468cbf > .elementor-element-populated {
  margin: 0 20px;
}

.elementor-83 .elementor-element-4f8b670 .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 2.8vw, 36px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
}

.elementor-83 .elementor-element-8074b1d img,
.elementor-83 .elementor-element-6cc65db img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  width: 100%;
  height: auto;
}

/* ================================================================
   SECTION: OTHER THEMES
   ================================================================ */
.other-themes-section {
  padding: var(--section-v) 24px;
  background: var(--color-bg);
  position: relative;
  overflow: hidden;
}

/* Diagonal accent */
.other-themes-section::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 8px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-cta));
  top: 0;
  left: 0;
}

.other-themes-section h2,
#other-themes h2 {
  font-family: var(--font-heading) !important;
  text-align: center;
  font-size: clamp(26px, 3.5vw, 44px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
  margin-bottom: 48px;
  margin-top: 0;
}

.themes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

.theme-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.theme-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-bright));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.theme-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 164, 163, 0.2);
}

.theme-card:hover::before { opacity: 1; }

.theme-card .theme-icon {
  font-size: 44px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.theme-card h3 {
  font-family: var(--font-heading) !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.theme-card p {
  font-family: var(--font-body) !important;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
}

/* Theme card icon colors — new palette */
.theme-card:nth-child(1) .theme-icon i { color: var(--color-primary); }
.theme-card:nth-child(2) .theme-icon i { color: var(--color-cta); }
.theme-card:nth-child(3) .theme-icon i { color: var(--color-accent); }
.theme-card:nth-child(4) .theme-icon i { color: var(--color-primary-bright); }
.theme-card:nth-child(5) .theme-icon i { color: var(--color-cta-deep); }
.theme-card:nth-child(6) .theme-icon i { color: var(--color-accent-deep); }

/* ================================================================
   SECTION: SEO TEXT BLOCKS
   ================================================================ */
.elementor-83 .elementor-element-518dff6 > .elementor-element-populated { margin: 0 24px; }

.elementor-83 .elementor-element-518dff6 .elementor-heading-title {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 2.8vw, 34px) !important;
  font-weight: 700 !important;
  color: var(--color-text) !important;
  margin: 24px 0 12px !important;
}

.elementor-83 .elementor-element-518dff6 .elementor-text-editor {
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted) !important;
  line-height: 1.8;
}

/* ================================================================
   NEW SECTION: SOCIAL EXPERIENCE (top)
   ================================================================ */
#social-experience {
  padding: var(--section-v) var(--container-px);
  background: var(--color-bg-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}

/* Floating ring decorator */
#social-experience::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 40px solid rgba(0, 164, 163, 0.06);
  top: -120px;
  right: -80px;
  pointer-events: none;
}

#social-experience::after {
  content: '';
  position: absolute;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(107, 47, 255, 0.05);
  bottom: -60px;
  left: -40px;
  pointer-events: none;
}

#social-experience .pph-container { position: relative; z-index: 1; }

#social-experience .section-title { margin-left: auto; margin-right: auto; }
#social-experience .section-lead { margin-left: auto; margin-right: auto; text-align: center; }

/* Feature cards */
.pph-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
  text-align: left;
}

.pph-feature {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.pph-feature::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-primary-bright));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.pph-feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pph-feature:hover::after { transform: scaleX(1); }

.pph-feature__icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}

.pph-feature h3 {
  font-family: var(--font-heading) !important;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.pph-feature p {
  font-family: var(--font-body) !important;
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.65;
  margin: 0;
}

@media (max-width: 768px) { .pph-features { grid-template-columns: 1fr; } }
@media (max-width: 1024px) and (min-width: 769px) { .pph-features { grid-template-columns: repeat(2, 1fr); } }

/* ================================================================
   NEW SECTION: RESPONSIBLE FUN (bottom)
   ================================================================ */
#responsible-fun {
  padding: var(--section-v) var(--container-px);
  background: var(--color-bg-warm);
  position: relative;
  overflow: hidden;
}

/* Pill decorator */
#responsible-fun::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 120px;
  border-radius: var(--radius-pill);
  background: rgba(255, 75, 40, 0.05);
  top: 30px;
  right: -60px;
  transform: rotate(-15deg);
  pointer-events: none;
}

#responsible-fun::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 80px;
  border-radius: var(--radius-pill);
  background: rgba(0, 164, 163, 0.07);
  bottom: 40px;
  left: -30px;
  transform: rotate(10deg);
  pointer-events: none;
}

.pph-responsible {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pph-responsible__content .section-title { text-align: left; }
.pph-responsible__content .section-lead { text-align: left; margin-bottom: 0; }

.pph-responsible__badges {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}

.resp-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #fff;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 75, 40, 0.1);
  min-width: 240px;
  transition: var(--transition);
}

.resp-badge:hover { transform: translateX(-4px); box-shadow: var(--shadow-md); }

.resp-badge i {
  font-size: 22px;
  color: var(--color-cta);
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.resp-badge span {
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

@media (max-width: 900px) {
  .pph-responsible { grid-template-columns: 1fr; gap: 40px; }
  .pph-responsible__content .section-title { text-align: center; }
  .pph-responsible__content .section-lead { text-align: center; }
  .pph-responsible__badges { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .resp-badge { min-width: 200px; flex: 1; max-width: 280px; }
}

@media (max-width: 480px) {
  .pph-responsible__badges { flex-direction: column; }
  .resp-badge { min-width: 0; max-width: 100%; }
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  position: relative;
}

/* Turquoise accent bar on top */
.site-footer::before {
  content: '';
  display: block;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent), var(--color-cta));
}

.site-footer__top {
  padding: 72px 0 56px;
}

.site-footer__container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-px);
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr 1fr;
  gap: 48px;
}

.footer-col { }

.footer-brand-name {
  font-family: var(--font-heading) !important;
  font-size: 26px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 16px;
}

.footer-brand-tagline {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}

.footer-col__title {
  font-family: var(--font-heading) !important;
  font-size: 12px;
  font-weight: 700;
  color: var(--color-primary-bright);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}

.footer-info-line {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  margin: 0 0 8px;
  line-height: 1.5;
}

.footer-info-line a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: var(--transition);
}
.footer-info-line a:hover { color: var(--color-primary-bright); }

.footer-nav-list { list-style: none; padding: 0; margin: 0; }
.footer-nav-list li { margin-bottom: 10px; }
.footer-nav-list a {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--transition);
  display: block;
  padding: 2px 0;
}
.footer-nav-list a:hover { color: var(--color-primary-bright); padding-left: 4px; }

.site-footer__disclaimer {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 24px var(--container-px);
  font-family: var(--font-body) !important;
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.site-footer__copy {
  background: rgba(0,0,0,0.3);
  text-align: center;
  padding: 16px var(--container-px);
  font-family: var(--font-body) !important;
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 1024px) {
  .site-footer__container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 640px) {
  .site-footer__container { grid-template-columns: 1fr; gap: 32px; }
  .site-footer__top { padding: 48px 0 40px; }
  .footer-brand-name { font-size: 22px; }
}

/* ================================================================
   COOKIE BANNER
   ================================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(23, 32, 51, 0.97);
  color: #fff;
  padding: 20px 28px;
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-family: var(--font-body) !important;
  font-size: 14px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.25);
  border-top: 3px solid var(--color-primary);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 260px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-body) !important;
  font-size: 14px;
}

.cookie-banner a { color: var(--color-primary-bright); text-decoration: underline; }

.cookie-btn {
  padding: 10px 24px;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-family: var(--font-body) !important;
  font-size: 14px;
  font-weight: 700;
  transition: var(--transition);
  white-space: nowrap;
}

.cookie-accept {
  background: var(--color-cta);
  color: #fff;
  box-shadow: var(--shadow-cta);
}
.cookie-accept:hover { background: var(--color-cta-deep); }

.cookie-reject {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-reject:hover { background: rgba(255,255,255,0.08); color: #fff; }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal-page {
  padding: calc(var(--header-h) + 48px) var(--container-px) 80px;
  background: var(--color-bg);
}

.legal-container {
  max-width: 840px;
  margin: 0 auto;
}

.breadcrumb-nav {
  margin-bottom: 32px;
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: var(--color-muted);
}

.breadcrumb-nav a { color: var(--color-primary); }
.breadcrumb-nav a:hover { color: var(--color-cta); }

.legal-h1 {
  font-family: var(--font-heading) !important;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.legal-h2 {
  font-family: var(--font-heading) !important;
  font-size: 22px;
  font-weight: 700;
  color: var(--color-text);
  margin: 40px 0 14px;
  padding-top: 8px;
  border-top: 2px solid var(--color-border);
}

.legal-h3 {
  font-family: var(--font-heading) !important;
  font-size: 18px;
  font-weight: 600;
  color: var(--color-text);
  margin: 24px 0 10px;
}

.legal-date {
  font-family: var(--font-body) !important;
  font-size: 14px;
  color: var(--color-muted);
  margin-bottom: 32px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0, 164, 163, 0.15);
}

.legal-page p {
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.85;
  margin-bottom: 16px;
}

.legal-page a { color: var(--color-primary); }
.legal-page a:hover { color: var(--color-cta); }

.legal-list {
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.8;
  padding-left: 0;
  margin-bottom: 20px;
  list-style: none;
}

.legal-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  border-bottom: 1px solid var(--color-border);
}

.legal-list li:last-child { border-bottom: none; }

.legal-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-size: 14px;
  top: 9px;
}

address.legal-address {
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted);
  line-height: 1.9;
  font-style: normal;
  margin-bottom: 20px;
  padding: 24px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

address.legal-address a { color: var(--color-primary); }

.legal-contact-box {
  margin-top: 48px;
  padding: 28px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 164, 163, 0.15);
  font-family: var(--font-body) !important;
}

.legal-contact-box p { color: var(--color-muted); font-size: 15px; margin: 0; }
.legal-contact-box a { color: var(--color-primary); }

.legal-back {
  margin-top: 40px;
  text-align: center;
}

.legal-back a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-bg-soft);
  border: 2px solid var(--color-primary);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
}

.legal-back a:hover {
  background: var(--color-primary);
  color: #fff;
}

.rg-highlight {
  background: rgba(0, 164, 163, 0.07);
  border-left: 4px solid var(--color-primary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-bottom: 28px;
}

.rg-highlight p { margin: 0; color: var(--color-text) !important; font-size: 15px; }

/* Sitemap */
.sitemap-list { list-style: none; padding: 0; margin: 0 0 24px; }
.sitemap-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body) !important;
  font-size: 16px;
  color: var(--color-muted);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sitemap-list li::before { content: '→'; color: var(--color-primary); flex-shrink: 0; }
.sitemap-list li:last-child { border-bottom: none; }
.sitemap-list a { color: var(--color-primary); font-weight: 700; }
.sitemap-list a:hover { color: var(--color-cta); text-decoration: underline; }
.sitemap-desc { color: var(--color-muted); font-size: 14px; }

@media (max-width: 767px) {
  .legal-h1 { font-size: 28px; }
  .legal-h2 { font-size: 20px; }
  .legal-page { padding: calc(var(--header-h) + 32px) 16px 60px; }
}

/* ================================================================
   404 PAGE
   ================================================================ */
.page-404 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 60vh;
  padding: calc(var(--header-h) + 60px) 24px 80px;
}

.page-404 h1 {
  font-family: var(--font-heading) !important;
  font-size: clamp(60px, 12vw, 120px);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
  margin: 0 0 16px;
}

.page-404 h2 {
  font-family: var(--font-heading) !important;
  font-size: clamp(22px, 3vw, 36px);
  color: var(--color-text);
  margin-bottom: 16px;
}

.page-404 p {
  color: var(--color-muted);
  font-size: 17px;
  margin-bottom: 36px;
}

.page-404__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.page-404__links {
  max-width: 560px;
  width: 100%;
  padding: 32px;
  background: var(--color-bg-soft);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  text-align: left;
}

.page-404__links-title {
  font-family: var(--font-heading) !important;
  font-size: 18px !important;
  margin-bottom: 16px !important;
}

/* ================================================================
   BUTTONS (global utility)
   ================================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--color-cta);
  color: #fff;
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-cta);
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--color-cta-deep);
  color: #fff;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: transparent;
  color: var(--color-primary);
  font-family: var(--font-body) !important;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  border: 2px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--color-primary);
  color: #fff;
}

/* ================================================================
   MISC OVERRIDES
   ================================================================ */

/* Elementor text defaults — override with new palette */
.elementor-widget-text-editor,
.elementor-text-editor {
  color: var(--color-muted) !important;
  font-family: var(--font-body) !important;
  font-size: 16px !important;
}

.elementor-widget-heading .elementor-heading-title {
  font-family: var(--font-heading) !important;
  color: var(--color-text) !important;
}

.elementor-text-editor a { color: var(--color-primary); }
.elementor-text-editor a:hover { color: var(--color-cta); text-decoration: underline; }

/* Entry content */
.entry-content h2, .entry-content h3 {
  font-family: var(--font-heading) !important;
  color: var(--color-text) !important;
}

.entry-content ul li, .entry-content ol li {
  font-family: var(--font-body) !important;
  color: var(--color-muted);
  font-size: 16px;
}

/* Spacer override */
.elementor-spacer-inner { min-height: 0; }

/* Container */
.elementor-section-boxed > .elementor-container,
.aux-s-fhd .elementor-section-boxed > .elementor-container {
  max-width: 1140px !important;
}

/* Main content — no extra top padding (handled per section/page) */
.aux-main { padding-top: 0; }
.aux-main.legal-page { padding-top: calc(var(--header-h) + 48px); }

/* Image borders in image+text layouts */
.elementor-widget-image .elementor-image img {
  border-radius: var(--radius-xl);
}

/* Clean up legacy structural elements */
.entry-meta { display: block; height: 0; overflow: hidden; }
.clear { clear: both; display: block; }
.aux-scroll-top { display: none; }

/* Required field indicator */
.required-field,
[aria-hidden="true"][style*="color:red"],
span[style*="color:red"] {
  color: var(--color-cta) !important;
}

/* ================================================================
   REDUCED MOTION
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  .pph-offcanvas { transition: none; }
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================ */
@media (max-width: 1200px) {
  :root { --container-max: 960px; }
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .site-header__cta span { display: none; }
  .site-header__cta { padding: 10px 14px; border-radius: 50%; width: 44px; height: 44px; justify-content: center; }
  .nav-burger { display: flex; }
}

@media (max-width: 640px) {
  :root {
    --section-v: 60px;
    --container-px: 16px;
    --header-h: 64px;
  }
  .site-header__cta { display: none; }
  .site-header__container { gap: 16px; }
}

@media (max-width: 767px) {
  .elementor-83 .elementor-element-ee1841e > .elementor-element-populated { margin: 0 12px; }
  .our-offer { grid-template-columns: repeat(2, 1fr); }
  .themes-grid { grid-template-columns: 1fr; }
  .other-themes-section h2 { font-size: 26px; }
}
