/* ============================================
   ARENA PRO FITNESS — Landing Page Styles
   ============================================ */

:root {
  --black: #050508;
  --black-soft: #0a0a0f;
  --black-card: #0f0f16;
  --black-elevated: #14141e;
  --blue: #00a8ff;
  --blue-bright: #00d4ff;
  --blue-neon: #00e5ff;
  --blue-dark: #0066cc;
  --silver: #b8c0cc;
  --silver-light: #e2e8f0;
  --white: #ffffff;
  --gray: #6b7280;
  --gray-dark: #374151;

  --font-display: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;

  --glow-blue: 0 0 20px rgba(0, 168, 255, 0.4);
  --glow-blue-strong: 0 0 40px rgba(0, 168, 255, 0.5);
  --border-blue: 1px solid rgba(0, 168, 255, 0.3);
  --glass: rgba(10, 10, 15, 0.75);

  --header-height: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--silver);
  background: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-blue {
  color: var(--blue-bright);
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  box-shadow: var(--glow-blue);
}

.btn--primary:hover {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  box-shadow: var(--glow-blue-strong);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(0, 168, 255, 0.5);
}

.btn--outline:hover {
  border-color: var(--blue-bright);
  background: rgba(0, 168, 255, 0.08);
  box-shadow: var(--glow-blue);
}

.btn--lg {
  padding: 16px 36px;
  font-size: 0.85rem;
}

.btn--xl {
  padding: 20px 48px;
  font-size: 0.9rem;
}

/* ---- SECTION UTILITIES ---- */
.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  font-weight: 800;
  font-style: italic;
  text-transform: uppercase;
  color: var(--silver-light);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gray);
  margin-top: 16px;
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ---- REVEAL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }

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

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: var(--transition);
}

.header--scrolled {
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: var(--border-blue);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 60px;
  width: auto;
  transition: var(--transition);
}

.header__logo:hover img {
  filter: drop-shadow(0 0 8px rgba(0, 168, 255, 0.5));
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__menu {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--silver);
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--white);
}

.nav-link:hover::after {
  width: 100%;
}

.header__cta {
  padding: 10px 20px;
  font-size: 0.72rem;
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.header__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
  opacity: 0;
}

.header__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    135deg,
    rgba(5, 5, 8, 0.92) 0%,
    rgba(5, 5, 8, 0.7) 50%,
    rgba(5, 5, 8, 0.85) 100%
  );
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}

.hero__glow--1 {
  width: 400px;
  height: 400px;
  background: rgba(0, 168, 255, 0.12);
  top: 10%;
  right: -10%;
}

.hero__glow--2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 100, 200, 0.1);
  bottom: 20%;
  left: -5%;
}

.hero__lines {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 49.5%, rgba(0, 168, 255, 0.03) 50%, transparent 50.5%),
    linear-gradient(0deg, transparent 49.5%, rgba(0, 168, 255, 0.03) 50%, transparent 50.5%);
  background-size: 80px 80px;
}

.hero__content {
  position: relative;
  z-index: 3;
  padding: calc(var(--header-height) + 60px) 24px 80px;
  max-width: 800px;
}

.hero__tag {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--silver);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 0 0 40px rgba(0, 168, 255, 0.2);
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--silver);
  max-width: 560px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 40px;
}

.hero__checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
}

.hero__checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--silver);
}

.hero__checks svg {
  width: 16px;
  height: 16px;
  color: var(--blue-bright);
  flex-shrink: 0;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 2px solid rgba(0, 168, 255, 0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
  transition: var(--transition);
}

.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--blue);
  border-radius: 2px;
  animation: scrollBounce 2s infinite;
}

.hero__scroll:hover {
  border-color: var(--blue-bright);
  box-shadow: var(--glow-blue);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.3; }
}

/* ============================================
   STORYTELLING
   ============================================ */
.storytelling {
  background: var(--black-soft);
}

.storytelling__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.storytelling__body p {
  margin-bottom: 16px;
  color: var(--silver);
  line-height: 1.8;
}

.storytelling__highlight {
  font-family: var(--font-display);
  font-weight: 700;
  font-style: italic;
  color: var(--blue-bright) !important;
  font-size: 1.1rem;
  margin-top: 8px;
}

.storytelling__frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.storytelling__frame img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: var(--transition);
}

.storytelling__frame:hover img {
  transform: scale(1.03);
}

.storytelling__accent {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--blue-bright), var(--blue));
  box-shadow: var(--glow-blue);
}

.storytelling__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: var(--border-blue);
  border-radius: var(--radius-lg);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   BENEFITS
   ============================================ */
