/* ═══════════════════════════════════════════
   DESIGN TOKENS — single source of truth
   ═══════════════════════════════════════════ */
:root {
  /* ── Fonts ── */
  --font-primary: "Inter", sans-serif;
  --font-secondary: "Poppins", sans-serif;

  /* ── Brand Colors ── */
  --color-brand-red: #d65a50;
  --color-brand-red-dark: #be4a42;
  --color-brand-yellow: #fbd73c;
  --color-brand-yellow-dark: #d5b72d;

  /* ── Surface Colors ── */
  --color-bg-body: #fff;
  --color-bg-section: #fff;
  --color-surface-dark: #000000;

  /* ── Text Colors ── */
  --color-text-primary: #000000;
  --color-text-white: #ffffff;
  --color-text-white-muted: rgba(255, 255, 255, 0.75);
  --color-text-muted: rgba(255, 255, 255, 0.905);
  --color-highlight-text: #d65a50;

  /* ── Border / Overlay ── */
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-border-white: rgba(255, 255, 255, 0.18);
  --color-nav-bg: rgba(255, 255, 255, 0.12);
  --color-hero-overlay: linear-gradient(to right,
      rgba(0, 0, 0, 0.941) 0%,
      rgba(0, 0, 0, 0.634) 35%,
      rgba(0, 0, 0, 0.463) 50%,
      rgba(0, 0, 0, 0.122) 65%,
      rgb(0, 0, 0) 100%);

  /* ── Card Colors ── */
  --color-card-bg: #6c37d6;
  --color-card-bg-hover: #5a2bb8;
  --color-card-text: #ffffff;
  --color-section-bg-light: #ffffff;

  /* ────────────────────────────────────────
     SPACING SCALE  (4-based)
  ──────────────────────────────────────── */
  --space-xs: 4px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 40px;
  --space-2xl: 64px;
  --space-3xl: 80px;
  --space-4xl: 90px;

  /* ── Section chrome ── */
  --section-gap: 12px;
  --section-radius: 20px;
  --section-radius-sm: 14px;
  --section-pad-y: var(--space-4xl);
  --section-pad-x: 60px;
  --section-pad-y-sm: 50px;
  --section-pad-x-sm: 24px;

  /* ── Navbar ── */
  --navbar-pad-x: 50px;
  --navbar-pad-y: 9px;

  /* ── Hero ── */
  --hero-content-max-width: 800px;
  --hero-h1-size: 80px;

  /* ────────────────────────────────────────
     TYPOGRAPHY SCALE
  ──────────────────────────────────────── */
  --text-xs: 0.75rem;
  --text-sm: 0.88rem;
  --text-base: 0.92rem;
  --text-md: 0.95rem;
  --text-lg: 0.97rem;
  --text-xl: 1rem;
  --text-2xl: 1.15rem;
  --text-3xl: 1.3rem;

  /* Section heading sizes (fluid via clamp) */
  --heading-display: clamp(2.4rem, 5vw, 3.8rem);
  --heading-xl: clamp(2rem, 5vw, 3.2rem);
  --heading-lg: clamp(1.8rem, 3.5vw, 2.8rem);
  --heading-scatter: clamp(2rem, 5vw, 3.75rem);

  /* ────────────────────────────────────────
     BORDER RADIUS SCALE
  ──────────────────────────────────────── */
  --radius-pill: 50px;
  --radius-lg: 30px;
  --radius-md: 16px;
  --radius-sm: 8px;

  /* ────────────────────────────────────────
     REUSABLE SECTION HEADING VARS
  ──────────────────────────────────────── */
  --section-label-size: var(--text-sm);
  --section-label-spacing: 0.04em;
  --section-desc-size: var(--text-base);
  --section-desc-lh: 1.65;
  --section-desc-mb: 56px;
}

/* ═══════════════════════════════════════════
   RESETS & BASE
   ═══════════════════════════════════════════ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-secondary);
  background: var(--color-bg-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-primary);
}

section {
  overflow: hidden !important;
}

/* ═══════════════════════════════════════════
   REUSABLE UTILITY CLASSES
   ═══════════════════════════════════════════ */

/* ── Section wrapper (shared by all sections) ── */
.section {
  margin: 0 var(--section-gap) var(--section-gap);
  border-radius: var(--section-radius);
  overflow: hidden;
}

.section--light {
  background: var(--color-bg-section);
}

.section--dark {
  background: var(--color-surface-dark);
  color: var(--color-section-bg-light);
}

.section--padded {
  padding: var(--section-pad-y) var(--section-pad-x);
}

/* ── Shared heading highlight pill ── */
.text-highlight-pill {
  border-radius: var(--radius-sm);
  padding: 2px 12px 4px;
  display: inline;
}

