/* ========================================
   SKILAPLATA - Styles
   ======================================== */

/* --- Accessibility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --- Custom Properties --- */
:root {
  --bg-dark: #0C1E3D;
  --bg-darker: #081529;
  --bg-card: #0F2847;
  --accent: #0EA5E9;
  --accent-hover: #0284C7;
  --ice: #22D3EE;
  --cyan-light: #67E8F9;
  --silver: #CBD5E1;
  --snow: #F0F4F8;
  --white: #FFFFFF;
  --text-primary: #F0F4F8;
  --text-secondary: #CBD5E1;

  --gradient-brand: linear-gradient(135deg, #1A3A8A 0%, #0EA5E9 50%, #22D3EE 100%);

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

  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.3s ease;
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--bg-dark);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--ice);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--accent);
}

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Buttons --- */
/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2.25rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              color 0.3s ease;
}

/* Snowflake icon */
.btn .btn-icon {
  flex-shrink: 0;
  opacity: 0.3;
  transform: rotate(0deg) scale(0.85);
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn:hover .btn-icon {
  opacity: 1;
  transform: rotate(90deg) scale(1.1);
  filter: drop-shadow(0 0 4px rgba(34, 211, 238, 0.6));
}

/* Snow dust sweep */
.btn::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(34, 211, 238, 0.06) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(34, 211, 238, 0.06) 75%,
    transparent 100%
  );
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.btn:hover::after {
  left: 100%;
}

/* --- Primary: solid white, bold --- */
.btn-primary {
  background: var(--white);
  color: var(--bg-dark);
  box-shadow:
    0 2px 8px rgba(255, 255, 255, 0.1),
    0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: var(--white);
  color: var(--bg-darker);
  box-shadow:
    0 4px 12px rgba(255, 255, 255, 0.15),
    0 12px 36px rgba(34, 211, 238, 0.25),
    0 0 60px rgba(34, 211, 238, 0.1),
    inset 0 0 20px rgba(34, 211, 238, 0.06);
}

.btn-primary:active {
  transform: translateY(-1px) scale(0.98);
}

/* --- Outline: glass with gradient border --- */
.btn-outline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1.5px solid transparent;
  background-image:
    linear-gradient(rgba(255,255,255,0.06), rgba(255,255,255,0.06)),
    linear-gradient(135deg, rgba(255,255,255,0.4), rgba(34,211,238,0.3), rgba(255,255,255,0.1));
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.btn-primary::after {
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(14, 165, 233, 0.06) 30%,
    rgba(34, 211, 238, 0.1) 50%,
    rgba(14, 165, 233, 0.06) 70%,
    transparent 100%
  );
}

.btn-outline:hover {
  transform: translateY(-3px) scale(1.02);
  color: var(--white);
  background-image:
    linear-gradient(rgba(255,255,255,0.18), rgba(255,255,255,0.10)),
    linear-gradient(135deg, rgba(255,255,255,0.7), rgba(34,211,238,0.5), rgba(255,255,255,0.7));
  box-shadow:
    0 8px 32px rgba(255, 255, 255, 0.12),
    0 0 40px rgba(34, 211, 238, 0.1);
}

.btn-outline:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-full {
  width: 100%;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(11, 29, 58, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

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

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
}

.nav-logo-text strong {
  font-weight: 800;
}

.nav-logo-text-img {
  height: 36px;
  width: auto;
  transition: all var(--transition);
}

.navbar.scrolled .nav-logo-text-img {
  height: 30px;
}

.navbar.scrolled .nav-logo-img {
  height: 42px;
}

.nav-logo:hover {
  opacity: 0.85;
}

.nav-menu {
  display: flex;
  gap: 2rem;
}

.nav-link {
  color: var(--silver);
  font-weight: 500;
  font-size: 0.9375rem;
  position: relative;
}

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

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

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

.nav-cta {
  background: var(--white);
  color: var(--bg-dark);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--bg-darker);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 4px 15px rgba(255, 255, 255, 0.15),
    0 8px 30px rgba(34, 211, 238, 0.2);
}

.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);
  transition: all var(--transition);
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, #0C1E3D 0%, #1A3A8A 35%, #0EA5E9 70%, #22D3EE 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
}