.benefits {
  background: var(--black);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.benefit-card {
  background: var(--black-card);
  border: var(--border-blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: var(--transition);
}

.benefit-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 168, 255, 0.5);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), var(--glow-blue);
}

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

.benefit-card__icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 168, 255, 0.1);
  border-radius: 10px;
  margin-bottom: 20px;
  color: var(--blue-bright);
}

.benefit-card__icon svg {
  width: 24px;
  height: 24px;
}

.benefit-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 10px;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  padding: 48px 0;
  background: linear-gradient(90deg, var(--black-soft), var(--black-elevated), var(--black-soft));
  border-top: var(--border-blue);
  border-bottom: var(--border-blue);
}

.cta-band--glow {
  background: linear-gradient(135deg, rgba(0, 100, 200, 0.08), var(--black-soft), rgba(0, 168, 255, 0.05));
}

.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-band__inner p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--silver-light);
}

/* ============================================
   SCHEDULE
   ============================================ */
.schedule {
  background: var(--black-soft);
  position: relative;
  overflow: hidden;
}

.schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0, 168, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.schedule__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.schedule-card {
  background: var(--black-card);
  border: var(--border-blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.schedule-card:hover {
  border-color: rgba(0, 168, 255, 0.6);
  box-shadow: var(--glow-blue);
  transform: translateY(-4px);
}

.schedule-card__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.schedule-card__icon {
  width: 32px;
  height: 32px;
  color: var(--blue);
}

.schedule-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--silver-light);
}

.schedule-card__time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.schedule-card__time svg {
  width: 22px;
  height: 22px;
  color: var(--blue-bright);
}

.schedule-card__time span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.02em;
}

.schedule-card__badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--blue-bright);
  background: rgba(0, 168, 255, 0.1);
  border: 1px solid rgba(0, 168, 255, 0.3);
  border-radius: 20px;
  padding: 6px 14px;
}

.schedule-card__badge--alt {
  color: var(--silver);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.15);
}

.schedule__highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.schedule__highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--silver);
}

.schedule__highlight svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--black);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 16px;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery__item--large {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}

.gallery__item:nth-child(2) {
  grid-column: 3;
  grid-row: 1;
}

.gallery__item:nth-child(3) {
  grid-column: 4;
  grid-row: 1;
}

.gallery__item--wide {
  grid-column: 3 / 5;
  grid-row: 2;
}

.gallery__item:nth-child(5) {
  grid-column: 1;
  grid-row: 3;
}

.gallery__item:nth-child(6) {
  grid-column: 2 / 4;
  grid-row: 3;
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 5, 8, 0.85) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}

.gallery__overlay span {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-bright);
}

.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--radius);
  transition: var(--transition);
  pointer-events: none;
}

.gallery__item:hover img {
  transform: scale(1.08);
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

.gallery__item:hover::after {
  border-color: rgba(0, 168, 255, 0.4);
  box-shadow: inset 0 0 30px rgba(0, 168, 255, 0.1);
}

/* ============================================
   STRUCTURE
   ============================================ */
.structure {
  background: var(--black-soft);
}

.structure__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.structure__visual {
  position: relative;
}

.structure__image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-blue);
}

.structure__image-main img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.structure__image-secondary {
  position: absolute;
  bottom: -30px;
  right: -20px;
  width: 55%;
  border-radius: var(--radius);
  overflow: hidden;
  border: var(--border-blue);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.structure__image-secondary img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.structure__feature {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.structure__feature:last-child {
  border-bottom: none;
}

.structure__number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 900;
  color: rgba(0, 168, 255, 0.2);
  line-height: 1;
  flex-shrink: 0;
}

.structure__feature h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 6px;
}

.structure__feature p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ============================================
   IMPACT
   ============================================ */
.impact {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.impact__bg {
  position: absolute;
  inset: 0;
}

.impact__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.impact__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 8, 0.82);
}

.impact__glow {
  position: absolute;
  width: 600px;
  height: 300px;
  background: rgba(0, 168, 255, 0.08);
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.impact__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 24px;
}

.impact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
  text-shadow: 0 0 60px rgba(0, 168, 255, 0.3);
}

.impact__slogan {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--silver);
  margin-bottom: 36px;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--black);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--black-card);
  border: var(--border-blue);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(0, 168, 255, 0.5);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testimonial-card__stars svg {
  width: 16px;
  height: 16px;
  fill: var(--blue);
  opacity: 0.6;
}