.text-highlight-pill--red {
  background: var(--color-highlight-text);
  color: var(--color-text-white);
}

/* ── Section label (ALL-CAPS tag above heading) ── */
.section-label {
  font-size: var(--section-label-size);
  font-weight: 500;
  letter-spacing: var(--section-label-spacing);
  text-transform: uppercase;
  margin-bottom: var(--space-sm);
}

/* ── Section headings ── */
.section-heading {
  font-size: var(--heading-xl);
  line-height: 1.2;
  font-family: var(--font-primary);
  margin-bottom: var(--space-md);
}

.section-heading--display {
  font-size: var(--heading-display);
}

.section-heading--lg {
  font-size: var(--heading-lg);
}

.section-heading--scatter {
  font-size: var(--heading-scatter);
}

.section-heading-accent {
  color: var(--color-brand-red);
}

/* ── Section description ── */
.section-desc {
  font-size: var(--section-desc-size);
  line-height: var(--section-desc-lh);
}

/* ── Shared card base (red background cards used in who + testimonials) ── */
.card-red {
  background: var(--color-brand-red);
  border: 1px solid var(--color-brand-red-dark);
  border-radius: var(--radius-md);
  transition: background 0.2s, border-color 0.2s;
}

.card-red:hover {
  background: var(--color-brand-red-dark);
}

/* ── Shared horizontal divider (used inside cards) ── */
.card-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* ── Shared avatar circle ── */
.avatar {
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.avatar--sm {
  width: 44px;
  height: 44px;
  font-size: var(--text-xs);
}

.avatar--yellow {
  background: var(--color-brand-yellow);
  border: 1px solid var(--color-brand-yellow-dark);
  color: var(--color-text-primary);
}

/* ── Shared btn base ── */
.btn {
  border: none;
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  border-radius: var(--radius-pill);
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}

.btn--red {
  background: var(--color-brand-red);
  color: var(--color-text-white);
}

.btn--red i {
  color: var(--color-text-white) !important;

}

.btn--red:hover {
  background: var(--color-brand-red-dark);
  color: var(--color-text-white);
}

.btn--outline-white {
  background: transparent;
  color: var(--color-text-white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--color-text-white);
  color: var(--color-text-white);
}

/* ── Shared lift hover effect ── */
.hover-lift:hover {
  transform: translateY(-2px);
}

/* ═══════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════ */
.navbar-wrapper {
  padding: var(--navbar-pad-y) var(--navbar-pad-x);
  background: transparent;
  top: 0;
  position: fixed;
  width: 100%;
  z-index: 100;
  transition: all 0.3s ease;
  padding-top: 30px;
}

.navbar-wrapper.scrolled {
  background: rgb(0, 0, 0);
  padding-top: var(--navbar-pad-y);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  width: 100px;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  list-style: none;
  margin-bottom: 0;
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-white);
  border-radius: var(--radius-pill);
  padding: var(--space-sm) var(--space-md) var(--space-sm) var(--space-lg);
}

.nav-links>li {
  position: relative;
}

.nav-links>li>a,
.nav-links>li>.nav-link-btn {
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-base);
  font-weight: 500;
  padding: var(--space-sm) 14px;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--space-xs);
}

.nav-links>li>a:hover,
.nav-links>li>.nav-link-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-white);
}

.nav-links>li>a.active,
.nav-links>li>.nav-link-btn.active {
  background: rgba(255, 255, 255, 0.778);
  color: var(--color-text-primary);
}

.rotate-icon {
  transition: transform 0.2s;
}

.rotate-icon.active {
  transform: rotate(180deg);
}

.dropdown-menu-custom {
  position: absolute;
  top: calc(75% + var(--space-sm));
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-section-bg-light);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0, 0, 60, 0.18);
  min-width: 180px;
  padding: 6px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  transform: translateX(-50%) translateY(6px);
  z-index: 200;
}

.has-dropdown:hover .dropdown-menu-custom,
.has-dropdown.open .dropdown-menu-custom {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu-custom a {
  display: block;
  padding: 9px 14px;
  color: #1a1a3e;
  font-size: var(--text-xs);
  font-weight: 500;
  text-decoration: none;
  border-radius: var(--radius-sm);
  transition: background 0.15s;
}

.dropdown-menu-custom a:hover {
  background: var(--color-brand-red);
  color: var(--color-text-white);
}

/* Reuses .btn .btn--red for .btn-book */
.btn-book {
  font-size: var(--text-base);
  padding: 10px 22px;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  text-decoration: none;
}

.btn-book:hover {
  transform: scale(1.03);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--space-sm);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text-white);
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--color-text-primary);
  backdrop-filter: blur(12px);
  border-radius: var(--section-radius);
  margin: 10px 0 0;
  padding: 12px var(--space-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav.open {
  display: block;
}

.mobile-nav a,
.mobile-nav button {
  display: block;
  width: 100%;
  text-align: left;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--text-md);
  font-weight: 500;
  padding: 10px var(--space-md);
  border-radius: var(--radius-sm);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.mobile-nav a:hover,
.mobile-nav button:hover {
  background: rgba(255, 255, 255, 0.1);
}

.mobile-sub {
  padding-left: var(--space-md);
  display: none;
}

.mobile-sub.open {
  display: block;
}

.mobile-sub a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  padding: 7px 14px;
}