.hero-logo {
  margin-bottom: -0.5rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero-logo-img {
  height: clamp(260px, 45vw, 480px);
  width: auto;
  display: block;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.hero-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 6rem);
  color: var(--white);
  letter-spacing: 4px;
  line-height: 1;
  margin-bottom: 0.15rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-title-accent {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2rem, 5.5vw, 3.5rem);
  letter-spacing: 6px;
  line-height: 1;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, var(--silver) 0%, var(--ice) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(0.9rem, 2vw, 1.2rem);
  color: var(--ice);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-desc {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto 2.5rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--silver);
  animation: bounce 2s infinite;
}

/* --- Sections --- */
.section {
  padding: 6rem 0;
}

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

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

.section-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--silver);
  margin-bottom: 3rem;
}

.text-center {
  text-align: center;
}

/* --- About --- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text p {
  color: var(--silver);
  margin-bottom: 1.25rem;
  font-size: 1.0625rem;
  line-height: 1.8;
}

.about-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.25rem;
  color: var(--ice);
}

.stat-label {
  font-size: 0.875rem;
  color: var(--silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image img {
  width: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(34, 211, 238, 0.1);
}

/* --- Activities --- */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.activity-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.08);
  transition: all var(--transition);
}

.activity-card:hover {
  transform: translateY(-6px);
  border-color: rgba(34, 211, 238, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(34, 211, 238, 0.1);
}

.activity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(14, 165, 233, 0.1);
  color: var(--ice);
  margin-bottom: 1.5rem;
}

.activity-card h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.activity-card p {
  color: var(--silver);
  font-size: 0.9375rem;
  line-height: 1.7;
}

/* --- Pricing --- */
.pricing-promo {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  border-radius: var(--radius);
  padding: 2rem;
}

.pricing-promo p {
  color: var(--silver);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 0.75rem;
}

.promo-title-line {
  font-size: 1.6rem !important;
  font-weight: 800;
  color: #fff !important;
  margin-bottom: 0.5rem !important;
}

.promo-highlight {
  font-size: 1.1rem;
}

.promo-valid {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1.25rem !important;
}

.promo-included {
  color: #fff !important;
  font-weight: 500;
}

.promo-note {
  font-weight: 500;
}

.pricing-info {
  text-align: center;
  max-width: 700px;
  margin: 2.5rem auto 0;
}

.pricing-info p {
  color: var(--silver);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0.5rem;
}

.pricing-cta {
  color: var(--accent) !important;
  font-weight: 700;
  font-size: 1.15rem !important;
  margin-top: 1rem !important;
}

#tarifas .container {
  max-width: 1200px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: start;
}

.pricing-card {
  background: var(--bg-dark);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  text-align: center;
  border: 1px solid rgba(192, 197, 206, 0.1);
  transition: all var(--transition);
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.pricing-popular {
  border-color: var(--ice);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(34, 211, 238, 0.15);
}

.pricing-popular:hover {
  transform: scale(1.05) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--white);
  padding: 0.25rem 1.25rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.pricing-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.pricing-price {
  margin-bottom: 2rem;
}

.price-currency {
  font-size: 1.5rem;
  color: var(--silver);
  vertical-align: top;
  line-height: 1;
}

.price-amount {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: var(--white);
  line-height: 1;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features li {
  padding: 0.65rem 0;
  color: var(--silver);
  font-size: 1.05rem;
  border-bottom: 1px solid rgba(192, 197, 206, 0.08);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-features li::before {
  content: '✓';
  color: var(--ice);
  font-weight: 700;
}

.pricing-features--table li {
  justify-content: space-between;
}

.pricing-features--table li strong {
  color: #fff;
  font-size: 1.05rem;
  white-space: nowrap;
}

.pricing-sublabel {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
  margin-top: 0.5rem;
  text-align: left;
}

.pricing-card-note {
  color: var(--silver);
  font-size: 0.85rem;
  text-align: center;
  margin-bottom: 1rem;
  opacity: 0.7;
}

/* --- Eventos / Cumple SKI --- */
.cumple-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-bottom: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.cumple-block {
  text-align: left;
}

.cumple-block h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--ice);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  letter-spacing: 0.5px;
}

.cumple-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cumple-block li {
  color: var(--silver);
  font-size: 0.95rem;
  padding-left: 1.25rem;
  position: relative;
}

.cumple-block li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--ice);
  font-weight: 700;
  font-size: 0.8rem;
}

.cumple-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.cumple-plan {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 1.5rem 1rem;
  text-align: center;
  border: 1px solid rgba(34, 211, 238, 0.08);
  transition: all var(--transition);
}

