/* ==========================================================================
   CSS SYSTEM - AURA 360
   ========================================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

/* Color Variables & Config */
:root {
  /* Colors */
  --bg-dark: #060a13;
  --bg-dark-accent: #0c1222;
  --bg-light: #ffffff;
  --bg-light-accent: #f8fafc;
  
  --blue-lake-deep: #0a1b33;
  --blue-lake: #15325c;
  --blue-lake-light: #275493;
  --blue-lake-glow: rgba(21, 50, 92, 0.45);
  
  --gold: #d4af37;
  --gold-light: #f3d06b;
  --gold-dark: #aa861d;
  --gold-glow: rgba(212, 175, 55, 0.3);
  
  --text-dark: #0f172a;
  --text-dark-muted: #64748b;
  --text-light: #f8fafc;
  --text-light-muted: #94a3b8;
  
  /* Fonts */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.2s ease;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-gold: 0 0 20px rgba(212, 175, 55, 0.2);
  --shadow-blue: 0 0 25px rgba(21, 50, 92, 0.3);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.25;
}

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

ul {
  list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-dark);
}
::-webkit-scrollbar-thumb {
  background: var(--blue-lake);
  border-radius: 5px;
  border: 2px solid var(--bg-dark);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

/* ==========================================================================
   REUSABLE UTILITIES & LAYOUTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}
.section-dark h2, .section-dark h3, .section-dark h4 {
  color: var(--text-light);
}

.section-light-accent {
  background-color: var(--bg-light-accent);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--gold);
  margin-bottom: 1rem;
  display: inline-block;
}

.section-title {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 2.2rem;
  }
  .section {
    padding: 5rem 0;
  }
}

.divider-gold {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0.5rem auto 1.5rem auto;
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 4px;
  transition: var(--transition-smooth);
  cursor: pointer;
  gap: 0.5rem;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: #000000;
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.4);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-light);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212, 175, 55, 0.05);
  transform: translateY(-3px);
}

.btn-outline-dark {
  border: 1px solid var(--blue-lake);
  color: var(--blue-lake);
}
.btn-outline-dark:hover {
  background-color: var(--blue-lake);
  color: var(--text-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-blue);
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
  font-size: 32px;
  transition: var(--transition-smooth);
}
.whatsapp-float:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

/* ==========================================================================
   NAVIGATION HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: 1.5rem 0;
  background: transparent;
}

.header.scrolled {
  padding: 0.8rem 0;
  background: rgba(6, 10, 19, 0.85);
  backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem; /* Spacing between Logo, Nav links, and the Cotizar button */
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-img {
  height: 170px; /* Even larger and more visible */
  width: 170px;
  flex-shrink: 0;
  object-fit: contain;
  display: block;
  transition: var(--transition-smooth);
  image-rendering: -webkit-optimize-contrast; /* Sharp scaling on Safari/Chrome */
  image-rendering: crisp-edges;
  /* Thinned outline to maintain sharp edges in fine elements like 360 */
  filter: drop-shadow(0.3px 0px 0px #ffffff) 
          drop-shadow(-0.3px 0px 0px #ffffff) 
          drop-shadow(0px 0.3px 0px #ffffff) 
          drop-shadow(0px -0.3px 0px #ffffff);
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.logo-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-light); /* Clean white text in dark header context */
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: var(--transition-smooth);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.header.scrolled .logo-img {
  height: 110px; /* Scales down on scroll so it remains compact but clear */
  width: 110px;
}

.header.scrolled .logo-text {
  font-size: 0.95rem; /* Scales down on scroll */
}

.header .logo-img {
  filter: drop-shadow(0.3px 0px 0px #ffffff) 
          drop-shadow(-0.3px 0px 0px #ffffff) 
          drop-shadow(0px 0.3px 0px #ffffff) 
          drop-shadow(0px -0.3px 0px #ffffff)
          drop-shadow(0 2px 8px rgba(0, 0, 0, 0.45));
}

/* Responsive Logo Adjustments */
@media (max-width: 768px) {
  .logo-img {
    height: 130px;
    width: 130px;
  }
  .logo-text {
    font-size: 1rem;
    letter-spacing: 1.5px;
  }
  .header.scrolled .logo-img {
    height: 95px;
    width: 95px;
  }
  .header.scrolled .logo-text {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 115px;
    width: 115px;
  }
  .logo-text {
    font-size: 0.85rem;
    letter-spacing: 1px;
  }
  .logo-wrapper {
    gap: 0.8rem;
  }
  .header.scrolled .logo-img {
    height: 85px;
    width: 85px;
  }
  .header.scrolled .logo-text {
    font-size: 0.75rem;
  }
}

.logo-brand {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 1px;
}
.logo-brand span {
  color: var(--gold);
}

.logo-tag {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-light-muted);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem; /* Reduced gap from 2.5rem to prevent wrapping on medium screens */
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  padding: 0.5rem 0;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  transition: var(--transition-fast);
}
.nav-link:hover {
  color: var(--text-light);
}
.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.btn-nav {
  padding: 0.6rem 1.4rem;
  font-size: 0.8rem;
  border-radius: 4px;
}

.nav-menu .btn-nav {
  display: none;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  width: 30px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-light);
  transition: var(--transition-smooth);
}

@media (max-width: 1150px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 3rem;
    box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    transition: var(--transition-smooth);
    z-index: 999;
  }
  .nav-menu.active {
    right: 0;
  }
  .nav-toggle {
    display: flex;
    z-index: 1000;
  }
  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
  }
  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -7px);
  }
  .nav-actions {
    display: none; /* In mobile we add CTA to menu list or rely on floating button */
  }
  .nav-menu .btn-nav {
    display: block;
    margin-top: 1rem;
  }
}

/* ==========================================================================
   HERO SECTION (FULL SCREEN)
   ========================================================================== */
.hero {
  height: 100vh;
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
  background-color: var(--bg-dark);
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: zoomBg 20s infinite alternate;
  filter: brightness(1.15) saturate(1.05) blur(4px); /* Subtle elegant blur */
}

@keyframes zoomBg {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(6, 10, 19, 0.03) 0%, rgba(6, 10, 19, 0.25) 80%),
              linear-gradient(to top, rgba(6, 10, 19, 0.35) 0%, transparent 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 800px;
  margin-top: 4rem;
}

.hero-tagline {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 5px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-weight: 600;
  animation: fadeInUp 0.8s ease forwards;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-title {
  font-size: 4.2rem;
  line-height: 1.15;
  margin-bottom: 2rem;
  font-weight: 700;
  animation: fadeInUp 1s ease 0.2s forwards;
  opacity: 0;
  color: var(--text-light);
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.65), 0 1px 3px rgba(0, 0, 0, 0.85);
}
.hero-title span {
  font-family: var(--font-body);
  display: block;
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--text-light-muted);
  letter-spacing: 1px;
  margin-top: 1rem;
  text-transform: none;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-locations {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease 0.4s forwards;
  opacity: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}
.hero-locations svg {
  color: var(--gold);
  width: 16px;
  height: 16px;
}

.hero-actions {
  display: flex;
  gap: 1.5rem;
  animation: fadeInUp 1s ease 0.6s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }
  .hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 3px;
  }
  .hero-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

/* ==========================================================================
   ABOUT US SECTION (SOBRE NOSOTROS)
   ========================================================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

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

.about-p {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.about-feature-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 0.95rem;
}
.about-feature-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--gold);
  transform: translate(15px, 15px);
  border-radius: 8px;
  z-index: -1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .about-image-wrapper {
    order: 2;
  }
}

/* ==========================================================================
   SERVICES SECTION (NUESTROS SERVICIOS)
   ========================================================================== */
.services-intro {
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 3rem 2rem;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-lake-light), var(--gold));
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(212, 175, 55, 0.2);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}

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