.mobile-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 6px var(--space-sm);
}

/* ═══════════════════════════════════════════
   HERO — PARALLAX
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  border-radius: var(--section-radius);
  margin: var(--section-gap);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: start;
}

.hero-bg {
  position: absolute;
  inset: -80px;
  z-index: 0;
  overflow: hidden;
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: top;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  will-change: transform, opacity;
}

/* Active slide */
.hero-slide.active {
  opacity: 1;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--color-hero-overlay);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 160px var(--section-pad-x) var(--space-3xl);
  max-width: var(--hero-content-max-width);
}

.hero-content i {
  color: var(--color-brand-red);
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, var(--hero-h1-size));
  color: var(--color-text-white);
  line-height: 1.15;
  margin-bottom: var(--space-md);
  text-shadow: 0 1px 3px black;
}

.text-highlight {
  color: var(--color-highlight-text);
}

.hero-content p {
  color: var(--color-text-white-muted);
  font-size: var(--text-xl);
  line-height: 1.7;
  margin-bottom: 36px;
  text-shadow: 0 1px 3px black;
}

.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Hero button sizing (base style from .btn) */
.btn-primary-hero {
  padding: 14px 30px;
  font-size: var(--text-lg);
}

.btn-outline-hero {
  padding: 13px 28px;
  font-size: var(--text-lg);
}

/* ═══════════════════════════════════════════
   ABOUT / STATS SECTION
   ═══════════════════════════════════════════ */
.about-headline {
  font-size: var(--heading-xl);
  color: var(--color-text-primary);
  line-height: 1.18;
  margin-bottom: var(--space-2xl);
  max-width: 820px;
}

/* Reuses .text-highlight-pill .text-highlight-pill--red as .about-highlight */
.about-highlight {
  background: var(--color-highlight-text);
  color: var(--color-text-white);
  border-radius: var(--radius-sm);
  padding: 2px 12px 4px;
  display: inline;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  border-right: 1px solid var(--color-text-primary);
  padding: var(--space-xl) var(--space-xl);
}

.stat-item:first-child {
  padding-left: 10px;
}

.stat-item:last-child {
  border-right: none;
  padding-right: 0;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 1;
  margin-bottom: var(--space-md);
  letter-spacing: -1px;
  background: linear-gradient(90deg, #d65a50, black);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: var(--space-md);
}

.stat-desc {
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  line-height: 1.6;
  max-width: 240px;
}

/* ═══════════════════════════════════════════
   WHO IT'S FOR / SERVICES SECTION
   ═══════════════════════════════════════════ */
.who-headline {
  font-size: var(--heading-xl);
  color: var(--color-section-bg-light);
  line-height: 1.18;
  margin-bottom: var(--space-2xl);
  max-width: 680px;
}

/* Reuses same pill style as about-highlight */
.who-headline-highlight {
  background: var(--color-brand-red);
  color: var(--color-text-white);
  border-radius: var(--radius-sm);
  padding: 2px 14px 6px;
  display: inline;
}

.who-cards-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

/* Extends .card-red */
.who-card {
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  min-height: 300px;
  transform: translateY(0);
  transition: background 0.2s, transform 0.2s;
}

.who-card:hover {
  transform: translateY(-8px) !important;
}

.who-card-icon {
  width: 90px;
  height: 90px;
  flex-shrink: 0;
  border: 1px solid var(--color-text-white);
  padding: 20px;
  border-radius: 50px;
}

.who-card-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.who-card-body {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.who-card-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-card-text);
  line-height: 1.3;
  margin: 0;
}

.who-card-desc {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  margin: 0;
}

/* ═══════════════════════════════════════════
   SPONSORS / OFFERS SECTION
   ═══════════════════════════════════════════ */
.sponsors-section {
  text-align: center;
}

.sponsors-heading {
  font-size: var(--heading-xl);
  color: var(--color-text-primary);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}


.sponsors-subtext {
  font-size: var(--section-desc-size);
  color: var(--color-text-primary);
  line-height: var(--section-desc-lh);
  margin-bottom: var(--section-desc-mb);
}

