/* ===== Brand Palette: Magenta · Orange · Gold on Dark ===== */
:root {
  --magenta: #e91e63;
  --pink: #ff4081;
  --orange: #ff5722;
  --gold: #f5a623;
  --amber: #ff9800;
  --dark: #0a0a0f;
  --dark-2: #12121a;
  --dark-card: rgba(255, 255, 255, 0.04);
  --dark-border: rgba(255, 255, 255, 0.08);
  --white: #ffffff;
  --gray: #9ca3af;
  --gray-light: rgba(255, 255, 255, 0.12);
  --gradient-main: linear-gradient(135deg, var(--magenta) 0%, var(--orange) 50%, var(--amber) 100%);
  --gradient-text: linear-gradient(90deg, var(--gold), var(--amber), var(--pink));
  --gradient-glow: linear-gradient(135deg, rgba(233, 30, 99, 0.4), rgba(255, 152, 0, 0.4));
  --shadow-neon: 0 0 40px rgba(233, 30, 99, 0.35);
  --shadow-gold: 0 0 30px rgba(245, 166, 35, 0.3);
  --radius: 16px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Outfit', 'Poppins', sans-serif;
  --font-script: 'Dancing Script', cursive;
}

/* ===== Reset & Base ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  color: var(--white);
  background: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 5rem 0;
  position: relative;
}

.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.accent-script {
  font-family: var(--font-script);
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.85rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.btn__icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.btn--primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-neon);
}

.btn--primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 40px rgba(233, 30, 99, 0.5), 0 0 20px rgba(255, 152, 0, 0.3);
  animation: none;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.btn--nav {
  background: var(--gradient-main);
  color: var(--white);
  padding: 0.6rem 1.35rem;
  font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(233, 30, 99, 0.4);
}

.btn--nav:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(255, 152, 0, 0.45);
  animation: none;
}

@keyframes bookNowPulse {
  0%, 100% {
    box-shadow: 0 4px 24px rgba(233, 30, 99, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 6px 32px rgba(255, 152, 0, 0.55), 0 0 20px rgba(233, 30, 99, 0.3);
    transform: scale(1.03);
  }
}

.btn--nav,
.hero__cta .btn--primary,
.contact__cta .btn--primary {
  animation: bookNowPulse 2.5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .btn--nav,
  .hero__cta .btn--primary,
  .contact__cta .btn--primary {
    animation: none;
  }
}

.btn--large {
  padding: 1.1rem 2.75rem;
  font-size: 1.05rem;
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.75);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--dark-border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  background: rgba(10, 10, 15, 0.92);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
}

.nav__logo-text {
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--white);
  letter-spacing: 0.02em;
  text-shadow:
    0 0 12px rgba(233, 30, 99, 0.7),
    0 0 28px rgba(255, 64, 129, 0.45),
    0 0 48px rgba(233, 30, 99, 0.25);
  transition: text-shadow var(--transition);
}

.nav__logo:hover .nav__logo-text {
  text-shadow:
    0 0 16px rgba(233, 30, 99, 0.9),
    0 0 36px rgba(255, 64, 129, 0.6),
    0 0 60px rgba(233, 30, 99, 0.35);
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav__link {
  font-weight: 500;
  font-size: 0.925rem;
  color: var(--gray);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: width var(--transition);
  border-radius: 2px;
}

.nav__link:hover {
  color: var(--white);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav__toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav__toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav__toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--dark);
  padding: 110px 0 90px;
  overflow: hidden;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(233, 30, 99, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(255, 152, 0, 0.2) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(245, 166, 35, 0.08) 0%, transparent 50%);
  animation: meshShift 8s ease-in-out infinite alternate;
}

@keyframes meshShift {
  0% { opacity: 0.9; transform: scale(1); }
  100% { opacity: 1; transform: scale(1.05); }
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
}

.hero__shape--1 {
  width: 350px;
  height: 350px;
  top: 10%;
  right: -5%;
  background: rgba(233, 30, 99, 0.2);
  animation: drift 12s ease-in-out infinite;
}

.hero__shape--2 {
  width: 280px;
  height: 280px;
  bottom: 15%;
  left: -5%;
  background: rgba(255, 152, 0, 0.18);
  animation: drift 10s ease-in-out infinite reverse;
}

.hero__shape--3 {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(245, 166, 35, 0.1);
  animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -30px); }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.hero__bars {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 5px;
  height: 52px;
  width: 100%;
  max-width: 320px;
  margin: 0.5rem auto 1.25rem;
  padding: 0 0.5rem;
}

.hero__bars span {
  display: block;
  flex: 1;
  max-width: 8px;
  min-width: 5px;
  background: var(--gradient-main);
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(233, 30, 99, 0.5);
  animation: barBounce 1.2s ease-in-out infinite;
}

.hero__bars span:nth-child(1)  { height: 22px; animation-delay: 0s; }
.hero__bars span:nth-child(2)  { height: 38px; animation-delay: 0.08s; }
.hero__bars span:nth-child(3)  { height: 18px; animation-delay: 0.16s; }
.hero__bars span:nth-child(4)  { height: 48px; animation-delay: 0.24s; }
.hero__bars span:nth-child(5)  { height: 30px; animation-delay: 0.32s; }
.hero__bars span:nth-child(6)  { height: 42px; animation-delay: 0.4s; }
.hero__bars span:nth-child(7)  { height: 20px; animation-delay: 0.48s; }
.hero__bars span:nth-child(8)  { height: 50px; animation-delay: 0.56s; }
.hero__bars span:nth-child(9)  { height: 28px; animation-delay: 0.64s; }
.hero__bars span:nth-child(10) { height: 44px; animation-delay: 0.72s; }
.hero__bars span:nth-child(11) { height: 24px; animation-delay: 0.8s; }
.hero__bars span:nth-child(12) { height: 36px; animation-delay: 0.88s; }
.hero__bars span:nth-child(13) { height: 32px; animation-delay: 0.96s; }
.hero__bars span:nth-child(14) { height: 46px; animation-delay: 1.04s; }
.hero__bars span:nth-child(15) { height: 26px; animation-delay: 1.12s; }

@keyframes barBounce {
  0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
  50% { transform: scaleY(1); opacity: 1; }
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1.25rem;
  background: rgba(245, 166, 35, 0.12);
  border: 1px solid rgba(245, 166, 35, 0.35);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(8px);
  animation: fadeDown 0.8s ease;
  white-space: nowrap;
}

@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-15px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__logo-wrap {
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.hero__logo-glow {
  position: absolute;
  inset: -20px;
  background: var(--gradient-glow);
  border-radius: 50%;
  filter: blur(30px);
  animation: logoGlow 3s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% { opacity: 0.5; transform: scale(0.95); }
  100% { opacity: 0.9; transform: scale(1.05); }
}

.hero__logo-circle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 210px;
  height: 210px;
  background: var(--white);
  border-radius: 50%;
  padding: 1.5rem;
  animation: float 4s ease-in-out infinite;
  box-shadow:
    0 0 0 4px rgba(245, 166, 35, 0.3),
    0 0 60px rgba(233, 30, 99, 0.25),
    0 20px 60px rgba(0, 0, 0, 0.4);
}

.hero__logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

.hero__title {
  font-size: clamp(2.25rem, 6vw, 3.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.15rem);
  color: var(--gray);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero__waveform {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 70px;
  z-index: 1;
}

.hero__waveform svg {
  width: 100%;
  height: 100%;
}

.wave {
  fill: var(--dark-2);
}

.wave--2 {
  opacity: 0.7;
  animation: waveMove 5s ease-in-out infinite alternate;
}

@keyframes waveMove {
  0% { transform: translateX(0); }
  100% { transform: translateX(-30px); }
}

/* ===== Section Headers ===== */
.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.85rem;
}