.service-icon-box {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem auto;
  color: var(--gold);
  transition: var(--transition-smooth);
}
.service-card:hover .service-icon-box {
  background: var(--gold);
  color: #000000;
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.service-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
}

/* Services Showcase (Infinity 360 Feature) */
.service-showcase {
  background: radial-gradient(ellipse at center, rgba(21, 50, 92, 0.2) 0%, rgba(6, 10, 19, 0) 70%),
              rgba(12, 18, 34, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 4rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-blue);
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.showcase-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}
.showcase-content h3 span {
  color: var(--gold);
}

.showcase-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

.showcase-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.95rem;
}
.showcase-item svg {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 3px;
}

.showcase-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.showcase-img-wrap {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/5;
}
.showcase-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}
.showcase-img-wrap img:hover {
  transform: scale(1.05);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .service-showcase {
    padding: 2.5rem 2rem;
  }
}

/* ==========================================================================
   WEDDINGS SECTION (MATRIMONIOS)
   ========================================================================== */
.wedding-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.wedding-text {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-right: 2rem;
}

.wedding-heading {
  font-size: 3rem;
  line-height: 1.2;
}

.wedding-desc {
  font-size: 1.05rem;
  color: var(--text-dark-muted);
}

.wedding-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--blue-lake);
  border-left: 3px solid var(--gold);
  padding-left: 1.5rem;
  margin: 1rem 0;
}

