/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --color-primary: #4C078C;
  --color-primary-light: #EBE4FF;
  --color-accent: #E0C2C2;
  --color-accent-hover: #D5B0B0;
  --color-dark: #1D1E20;
  --color-text: #36344D;
  --color-text-light: #727586;
  --color-bg-light: #F7F7F7;
  --color-bg-white: #FFFFFF;
  
  /* WhatsApp Green */
  --color-whatsapp: #25D366;
  --color-whatsapp-hover: #20BA5A;

  /* Typography */
  --font-title: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacings */
  --header-height: 130px;
  --header-height-shrink: 90px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* ==========================================================================
   BASE & RESET
   ========================================================================== */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-bg-white);
  overflow-x: hidden;
}

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

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

button, input, textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

ul {
  list-style: none;
}

/* ==========================================================================
   REUSABLE UTILITIES
   ========================================================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.grid {
  display: grid;
  gap: 32px;
}

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

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

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

.light {
  color: var(--color-bg-white) !important;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-title);
  cursor: pointer;
  transition: all var(--transition-normal);
  font-size: 15px;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid transparent;
}

.btn-primary:hover {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  box-shadow: 0 8px 24px rgba(76, 7, 140, 0.2);
  transform: translateY(-2px);
}

.btn-block {
  width: 100%;
}

/* Section Header */
.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-tagline {
  display: block;
  font-family: var(--font-title);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--color-accent-hover);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 8px;
}

.section-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 40px;
  color: var(--color-primary);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--color-text-light);
  font-size: 18px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--color-primary);
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.header.sticky {
  height: var(--header-height-shrink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background-color: rgba(76, 7, 140, 0.95);
  backdrop-filter: blur(8px);
}

.header-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-img {
  height: 85px;
  width: auto;
  transition: var(--transition-normal);
}

.header.sticky .logo-img {
  height: 60px;
}

/* Botón Agendar Cita en Header */
.btn-agendar {
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 15px;
  transition: all var(--transition-normal);
}

.btn-agendar:hover {
  background-color: var(--color-primary-light);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.btn-agendar-mobile {
  background-color: var(--color-accent);
  color: var(--color-primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-family: var(--font-title);
  font-size: 15px;
  display: inline-block;
  margin-top: 10px;
  width: auto;
  text-align: center;
}

.btn-agendar-mobile:hover {
  background-color: var(--color-primary-light);
}

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

.nav-link {
  color: var(--color-bg-white);
  font-weight: 500;
  font-size: 15px;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--color-accent);
}

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

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

.btn-contact {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-contact::after {
  display: none;
}

.btn-contact:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

/* Nav Hamburger Menu */
.nav-toggle {
  display: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger {
  display: block;
  width: 26px;
  height: 3px;
  background-color: var(--color-bg-white);
  position: relative;
  transition: background-color var(--transition-fast);
}

.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 3px;
  background-color: var(--color-bg-white);
  transition: all var(--transition-fast);
}

.hamburger::before { top: -8px; }
.hamburger::after { bottom: -8px; }

.nav-toggle.open .hamburger {
  background-color: transparent;
}

.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}

.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  bottom: 0;
}

/* ==========================================================================
   HERO / INICIO
   ========================================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  background-image: url('assets/hero_bg.png');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  color: var(--color-bg-white);
  padding-top: var(--header-height);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Fondo oscuro traslúcido para destacar colores naturales */
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-content {
  max-width: 680px;
}

.hero-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 44px;
  line-height: 1.15;
  margin-bottom: 24px;
  text-transform: none;
}

.hero-subtitle {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
  margin-bottom: 36px;
  color: #FFFFFF;
}

.hero-subtitle strong {
  font-weight: 700;
}

/* ==========================================================================
   NOSOTROS
   ========================================================================== */
.nosotros {
  background-color: var(--color-bg-light);
}

.nosotros-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.nosotros-text {
  font-size: 16px;
  color: var(--color-text);
  margin-bottom: 16px;
  text-align: justify;
}