.sponsors-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 1100px;
  margin: 0 auto;
}

.sponsors-row {
  display: flex;
  gap: 14px;
  justify-content: center;
}

.sponsors-row--2 {
  padding: 0 170px;
}

/* Extends .card-red */
.sponsor-card {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  min-width: 0;
  text-decoration: none;
}

.sponsor-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: var(--text-2xl);
}

.sponsor-icon svg {
  width: 100%;
  height: 100%;
}

.sponsor-name {
  font-size: var(--text-xl);
  font-weight: 600;
  color: var(--color-section-bg-light);
  white-space: nowrap;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS SECTION
   ═══════════════════════════════════════════ */
.testi-section {
  padding: var(--section-pad-y) 0;
}

.testi-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: 0 var(--section-pad-x);
  margin-bottom: var(--space-2xl);
}

.testi-heading {
  font-size: var(--heading-lg);
  color: #ffffff;
  line-height: 1.2;
  margin: 0;
}


.testi-subtext {
  font-size: var(--section-desc-size);
  color: var(--color-text-white);
  line-height: var(--section-desc-lh);
  max-width: 360px;
  margin: 0;
  padding-top: 6px;
  flex-shrink: 0;
}

/* Scrolling tracks */
.testi-track-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 14px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}

.testi-track {
  display: flex;
  gap: 14px;
  width: max-content;
}

.testi-track--left {
  animation: scrollLeft 40s linear infinite;
}

.testi-track--right {
  animation: scrollRight 40s linear infinite;
}

.testi-track-wrap:hover .testi-track {
  animation-play-state: paused;
}

@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