.wedding-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.wedding-img-card {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  position: relative;
}

.wedding-img-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.15);
  pointer-events: none;
}

.wedding-img-card img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.wedding-img-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.wedding-img-card:hover img {
  transform: scale(1.03);
}

.wedding-label {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  color: white;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}

@media (max-width: 991px) {
  .wedding-layout {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .wedding-text {
    padding-right: 0;
  }
  .wedding-images {
    gap: 1.5rem;
  }
  .wedding-img-card img {
    height: 280px;
  }
}

/* ==========================================================================
   RATES SECTION (TARIFAS DE LANZAMIENTO)
   ========================================================================== */
.rates-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 5rem;
}

.rate-card {
  background-color: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  padding: 3.5rem 2.5rem;
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.rate-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-gold);
}
.rate-card.featured::after {
  content: 'POPULAR';
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--gold);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 2px;
  letter-spacing: 1.5px;
}

.rate-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212, 175, 55, 0.3);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), var(--shadow-gold);
}
.rate-card.featured:hover {
  transform: scale(1.03) translateY(-5px);
}

.rate-time {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.rate-price {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.2rem;
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.price-old {
  font-size: 1.5rem;
  color: var(--text-light-muted);
  text-decoration: line-through;
  margin-right: 0.8rem;
  font-weight: 400;
  opacity: 0.6;
}

.rate-price-sub {
  font-size: 0.85rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.rate-features {
  margin-bottom: 3rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.rate-feature-line {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.9rem;
  color: var(--text-light-muted);
}
.rate-feature-line svg {
  color: var(--gold);
  flex-shrink: 0;
}

.rates-footer-info {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
  font-size: 0.9rem;
  color: var(--text-light-muted);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.rates-footer-info svg {
  color: var(--gold);
  display: inline-block;
  vertical-align: middle;
  margin-right: 4px;
}

/* Cost Calculator Widget */
.calculator-box {
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 3rem;
  margin-top: 5rem;
  box-shadow: var(--shadow-lg);
}

.calculator-title {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
.calculator-title span {
  color: var(--gold);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.calc-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.calc-control {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 0.8rem 1rem;
  border-radius: 4px;
  width: 100%;
  transition: var(--transition-fast);
}
.calc-control:focus {
  border-color: var(--gold);
}

.calc-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 0.5rem;
}

.calc-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  font-size: 0.95rem;
  user-select: none;
}
.calc-checkbox-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
}

.calc-results {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.calc-total-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light-muted);
  margin-bottom: 0.5rem;
}

.calc-total-value {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.calc-breakdown {
  width: 100%;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-size: 0.9rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  color: var(--text-light-muted);
}
.breakdown-row.total {
  color: var(--text-light);
  font-weight: 600;
}

.calc-results .btn {
  width: 100%;
}

@media (max-width: 991px) {
  .rates-grid {
    grid-template-columns: 1fr;
  }
  .calc-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .calculator-box {
    padding: 2rem 1.5rem;
  }
}

/* ==========================================================================
   COVERAGE SECTION (COBERTURA)
   ========================================================================== */
.coverage-content {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
}

.coverage-text h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
}

.coverage-desc {
  color: var(--text-dark-muted);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.coverage-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.coverage-item {
  background: var(--bg-light);
  border: 1px solid rgba(15, 23, 42, 0.06);
  padding: 1.2rem 1.5rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}
.coverage-item svg {
  color: #10b981;
}
.coverage-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(212,175,55,0.2);
}

.coverage-card {
  background: linear-gradient(145deg, var(--blue-lake-deep), var(--blue-lake));
  color: white;
  padding: 3rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.coverage-card::after {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.coverage-card h3 {
  color: white;
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.coverage-card p {
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

@media (max-width: 991px) {
  .coverage-content {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
}

/* ==========================================================================
   GALLERY SECTION (GALERÍA)
   ========================================================================== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.filter-btn {
  padding: 0.6rem 1.6rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background-color: var(--bg-light);
  color: var(--text-dark-muted);
  transition: var(--transition-fast);
}

.filter-btn:hover {
  border-color: var(--blue-lake);
  color: var(--blue-lake);
}

.filter-btn.active {
  background-color: var(--blue-lake);
  border-color: var(--blue-lake);
  color: white;
  box-shadow: var(--shadow-blue);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transform-origin: center;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gallery-item.hidden {
  display: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.4) 60%, transparent 100%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: white;
}

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

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-cat {
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 0.3rem;
}

.gallery-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
}

@media (max-width: 1100px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CONTACT SECTION (CONTACTO)
   ========================================================================== */
.contact-container {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 5rem;
}

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

.contact-quote {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-style: italic;
  line-height: 1.4;
  color: var(--text-light);
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-channel-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1rem;
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.03);
  border-radius: 6px;
  transition: var(--transition-fast);
}
.contact-channel-item:hover {
  border-color: rgba(212, 175, 55, 0.2);
  transform: translateX(5px);
}

.channel-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: var(--transition-smooth);
}
.contact-channel-item:hover .channel-icon {
  background-color: var(--gold);
  color: #000;
}

.channel-details h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-light-muted);
  letter-spacing: 1.5px;
  margin-bottom: 2px;
}
.channel-details p {
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form-card {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 3.5rem;
  border-radius: 8px;
  box-shadow: var(--shadow-lg);
}

.contact-form-card h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group.full {
  grid-column: span 2;
}

.form-group label {
  font-size: 0.8rem;
  color: var(--text-light-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-control {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 0.8rem 1rem;
  color: white;
  transition: var(--transition-fast);
  width: 100%;
}
.form-control:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

textarea.form-control {
  height: 120px;
  resize: none;
}

.contact-form-card .btn {
  width: 100%;
  margin-top: 1rem;
}

@media (max-width: 991px) {
  .contact-container {
    grid-template-columns: 1fr;
    gap: 3.5rem;
  }
  .contact-form-card {
    padding: 2rem 1.5rem;
  }
}
@media (max-width: 580px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full {
    grid-column: span 1;
  }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: #03050a;
  color: var(--text-light-muted);
  padding: 5rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-light);
}
.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links h4, .footer-contact h4 {
  color: var(--text-light);
  font-family: var(--font-body);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1.5rem;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.footer-links a {
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 3px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}
.footer-contact-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}
.social-link {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: var(--transition-fast);
  border: 1px solid rgba(255,255,255,0.05);
}
.social-link:hover {
  background-color: var(--gold);
  color: #000;
  transform: translateY(-3px);
  border-color: var(--gold);
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}

/* ==========================================================================
   MODAL & LIGHTBOX SYSTEM
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 10, 19, 0.9);
  backdrop-filter: blur(8px);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-wrapper {
  background: var(--bg-dark-accent);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  position: relative;
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: scale(0.9);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.modal-overlay.active .modal-content-wrapper {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--text-light-muted);
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
}
.modal-close:hover {
  color: var(--gold);
}

.modal-body {
  padding: 3.5rem;
}

/* Lightbox specific */
.lightbox-wrapper {
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-caption {
  position: absolute;
  bottom: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  color: white;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .modal-body {
    padding: 2.5rem 1.5rem;
  }
}

/* Scroll Animation Hooks */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