.nosotros-image-container {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.nosotros-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.nosotros-image-container:hover .nosotros-img {
  transform: scale(1.03);
}

/* ==========================================================================
   VALORES
   ========================================================================== */
.valores {
  background-color: var(--color-bg-white);
}

.valor-card {
  background-color: var(--color-bg-light);
  padding: 40px 24px;
  border-radius: 16px;
  text-align: center;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.valor-card:hover {
  transform: translateY(-8px);
  background-color: var(--color-primary-light);
  box-shadow: 0 12px 30px rgba(76, 7, 140, 0.08);
}

.valor-icon-wrapper {
  width: 130px;
  height: 130px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal);
}

.valor-card:hover .valor-icon-wrapper {
  transform: scale(1.1);
}

.valor-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.valor-title {
  font-family: var(--font-title);
  font-size: 18px;
  color: var(--color-primary);
  font-weight: 700;
  margin-bottom: 12px;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.valor-desc {
  font-size: 14px;
  color: var(--color-text-light);
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.servicios {
  background-color: var(--color-bg-light);
}

.servicios-grid {
  row-gap: 40px;
}

.servicio-card {
  background-color: var(--color-bg-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
}

.servicio-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px rgba(76, 7, 140, 0.1);
}

.servicio-img-wrapper {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.servicio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.servicio-card:hover .servicio-img {
  transform: scale(1.05);
}

.servicio-content {
  padding: 36px;
  flex-grow: 1;
}

.servicio-title {
  font-family: var(--font-title);
  font-size: 24px;
  color: var(--color-primary);
  margin-bottom: 16px;
  font-weight: 700;
}

.servicio-desc {
  font-size: 15px;
  color: var(--color-text);
  text-align: justify;
}

/* ==========================================================================
   INSTAGRAM FEED
   ========================================================================== */
.instagram {
  background-color: var(--color-bg-white);
}

.instagram-feed-container {
  min-height: 280px;
  position: relative;
}

.instagram-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: var(--color-text-light);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--color-primary-light);
  border-top-color: var(--color-primary);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 16px auto;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Instagram Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.instagram-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.instagram-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(76, 7, 140, 0.85);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--color-bg-white);
  opacity: 0;
  transition: opacity var(--transition-normal);
  padding: 20px;
  text-align: center;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-item:hover .instagram-media {
  transform: scale(1.08);
}

.instagram-icon-play {
  width: 48px;
  height: 48px;
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.instagram-caption {
  font-size: 12px;
  font-family: var(--font-body);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.4;
}

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.testimonios {
  position: relative;
  background-image: url('assets/testimonios_bg.png');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  color: var(--color-bg-white);
  text-align: center;
}

.testimonios-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 7, 140, 0.45);
  z-index: 1;
}

.testimonios-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.testimonios-slider {
  position: relative;
  min-height: 220px;
  margin-top: 40px;
}

.testimonio-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
  transform: translateY(15px);
}