/* Extends .card-red */
.testi-card {
  padding: 28px 28px 24px;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testi-stars {
  font-size: var(--text-2xl);
  color: #f59e0b;
  letter-spacing: 2px;
  line-height: 1;
}

.testi-stars--4 {
  background: linear-gradient(to right, #f59e0b 80%, #4b5563 80%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.testi-text {
  font-size: var(--text-sm);
  color: var(--color-text-white);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

/* Testimonial divider is white (different from .card-divider which is white/25) */
.testi-divider {
  width: 100%;
  height: 1px;
  background: var(--color-bg-body);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testi-name {
  font-size: var(--text-md);
  font-weight: 700;
  color: var(--color-bg-body);
  margin: 0 0 2px;
}

.testi-role {
  font-size: var(--text-xs);
  color: var(--color-bg-section);
  margin: 0;
}

/* ═══════════════════════════════════════════
   SCATTER / AREAS SECTION
   ═══════════════════════════════════════════ */
.scatter-wrap {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.scatter-heading {
  font-size: var(--heading-scatter);
  max-width: 750px;
  color: #0a0a0a;
  line-height: 1.08;
  text-align: center;
  letter-spacing: -2px;
  position: relative;
  z-index: 2;
  pointer-events: none;
  font-family: var(--font-primary);
}

.scatter-img {
  position: absolute;
  overflow: hidden;
  border-radius: 10px;
  z-index: 3;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.scatter-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.scatter-img--tl {
  width: 220px;
  height: 280px;
  top: 48px;
  left: 48px;
}

.scatter-img--tr {
  width: 195px;
  height: 138px;
  top: 60px;
  right: 100px;
}

.scatter-img--bl {
  width: 130px;
  height: 160px;
  bottom: 72px;
  left: 110px;
}

.scatter-img--br {
  width: 280px;
  height: 200px;
  bottom: 58px;
  right: 48px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: var(--space-xl);
  padding: var(--space-2xl) var(--section-pad-x) var(--space-3xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--color-surface-dark);
}

.footer-brand-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-address {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: var(--space-lg);
}

.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.footer-contact-list li i {
  color: var(--color-brand-red);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
  width: 14px;
}

.footer-contact-list a {
  color: var(--color-text-white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--color-text-white);
}

.footer-col-title {
  font-size: var(--text-xs);
  font-weight: 700;
  color: var(--color-text-white);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
  font-family: var(--font-primary);
}

.footer-nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.footer-nav-links li a {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-decoration: none;
  padding: 5px 0;
  transition: color 0.2s, gap 0.2s;
}

.footer-nav-links li a i {
  font-size: 0.65rem;
  color: var(--color-brand-red);
  transition: transform 0.2s;
}

.footer-nav-links li a:hover {
  color: var(--color-text-white);
  gap: 12px;
}

.footer-nav-links li a:hover i {
  transform: translateX(2px);
}

.footer-social-icons {
  display: flex;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.social-icon:hover {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
  color: var(--color-text-white);
}

.footer-yt-banner {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border-light);
  border-radius: var(--radius-sm);
  padding: 12px var(--space-md);
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.footer-yt-banner:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: var(--color-border-white);
}

.yt-icon-wrap {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: #ff0000;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-white);
  font-size: var(--text-xl);
  flex-shrink: 0;
}

.yt-text-top {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  font-weight: 500;
  margin-bottom: 2px;
}

.yt-text-bottom {
  font-size: var(--text-sm);
  color: var(--color-text-white);
  font-weight: 700;
}

.footer-map-wrap {
  border: 1px solid var(--color-border-light);
  overflow: hidden;
  border-radius: var(--radius-sm);
  line-height: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  padding: 20px var(--section-pad-x);
  flex-wrap: wrap;
  background: var(--color-surface-dark);
}

.footer-copy {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-copy a {
  color: var(--color-brand-red);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.footer-copy a:hover {
  color: var(--color-brand-red-dark);
}

.footer-bottom-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: var(--space-lg);
}

.footer-bottom-links a {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-bottom-links a:hover {
  color: var(--color-text-white);
}

/* ═══════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
   ═══════════════════════════════════════════ */

/* ── ≤ 1100px ── */
@media (max-width: 1100px) {
  .who-cards-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
  }

  .sponsors-row--2 {
    padding: 0;
  }
}

/* ── ≤ 991px ── */
@media (max-width: 991px) {
  :root {
    --section-pad-x: 40px;
  }

  .nav-links,
  .btn-book {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-content {
    padding: 140px 30px 60px;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-item {
    padding: var(--space-xl);
  }

  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--color-text-primary);
  }

  .stat-item:nth-child(even) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid var(--color-text-primary);
  }

  .stat-item:nth-child(1) {
    padding-left: var(--space-xl);
  }

  .scatter-wrap {
    min-height: 520px;
  }

  .scatter-img--tl {
    width: 160px;
    height: 200px;
    top: 32px;
    left: 24px;
  }

  .scatter-img--tr {
    width: 150px;
    height: 108px;
    top: 36px;
    right: 24px;
  }

  .scatter-img--bl {
    width: 100px;
    height: 130px;
    bottom: 44px;
    left: 60px;
  }

  .scatter-img--br {
    width: 200px;
    height: 150px;
    bottom: 36px;
    right: 24px;
  }
}

/* ── ≤ 768px ── */
@media (max-width: 768px) {

  .hero {
    min-height: fit-content;
  }

  .who-cards-row {
    grid-template-columns: 1fr;
  }

  .sponsors-section {
    padding: var(--space-3xl) var(--section-pad-x-sm) 70px;
  }

  .sponsors-row {
    flex-direction: column;
  }

  .sponsors-row--2 {
    padding: 0;
  }

  .testi-header {
    flex-direction: column;
    padding: 0 var(--section-pad-x-sm);
    gap: var(--space-md);
  }

  .testi-subtext {
    max-width: 100%;
  }

  .testi-card {
    width: 270px;
    padding: 22px 20px 18px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    padding: var(--space-xl) var(--section-pad-x-sm) var(--space-xl);
    gap: var(--space-xl);
  }

  .footer-bottom {
    padding: var(--space-md) var(--section-pad-x-sm);
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    gap: var(--space-md);
  }
}

/* ── ≤ 576px ── */
@media (max-width: 576px) {
  :root {
    --section-gap: 8px;
    --section-radius: var(--section-radius-sm);
    --section-pad-x: var(--section-pad-x-sm);
  }



  .hero-content {
    padding: 130px 20px 50px;
  }

  .about-section {
    padding: var(--section-pad-y-sm) var(--section-pad-x-sm);
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .stat-item {
    padding: 0 0 var(--space-xl) 0;
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }

  .stat-item:last-child {
    border-bottom: none;
    padding: 0;
  }

  .stat-item:first-child {
    padding-left: 0;
  }

  .who-section {
    padding: var(--section-pad-y-sm) var(--section-pad-x-sm);
  }

  .sponsors-section {
    padding: var(--section-pad-y-sm) var(--section-pad-x-sm) 70px;
  }

  .testi-section {
    padding: var(--section-pad-y-sm) 0;
  }

  .testi-header {
    padding: 0 var(--section-pad-x-sm);
  }

  .sponsor-card {
    flex-direction: column;
  }

  .sponsor-name {
    white-space: normal !important;
  }

  .scatter-wrap {
    min-height: 240px;
  }

  .scatter-heading {
    font-size: 27px;
    letter-spacing: -1px;
  }

  .scatter-img {
    display: none;
  }
}

/* ── ≤ 400px (extra small) ── */
@media (max-width: 400px) {
  .hero-btns {
    flex-direction: column;
    align-items: flex-start;
  }

  .btn-primary-hero,
  .btn-outline-hero {
    width: 100%;
    text-align: center;
  }
}



/* About us Page */

/* ── PAGE HERO / BREADCRUMB ── */
.page-hero {
  position: relative;
  margin: var(--section-gap);
  border-radius: var(--section-radius);
  overflow: hidden;
  height: 450px;
  display: flex;
  align-items: flex-end;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background: url("/assets/images/img2.jpg") center / cover no-repeat;
  z-index: 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(0, 0, 0, 0.78) 0%,
      rgba(0, 0, 0, 0.5) 40%,
      rgba(0, 0, 0, 0.18) 70%,
      rgba(0, 0, 0, 0.08) 100%);
  z-index: 1;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 36px 48px;
}

.page-hero-title {
  font-family: var(--font-primary);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.15;
  margin-bottom: 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
  text-transform: capitalize;
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb-nav .breadcrumb-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-secondary);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--color-text-white-muted);
  text-decoration: none;
  text-transform: capitalize;

  transition: color 0.2s;
}

.breadcrumb-nav .breadcrumb-item:hover {
  color: var(--color-text-white);
}

.breadcrumb-nav .breadcrumb-item.active {
  color: var(--color-brand-red);
  font-weight: 600;
  cursor: default;
}

.breadcrumb-sep {
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.75rem;
}

/* ── ABOUT SECTION ── */
.about {
  background: var(--color-bg-section);
  margin: 0 var(--section-gap) var(--section-gap);
  border-radius: var(--section-radius);
  padding: var(--space-4xl) var(--space-3xl);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.section-title {
  font-size: var(--heading-xl);
  color: var(--color-text-primary);
  line-height: 1.18;

  max-width: 820px;
}

/* ── Visual / Image Column ── */
.about-visual {
  position: relative;
}

.about-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #1a1a1a;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.about-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/img3.jpg") center / cover no-repeat;
  opacity: 0.85;
}

.about-frame-deco {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-brand-red);
  border-radius: 20px;
  opacity: 0.25;
  z-index: 0;
}

.about-frame-deco2 {
  position: absolute;
  bottom: -18px;
  left: -18px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-brand-red);
  border-radius: 20px;
  opacity: 0.12;
  z-index: 0;
}

/* ── About checklist ── */
.about-checks {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.about-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.about-check i {
  color: var(--color-brand-red);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  background: rgba(214, 90, 80, 0.1);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── TEAM / WHO SLIDER ── */
.team-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 52px;
  gap: 40px;
}

.team-title {
  font-size: var(--heading-xl);
  color: #ffffff;
  line-height: 1.1;
}

.team-sub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
  max-width: 320px;
  padding-top: 10px;
  flex-shrink: 0;
}

/* ── Infinite scroll track ── */
.team-track-wrap {
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 5%,
      black 95%,
      transparent 100%);
}

.team-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: slideTeam 35s linear infinite;
  padding: 100px 0;
}