.testimonial-card__text {
  font-size: 0.95rem;
  font-style: italic;
  color: var(--silver);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-card__name {
  display: block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
  background: var(--black-soft);
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0;
}

.cta-final__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

.cta-final__glow--1 {
  width: 500px;
  height: 500px;
  background: rgba(0, 168, 255, 0.1);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
}

.cta-final__glow--2 {
  width: 300px;
  height: 300px;
  background: rgba(0, 100, 200, 0.08);
  bottom: -100px;
  right: 10%;
}

.cta-final__lines {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(45deg, transparent 48%, rgba(0, 168, 255, 0.04) 50%, transparent 52%);
  background-size: 60px 60px;
  pointer-events: none;
}

.cta-final__content {
  position: relative;
  z-index: 2;
}

.cta-final__logo {
  display: block;
  height: 110px;
  width: auto;
  margin: 0 auto 24px;
  opacity: 0.95;
}

.cta-final__text {
  font-size: 1.1rem;
  color: var(--silver);
  margin: 16px 0 32px;
}

.cta-final__aux {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gray);
}

/* ============================================
   LOCATION
   ============================================ */
.location {
  background: var(--black);
}

.location__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.location__card {
  display: flex;
  gap: 16px;
  background: var(--black-card);
  border: var(--border-blue);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
}

.location__card svg {
  width: 28px;
  height: 28px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 4px;
}

.location__card h3 {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}

.location__card p {
  font-size: 1rem;
  color: var(--silver-light);
  line-height: 1.5;
}

.location__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: var(--border-blue);
  min-height: 360px;
}

.location__map iframe {
  width: 100%;
  height: 360px;
  border: none;
  display: block;
}

.location__map-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  height: 360px;
  background: var(--black-card);
  color: var(--gray);
  text-align: center;
  padding: 24px;
}

.location__map-placeholder svg {
  width: 48px;
  height: 48px;
  color: rgba(0, 168, 255, 0.3);
}

.location__map-placeholder span {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black-soft);
  border-top: var(--border-blue);
  padding-top: 60px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer__logo {
  height: 90px;
  width: auto;
  margin-bottom: 4px;
}

.footer__slogan {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--silver);
  margin-top: 12px;
}

.footer__nav h4,
.footer__social h4 {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}

.footer__nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav a {
  font-size: 0.9rem;
  color: var(--silver);
  transition: var(--transition);
}

.footer__nav a:hover {
  color: var(--blue-bright);
}

.footer__social-links {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}

.footer__social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: var(--border-blue);
  border-radius: 8px;
  color: var(--silver);
  transition: var(--transition);
}

.footer__social-links a svg {
  width: 20px;
  height: 20px;
}

.footer__social-links a:hover {
  border-color: var(--blue);
  color: var(--blue-bright);
  box-shadow: var(--glow-blue);
}

.footer__address {
  font-size: 0.85rem;
  color: var(--gray);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ============================================
   FLOATING CTA (MOBILE)
   ============================================ */
.float-cta {
  display: none;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 999;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-dark) 100%);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 50px;
  box-shadow: 0 8px 30px rgba(0, 168, 255, 0.4);
  transition: var(--transition);
}

.float-cta:hover {
  transform: translateX(-50%) translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 168, 255, 0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery__item--large,
  .gallery__item--wide,
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .gallery__item--large {
    grid-column: 1 / 3;
    grid-row: span 2;
  }

  .gallery__item--wide {
    grid-column: 1 / 3;
  }

  .gallery__item:nth-child(6) {
    grid-column: 1 / 3;
  }

  .structure__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .structure__image-secondary {
    right: 0;
    bottom: -20px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .header__nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 360px;
    height: 100vh;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    transition: right 0.4s ease;
    border-left: var(--border-blue);
  }

  .header__nav.open {
    right: 0;
  }

  .header__menu {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .nav-link {
    font-size: 0.9rem;
  }

  .header__toggle {
    display: flex;
  }

  .header__cta {
    width: 100%;
    max-width: 260px;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    text-align: center;
  }

  .hero__checks {
    flex-direction: column;
    gap: 10px;
  }

  .storytelling__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .storytelling__frame img {
    height: 320px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .schedule__grid {
    grid-template-columns: 1fr;
  }

  .schedule__highlights {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 240px;
  }

  .gallery__item--large,
  .gallery__item--wide,
  .gallery__item:nth-child(2),
  .gallery__item:nth-child(3),
  .gallery__item:nth-child(5),
  .gallery__item:nth-child(6) {
    grid-column: 1;
    grid-row: auto;
  }

  .structure__image-secondary {
    position: relative;
    width: 100%;
    right: 0;
    bottom: 0;
    margin-top: 16px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .location__grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__social-links {
    justify-content: center;
  }

  .cta-band__inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .float-cta {
    display: block;
  }

  body {
    padding-bottom: 80px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 1.8rem;
  }

  .schedule-card__time span {
    font-size: 1.3rem;
  }

  .btn--xl {
    padding: 16px 28px;
    font-size: 0.8rem;
  }
}