.section__title {
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.85rem;
  letter-spacing: -0.02em;
}

.section__desc {
  color: var(--gray);
  max-width: 560px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== Services ===== */
.services {
  background: var(--dark-2);
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233, 30, 99, 0.4), rgba(255, 152, 0, 0.4), transparent);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(233, 30, 99, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(233, 30, 99, 0.1);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 18px;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(233, 30, 99, 0.35);
  transform: rotate(-3deg);
  transition: transform var(--transition);
}

.service-card:hover .service-card__icon {
  transform: rotate(0deg) scale(1.08);
}

.service-card__icon svg {
  width: 28px;
  height: 28px;
}

.service-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.service-card__desc {
  font-size: 0.875rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ===== About ===== */
.about {
  background: var(--dark);
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.about__text {
  color: var(--gray);
  margin-bottom: 1.25rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

.about__highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(233, 30, 99, 0.1);
  border: 1px solid rgba(233, 30, 99, 0.25);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-weight: 600;
  color: var(--pink);
  font-size: 0.95rem;
}

.about__highlight svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
}

.about__map-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--amber);
  transition: color var(--transition), gap var(--transition);
}

.about__map-link svg {
  width: 18px;
  height: 18px;
}

.about__map-link:hover {
  color: var(--gold);
  gap: 0.65rem;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.stat-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-main);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.stat-card__number {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  font-weight: 800;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.35rem;
  line-height: 1.2;
}