.team-track-wrap:hover .team-track {
  animation-play-state: paused;
}

@keyframes slideTeam {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── Team card ── */
.team-card {
  width: 280px;
  flex-shrink: 0;
  border-radius: 16px;
  background: #161616;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.team-card-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;

  transition:
    filter 0.4s ease,
    transform 0.4s ease;
}

.team-card:hover .team-card-img {
  transform: scale(1.05);
}

.team-card-info {
  padding: 16px 18px 18px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.team-card-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.team-card-role {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
  font-weight: 400;
}

/* ── CLIENTS SECTION ── */
.clients-section {
  background: var(--color-bg-section);
  margin: 0 var(--section-gap) var(--section-gap);
  border-radius: var(--section-radius);
  padding: var(--space-4xl) 60px;
  overflow: hidden;
}

.clients-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.clients-left {
  min-width: 260px;
  max-width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding-top: 8px;
}

.clients-subtext {
  font-size: var(--font-size-sm);
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.7;
}

.btn-book-meeting {
  display: inline-block;
  background: transparent;
  color: var(--color-text-primary);
  font-size: var(--font-size-sm);
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--color-text-primary);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
  font-family: var(--font-primary);
  align-self: flex-start;
}

.btn-book-meeting:hover {
  background: var(--color-brand-red);
  color: var(--color-text-white);
  border-color: var(--color-brand-red);
}

.clients-right {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 520px;
}

.clients-right::before,
.clients-right::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  pointer-events: none;
}