.cumple-plan:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 211, 238, 0.2);
}

.cumple-plan-featured {
  border-color: var(--ice);
  box-shadow: 0 0 30px rgba(34, 211, 238, 0.1);
}

.cumple-plan h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.cumple-price {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.cumple-plan span {
  display: block;
  color: var(--silver);
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
}

.cumple-plan small {
  display: block;
  color: rgba(203, 213, 225, 0.5);
  font-size: 0.75rem;
}

.cumple-cta {
  text-align: center;
}

.cumple-cta p {
  color: var(--silver);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
}

.eventos-otros {
  text-align: center;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(34, 211, 238, 0.1);
}

.eventos-otros p {
  color: var(--silver);
  font-size: 1.0625rem;
  margin-bottom: 1.25rem;
}

/* --- Instagram Gallery --- */
.ig-logo-link {
  display: inline-block;
  vertical-align: middle;
  margin: 0 0.15em;
  line-height: 0;
}

.ig-logo {
  display: inline-block;
  vertical-align: middle;
  animation: ig-pulse 2s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.ig-logo-link:hover .ig-logo {
  transform: scale(1.25);
  filter: drop-shadow(0 0 8px rgba(34, 211, 238, 0.6));
  animation: none;
}

@keyframes ig-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}

.ig-handle {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--ice);
}

.ig-handle:hover {
  color: var(--white);
}

.ig-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.ig-item {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.ig-item img,
.ig-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
}

.ig-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(12, 30, 61, 0.4);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.ig-item:hover img,
.ig-item:hover video {
  transform: scale(1.08);
}

.ig-item:hover::after {
  opacity: 1;
}

.ig-cta {
  text-align: center;
}

/* --- Location --- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.location-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-item svg {
  flex-shrink: 0;
  color: var(--ice);
  margin-top: 2px;
}

.location-item h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.location-item p {
  color: var(--silver);
}

.location-item a {
  color: var(--ice);
}

.location-map {
  border-radius: var(--radius);
  overflow: hidden;
}

/* --- Contact --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 500;
  color: var(--silver);
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.875rem 1rem;
  background: var(--bg-dark);
  border: 1px solid rgba(192, 197, 206, 0.15);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(192, 197, 206, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--silver);
  padding: 0.875rem 1rem;
  background: var(--bg-dark);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}

.contact-link:hover {
  color: var(--ice);
  background: rgba(59, 130, 246, 0.08);
}

.contact-link svg {
  flex-shrink: 0;
}

.contact-ig-banner {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.1), rgba(34, 211, 238, 0.05));
  border: 1px solid rgba(34, 211, 238, 0.15);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
}

.contact-ig-banner p {
  color: var(--silver);
  margin-bottom: 1rem;
}

/* --- Footer --- */
.footer {
  background: var(--bg-darker);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  transition: opacity var(--transition);
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.1;
}

.footer-logo-text strong {
  font-weight: 800;
}

.footer-logo-text-img {
  height: 36px;
  width: auto;
}

.footer-logo:hover {
  opacity: 0.85;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.footer-brand p {
  color: var(--silver);
  font-size: 0.9375rem;
  max-width: 300px;
}

.footer-nav h4,
.footer-social h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-nav li {
  margin-bottom: 0.5rem;
}

.footer-nav a {
  color: var(--silver);
  font-size: 0.9375rem;
}

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

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: var(--silver);
  transition: all var(--transition);
}

.social-links a:hover {
  color: var(--ice);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(192, 197, 206, 0.1);
  padding-top: 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--silver);
  font-size: 0.875rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 1024px) {
  .about-grid {
    gap: 3rem;
  }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg-darker);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

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

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

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

  .nav-cta {
    display: none;
  }

  .section {
    padding: 4rem 0;
  }

  .about-grid,
  .location-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .cumple-details {
    grid-template-columns: 1fr;
  }

  .cumple-pricing {
    grid-template-columns: 1fr;
  }

  .ig-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats {
    justify-content: center;
  }

  .pricing-popular {
    transform: scale(1);
  }

  .pricing-popular:hover {
    transform: translateY(-4px);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    text-align: center;
  }

  .footer-brand {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .footer-brand p {
    max-width: 100%;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-logo-img {
    height: 80px;
  }

  .footer-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.5rem;
  }

  .footer-social .social-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }

  .about-stats {
    flex-direction: column;
    gap: 1.5rem;
  }

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

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