.stat-card__label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

/* ===== Contact ===== */
.contact {
  background: var(--dark-2);
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 152, 0, 0.4), rgba(233, 30, 99, 0.4), transparent);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

a.contact-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 166, 35, 0.35);
  box-shadow: var(--shadow-gold);
}

.contact-card__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-main);
  border-radius: 16px;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(233, 30, 99, 0.3);
}

.contact-card__icon svg {
  width: 24px;
  height: 24px;
}

.contact-card__title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
  margin-bottom: 0.4rem;
}

.contact-card__value {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.contact__cta {
  text-align: center;
}

.contact__cta .btn--primary {
  background: var(--gradient-main);
  color: var(--white);
}

/* ===== Social ===== */
.social {
  background: var(--dark);
  padding-bottom: 3rem;
}

.social__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.social__link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1.6rem;
  background: var(--dark-card);
  border: 1px solid var(--dark-border);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.925rem;
  color: var(--gray);
  transition: all var(--transition);
}

.social__link svg {
  width: 22px;
  height: 22px;
  transition: transform var(--transition);
}

.social__link:hover {
  background: var(--gradient-main);
  border-color: transparent;
  color: var(--white);
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

.social__link:hover svg {
  transform: scale(1.15);
}

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  padding: 2.5rem 0;
  border-top: 1px solid var(--dark-border);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: var(--gradient-main);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 50%;
  border: 2px solid rgba(245, 166, 35, 0.3);
  box-shadow: var(--shadow-gold);
}

.footer__copy {
  color: var(--gray);
  font-size: 0.875rem;
}

.footer__powered {
  color: var(--gray);
  font-size: 0.8rem;
}

.footer__powered a {
  color: var(--amber);
  font-weight: 600;
  transition: color var(--transition);
}

.footer__powered a:hover {
  color: var(--gold);
}

/* ===== Floating WhatsApp ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waPulse 2.5s infinite;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37, 211, 102, 0.6);
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37, 211, 102, 0.45); }
  50% { box-shadow: 0 4px 36px rgba(37, 211, 102, 0.75), 0 0 0 8px rgba(37, 211, 102, 0.1); }
}

/* ===== Scroll Reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Focus States ===== */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .contact__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about__inner {
    grid-template-columns: 1.2fr 1fr;
  }

  .hero__logo-circle {
    width: 250px;
    height: 250px;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 6rem 0;
  }

  .contact__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--dark-border);
    padding: 1.5rem;
    gap: 0;
    transform: translateY(-120%);
    opacity: 0;
    transition: transform var(--transition), opacity var(--transition);
    pointer-events: none;
  }

  .nav__menu.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav__menu li {
    width: 100%;
  }

  .nav__link {
    display: block;
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--dark-border);
  }

  .nav__menu .btn--nav {
    width: 100%;
    margin-top: 0.75rem;
    text-align: center;
  }

  .hero__cta {
    flex-direction: column;
    align-items: center;
  }

  .hero__cta .btn {
    width: 100%;
    max-width: 320px;
  }

  .about__stats {
    grid-template-columns: 1fr;
  }

  .hero__bars {
    height: 44px;
    max-width: 280px;
    margin: 0.75rem auto 1rem;
  }

  .hero__bars span {
    min-width: 4px;
    max-width: 7px;
  }

  .social__link span {
    display: none;
  }

  .social__link {
    width: 54px;
    height: 54px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}