.clients-right::before {
  top: 0;
  height: 70px;
  background: linear-gradient(to bottom, #fff 0%, transparent 100%);
}

.clients-right::after {
  bottom: 0;
  height: 70px;
  background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.columns-wrap {
  display: flex;
  gap: 14px;
  height: 100%;
}

.logo-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  flex-direction: column;
  gap: 14px;
  will-change: transform;
}

.logo-col:nth-child(1) .logo-track {
  animation: scrollUp 20s linear infinite;
}

.logo-col:nth-child(2) .logo-track {
  animation: scrollDown 25s linear infinite;
}

.logo-col:nth-child(3) .logo-track {
  animation: scrollUp 22s linear infinite;
}

.logo-col:hover .logo-track {
  animation-play-state: paused;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(-50%);
  }
}

@keyframes scrollDown {
  0% {
    transform: translateY(-50%);
  }

  100% {
    transform: translateY(0);
  }
}

.logo-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  flex-shrink: 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.logo-card:hover {
  border-color: var(--color-brand-red);
  box-shadow: 0 4px 18px rgba(214, 90, 80, 0.1);
}

.logo-card img {
  width: 100%;
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;

  transition:
    filter 0.2s,
    opacity 0.2s;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .page-hero {
    height: 280px;
    margin: 8px;
    border-radius: var(--section-radius-sm);
  }

  .page-hero-content {
    padding: 28px;
  }

  .page-hero-title {
    font-size: clamp(1.4rem, 5vw, 1.9rem);
  }
}

@media (max-width: 576px) {
  .page-hero {
    margin: 8px;
  }
  
  .navbar-wrapper{
      padding: 25px 30px 10px;
  }

  .page-hero-content {
    padding: 20px;
  }
}

@media (max-width: 1024px) {
  .about {
    padding: var(--space-3xl) var(--space-2xl);
  }

  .about-grid {
    gap: 40px;
  }
}

@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .about-frame {
    aspect-ratio: 16 / 9;
  }

  .about {
    padding: 60px 40px;
  }
}

@media (max-width: 576px) {
  .about {
    padding: 40px 0;
    margin: 0 8px 8px;
    border-radius: var(--section-radius-sm);
  }

  .about-frame {
    aspect-ratio: 4 / 3;
  }

  .about-frame-deco,
  .about-frame-deco2 {
    display: none;
  }

  .about-checks {
    gap: 8px;
    margin-top: 20px;
  }

  .about-check {
    font-size: 0.85rem;
  }
}

@media (max-width: 1024px) {
  .team-header {
    padding: 0 40px;
  }
}

@media (max-width: 768px) {
  .team-header {
    flex-direction: column;
    padding: 0;
    gap: 12px;
    margin-bottom: 0;
  }

  .team-sub {
    max-width: 100%;
    font-size: 0.88rem;
    padding-top: 0;
  }

  .team-card {
    width: 250px;
  }

  .team-card-img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .team-card-img {
    height: 210px;
  }

  .team-card-name {
    font-size: 0.88rem;
  }

  .team-card-role {
    font-size: 0.72rem;
  }

  .team-card-info {
    padding: 12px 14px 14px;
  }

  .team-track {
    gap: 12px;
    padding: 20px 0;
  }
}

@media (max-width: 1024px) {
  .clients-section {
    padding: var(--space-4xl) 40px;
  }

  .clients-inner {
    gap: 40px;
  }

  .clients-left {
    min-width: 200px;
    max-width: 240px;
  }
}

@media (max-width: 900px) {
  .clients-section {
    padding: 60px 40px;
  }

  .clients-inner {
    flex-direction: column;
    gap: 36px;
  }

  .clients-left {
    max-width: 100%;
    min-width: unset;
  }

  .clients-right {
    height: 380px;
    width: 100%;
  }

  .logo-card {
    min-height: 95px;
  }
}

@media (max-width: 576px) {
  .clients-section {
    padding: 40px 20px;
    margin: 0 8px 8px;
    border-radius: var(--section-radius-sm);
  }

  .clients-right {
    height: 280px;
  }

  .logo-card {
    min-height: 80px;
    padding: 14px 10px;
  }

  .logo-card img {
    max-width: 100px;
    max-height: 48px;
  }

  .columns-wrap,
  .logo-col,
  .logo-track {
    gap: 8px;
  }

  .clients-right::before,
  .clients-right::after {
    height: 50px;
  }
}

@media (max-width: 768px) {
  .clients-section {
    padding: var(--space-3xl) 20px;
  }

  .clients-inner {
    flex-direction: column;
    gap: 32px;
  }

  .clients-left {
    min-width: unset;
    max-width: 100%;
  }

  .clients-right {
    height: 140px;
    width: 100%;
  }

  /* Hide col 2 and 3, keep only 1 row */
  .logo-col:nth-child(2),
  .logo-col:nth-child(3) {
    display: none;
  }

  /* Switch from vertical scroll to horizontal slide */
  .columns-wrap {
    height: 100%;
  }

  .logo-col {
    flex-direction: row;
    overflow: hidden;
    height: 100%;
  }

  .logo-track {
    flex-direction: row;
    gap: 14px;
    animation: scrollLeft 18s linear infinite !important;
  }

  .logo-col:hover .logo-track {
    animation-play-state: paused;
  }

  .logo-card {
    min-width: 140px;
    min-height: 90px;
    flex-shrink: 0;
  }

  @keyframes scrollLeft {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }
}