.testimonio-card.active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.testimonio-stars {
  color: var(--color-accent);
  font-size: 24px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonio-text {
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 24px;
  color: #FFFFFF;
}

.testimonio-author {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  color: var(--color-accent);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: var(--transition-fast);
}

.dot.active {
  background-color: var(--color-accent);
  transform: scale(1.2);
}

/* ==========================================================================
   CONTACTO
   ========================================================================== */
.contacto {
  background-color: var(--color-primary);
  color: var(--color-bg-white);
  padding: 100px 0 80px 0;
}

.contacto-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contacto .section-title {
  color: var(--color-bg-white);
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
}

.contacto-text-location {
  font-size: 18px;
  color: var(--color-bg-white);
  margin-bottom: 24px;
}

/* Iconos de Redes Sociales de Contacto */
.social-icons-contact {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
}

.social-icons-contact a {
  color: var(--color-bg-white);
  transition: all var(--transition-fast);
}

.social-icons-contact a:hover {
  color: var(--color-accent);
  transform: translateY(-3px);
}

.contacto-details {
  font-size: 16px;
  color: var(--color-bg-white);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contacto-details strong {
  font-weight: 700;
}

.contacto-logo-wrapper {
  max-width: 159px;
  margin-bottom: 40px;
}

.contacto-logo {
  width: 100%;
  height: auto;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.copyright-left {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

/* Contenedor del Formulario */
.contacto-form-container {
  padding: 0;
  background-color: transparent;
  box-shadow: none;
  border-radius: 0;
}

.form-title-text {
  color: var(--color-bg-white);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 30px;
}

.contacto-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-bg-white);
}

.form-input {
  width: 100%;
  padding: 14px 20px;
  background-color: #F2F3F6;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  color: var(--color-dark);
  transition: all var(--transition-fast);
}

.form-input:focus {
  background-color: var(--color-bg-white);
  border-color: var(--color-accent);
  box-shadow: 0 0 10px rgba(224, 194, 194, 0.3);
}

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

.form-submit-wrapper {
  display: flex;
  justify-content: flex-end;
}

.contacto-form .btn-submit {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border: 2px solid transparent;
  padding: 12px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 50px;
  transition: all var(--transition-normal);
  cursor: pointer;
}

.contacto-form .btn-submit:hover {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

/* ==========================================================================
   WHATSAPP BUBBLE
   ========================================================================== */
.whatsapp-bubble {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: var(--color-whatsapp);
  color: var(--color-bg-white);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  z-index: 1000;
  transition: all var(--transition-normal);
}

.whatsapp-bubble:hover {
  background-color: var(--color-whatsapp-hover);
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

/* ==========================================================================
   MODAL DE REDIRECCION
   ========================================================================== */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.modal.show {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  background-color: var(--color-bg-white);
  padding: 40px;
  border-radius: 16px;
  max-width: 450px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.modal.show .modal-content {
  transform: scale(1);
}

.modal-icon {
  width: 64px;
  height: 64px;
  background-color: rgba(37, 211, 102, 0.1);
  color: var(--color-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin: 0 auto 24px auto;
}

.modal-title {
  font-family: var(--font-title);
  font-size: 22px;
  color: var(--color-primary);
  margin-bottom: 12px;
  font-weight: 700;
}

.modal-desc {
  font-size: 15px;
  color: var(--color-text-light);
  margin-bottom: 24px;
}

.loader-line {
  height: 4px;
  width: 100%;
  background-color: var(--color-bg-light);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.loader-line::after {
  content: '';
  position: absolute;
  left: -50%;
  height: 100%;
  width: 50%;
  background-color: var(--color-whatsapp);
  border-radius: 2px;
  animation: loading 1.5s infinite linear;
}

@keyframes loading {
  to { left: 100%; }
}

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

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

.delay-1 { transition-delay: 0.15s; }
.delay-2 { transition-delay: 0.3s; }
.delay-3 { transition-delay: 0.45s; }

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Tablet & Mobile Layouts */
@media screen and (max-width: 992px) {
  .section {
    padding: 70px 0;
  }
  
  .grid-2, .grid-4 {
    grid-template-columns: 1fr;
  }
  
  .valores-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  /* Header Toggle */
  .nav-toggle {
    display: block;
  }
  
  .nav {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background-color: var(--color-primary);
    box-shadow: -5px 5px 15px rgba(0, 0, 0, 0.1);
    transition: right var(--transition-normal);
  }
  
  .header.sticky .nav {
    top: var(--header-height-shrink);
    height: calc(100vh - var(--header-height-shrink));
  }
  
  .nav.open {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    padding: 40px 24px;
    align-items: flex-start;
    gap: 24px;
  }
  
  .nav-item {
    width: 100%;
  }
  
  .nav-link {
    font-size: 18px;
    display: block;
    width: 100%;
    padding: 8px 0;
  }
  
  .btn-contact {
    display: inline-block;
    width: auto;
    text-align: center;
    margin-top: 12px;
  }
  
  /* Hero */
  .hero-title {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
}

/* Mobile Small Layouts */
@media screen and (max-width: 576px) {
  .valores-grid {
    grid-template-columns: 1fr;
  }
  
  .section-title {
    font-size: 30px;
  }
  
  .contacto-form-container {
    padding: 24px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  
  .servicio-img-wrapper {
    height: 200px;
  }
  
  .servicio-content {
    padding: 24px;
  }
  
  .testimonios-slider {
    min-height: 280px;
  }
  
  .testimonio-text {
    font-size: 17px;
  }
}

/* ==========================================================================
   INSTALACIONES
   ========================================================================== */
.instalaciones {
  position: relative;
  background-image: url('assets/instalaciones_bg.png');
  background-size: cover;
  background-position: center;
  padding: 120px 0;
  color: var(--color-bg-white);
  text-align: center;
}

.instalaciones-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(76, 7, 140, 0.38); /* Overlay morado traslúcido */
  z-index: 1;
}

.instalaciones-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.instalaciones-title {
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.15;
  color: var(--color-bg-white);
  letter-spacing: 1px;
}

/* Helper Classes */
.desktop-only {
  display: inline-block;
}

.mobile-only {
  display: none;
}

@media screen and (max-width: 992px) {
  .desktop-only {
    display: none !important;
  }
  .mobile-only {
    display: inline-block !important;
  }
}

/* ==========================================================================
   INSTAGRAM LIGHTBOX MODAL
   ========================================================================== */
.instagram-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-normal);
}

.instagram-lightbox.show {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content {
  position: relative;
  max-width: 480px;
  width: 90%;
  aspect-ratio: 9 / 16;
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform var(--transition-normal);
}

.instagram-lightbox.show .lightbox-content {
  transform: scale(1);
}

#lightbox-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: var(--color-bg-white);
  font-size: 40px;
  cursor: pointer;
  z-index: 3100;
  transition: color var(--transition-fast);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-accent);
}