/* sevice page */

/* ── SHARED INNER SECTION WRAPPER ────────────────────────── */
.inner-section {
  margin: 0 var(--section-gap) var(--section-gap);
  border-radius: var(--section-radius);
  padding: var(--space-4xl) var(--space-3xl);
}

/* ── INTRO / ABOUT GRID ─────────────────────────────────── */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-visual {
  position: relative;
}

.intro-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 20px;
  background: #1a1a1a;
  overflow: hidden;
}

.intro-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/assets/images/gallery/bollywood/bollywood-10.jpg") center / cover no-repeat;
  opacity: 0.88;
}

.intro-frame-deco {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 3px solid var(--color-brand-red);
  border-radius: 20px;
  z-index: 0;
}

.intro-frame-deco--tr {
  top: -18px;
  right: -18px;
  opacity: 0.25;
}

.intro-frame-deco--bl {
  bottom: -18px;
  left: -18px;
  opacity: 0.12;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-secondary);
  font-size: 0.88rem;
  color: var(--color-text-primary);
  line-height: 1.5;
}

.check-item i {
  color: var(--color-brand-red);
  font-size: 0.75rem;
  margin-top: 3px;
  flex-shrink: 0;
  background: rgba(214, 90, 80, 0.1);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── EVENTS GRID ────────────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.event-card {
  background: var(--color-nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--color-border-white);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.25s;
}

.event-card:hover {
  border-color: var(--color-brand-red);
  box-shadow: 0 4px 20px rgba(214, 90, 80, 0.1);
  transform: translateY(-4px);
}

.event-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(214, 90, 80, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-brand-red);
  font-size: 1.1rem;
  margin-top: 2px;
}

.event-title {
  font-family: var(--font-primary);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-section-bg-light);
  margin-bottom: 5px;
  line-height: 1.3;
}

.event-desc {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-section-bg-light);
  line-height: 1.6;
  margin: 0;
}

/* ── SERVICES LIST SECTION ──────────────────────────────── */
.services-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

.services-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-primary);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-white);
  background: var(--color-surface-dark);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-pill);
  padding: 9px 18px;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
  width: 285px;
}

.service-tag:hover,
.service-tag--active {
  background: var(--color-brand-red);
  border-color: var(--color-brand-red);
}

.service-tag i {
  font-size: 0.75rem;
  color: var(--color-brand-red);
}

.service-tag:hover i,
.service-tag--active i {
  color: #fff;
}

/* ── CONTACT CTA STRIP ──────────────────────────────────── */
.cta-strip {
  background: var(--color-surface-dark);
  margin: 0 var(--section-gap) var(--section-gap);
  border-radius: var(--section-radius);
  padding: var(--space-3xl) var(--space-3xl);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.cta-strip-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta-strip-heading {
  font-family: var(--font-primary);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--color-text-white);
  line-height: 1.2;
}

.cta-strip-heading span {
  color: var(--color-brand-red);
}

.cta-strip-sub {
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--color-text-white-muted);
  line-height: 1.65;
  max-width: 480px;
}

.cta-strip-contacts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.cta-contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-secondary);
  font-size: 0.9rem;
  color: var(--color-text-white-muted);
  text-decoration: none;
  transition: color 0.2s;
}

.cta-contact-item:hover {
  color: var(--color-text-white);
}

.cta-contact-item i {
  color: var(--color-brand-red);
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .inner-section {
    padding: var(--space-3xl) var(--space-2xl);
  }
}

@media (max-width: 900px) {
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .intro-visual {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }

  .intro-frame {
    aspect-ratio: 16 / 9;
  }

  .inner-section {
    padding: 60px 40px;
  }

  .services-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 768px) {
  .events-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .inner-section {
    padding: 40px 16px;
    margin: 0 8px 8px;
    border-radius: var(--section-radius-sm);
  }

  .cta-strip {
    padding: var(--space-xl) var(--space-md);
    margin: 0 8px 8px;
    border-radius: var(--section-radius-sm);
  }

  .intro-frame {
    aspect-ratio: 4 / 3;
  }

  .intro-frame-deco {
    display: none;
  }

  .events-grid {
    grid-template-columns: 1fr;
  }
}