@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

/* --- DESIGN SYSTEM TOKENS --- */
:root {
  --nav-height: 80px;
  /* Colors from the Brand Logo */
  --bg-dark: #07070a;
  --bg-card: rgba(20, 20, 30, 0.45);
  --bg-card-hover: rgba(30, 30, 45, 0.65);
  --border-color: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(236, 72, 153, 0.4); /* Pink/Magenta glow */
  
  --primary: #ec4899;       /* Brand Pink/Magenta (Primary) */
  --primary-glow: rgba(236, 72, 153, 0.4);
  --secondary: #ff9f43;     /* Brand Gold/Orange (Secondary) */
  --secondary-glow: rgba(255, 159, 67, 0.4);
  --brand-purple: #a855f7;  /* Brand Purple (Subtle Accent) */
  --brand-cyan: #00f2fe;    /* Brand Cyan/Blue */
  --accent: #f43f5e;        /* Rose */
  
  --text-main: #f3f4f6;
  --text-muted: #9ca3af;
  --text-white: #ffffff;
  
  /* Gradients matching the logo (Pink & Gold dominant) */
  --grad-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  --grad-logo-camera: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--brand-purple) 100%);
  --grad-cyan-purple: linear-gradient(135deg, var(--brand-cyan) 0%, var(--primary) 100%);
  --grad-text: linear-gradient(135deg, #ffffff 20%, var(--secondary) 65%, var(--primary) 100%);
  --grad-dark-glow: radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.12) 0%, rgba(7, 7, 10, 0) 70%);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-glow-purple: 0 0 25px rgba(168, 85, 247, 0.25);
  --shadow-glow-pink: 0 0 25px rgba(236, 72, 153, 0.35);
  --shadow-glow-cyan: 0 0 25px rgba(0, 242, 254, 0.3);
}

body.scrolled {
  --nav-height: 60px;
}

/* --- RESET & BASE STYLES --- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  color: var(--text-white);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* --- BACKGROUND MEDIA (VIDEO & SLIDESHOW) --- */
.bg-media-container {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100vw;
  height: calc(100vh - var(--nav-height));
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
  transition: top var(--transition-normal), height var(--transition-normal);
}

#bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  opacity: 0.35; /* Opacidad inicial oscurecida para legibilidad */
  transition: opacity 0.5s ease;
}

#bg-image-slideshow {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.bg-image-layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-image-layer.active {
  opacity: 1; /* Opacidad al 100% dentro de su contenedor (el cual maneja la opacidad global) */
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 7, 10, 0.25) 0%, rgba(7, 7, 10, 0.8) 100%);
  z-index: 1;
}

/* --- BACKGROUND GLOWS --- */
.ambient-glows {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.glow-1 {
  position: absolute;
  top: -10%;
  left: 20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(236, 72, 153, 0.12) 0%, rgba(7, 7, 10, 0) 70%); /* Rosado */
  filter: blur(80px);
  animation: float-slow 20s infinite alternate;
}

.glow-2 {
  position: absolute;
  top: 40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 159, 67, 0.08) 0%, rgba(7, 7, 10, 0) 70%); /* Dorado/Naranja */
  filter: blur(80px);
  animation: float-slow 25s infinite alternate-reverse;
}

.glow-3 {
  position: absolute;
  bottom: 10%;
  left: -10%;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(0, 242, 254, 0.08) 0%, rgba(7, 7, 10, 0) 70%); /* Cian */
  filter: blur(80px);
}

@keyframes float-slow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(50px, 30px) scale(1.1); }
  100% { transform: translate(-30px, -50px) scale(0.9); }
}

/* --- CONTAINER & UTILITIES --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 100px 0;
}

.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.gradient-accent-text {
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-normal);
  text-decoration: none;
  gap: 8px;
}

.btn-primary {
  background: var(--grad-primary);
  color: var(--text-white);
  border: none;
  box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

/* --- GLASSMOPRHIC CARD TEMPLATE --- */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  transition: var(--transition-normal);
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-hover);
  transform: translateY(-5px);
}

/* --- NAVIGATION --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 7, 10, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(7, 7, 10, 0.9);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px; /* Thinner navbar container */
  transition: var(--transition-normal);
}

.navbar.scrolled .nav-container {
  height: 60px; /* Shrinks smoothly on scroll */
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 95px; /* Big, proud, transparent logo */
  width: auto;
  object-fit: contain;
  margin-top: 10px; /* Pushes it down to align and overflow at the bottom */
  transition: var(--transition-normal);
  filter: drop-shadow(0 0 10px rgba(0, 242, 254, 0.25)); /* Cyan branding glow */
}

/* Shrink smoothly on scroll */
.navbar.scrolled .nav-logo-img {
  height: 75px; /* Compact height when scrolled */
  margin-top: 8px;
  filter: drop-shadow(0 0 6px rgba(0, 242, 254, 0.15));
}

.footer-logo-img {
  height: 105px; /* Large branding in the footer */
  width: auto;
  object-fit: contain;
  transition: var(--transition-normal);
  filter: drop-shadow(0 0 12px rgba(236, 72, 153, 0.25)); /* Pink branding glow */
}

.footer-logo-img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 18px rgba(236, 72, 153, 0.4));
}

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

.nav-link {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-white);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.3);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  backdrop-filter: blur(10px);
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 50%;
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(168, 85, 247, 0); }
  100% { transform: scale(0.9); box-shadow: 0 0 0 0 rgba(168, 85, 247, 0); }
}

.hero h1 {
  font-size: 3.8rem;
  line-height: 1.15;
}

.hero p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 550px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 450px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
  transition: var(--transition-slow);
}

.hero-image-wrapper:hover {
  transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
  border-color: var(--border-hover);
  box-shadow: 0 25px 50px rgba(168, 85, 247, 0.15);
}

.hero-image-wrapper img {
  width: 100%;
  display: block;
  object-fit: cover;
  transition: var(--transition-slow);
}

.hero-card-floating {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  z-index: 10;
  animation: float 4s ease-in-out infinite;
}

.hero-card-floating.second {
  top: 40px;
  right: -20px;
  left: auto;
  bottom: auto;
  animation: float 4s ease-in-out infinite alternate;
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.floating-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 242, 254, 0.1);
  border: 1px solid rgba(0, 242, 254, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.25rem;
}

.hero-card-floating.second .floating-icon {
  background: rgba(168, 85, 247, 0.1);
  border-color: rgba(168, 85, 247, 0.2);
  color: var(--primary);
}

.floating-text h4 {
  font-size: 0.95rem;
  margin-bottom: 2px;
}

.floating-text p {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- STATS SECTION --- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-card {
  padding: 32px;
  text-align: center;
}

.stat-num {
  font-size: 3rem;
  font-weight: 800;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 60px auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-header h2 {
  font-size: 2.6rem;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.section-tag {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* --- SERVICES --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}

.service-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}

.service-card.featured .service-content-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card.featured .service-features {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 24px;
}

.service-card {
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--grad-primary);
  opacity: 0;
  transition: var(--transition-normal);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 8px;
  transition: var(--transition-normal);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: var(--text-white);
  box-shadow: var(--shadow-glow-purple);
}

.service-card h3 {
  font-size: 1.5rem;
}

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

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-color);
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
}

.service-features li svg {
  width: 18px;
  height: 18px;
  color: var(--secondary);
  flex-shrink: 0;
}

/* --- PACKAGES SECTION --- */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: stretch;
  margin-top: 40px;
}

.package-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  border-radius: 24px;
  overflow: visible;
}

.package-card.featured-pkg {
  transform: translateY(-10px);
  border-color: var(--brand-orange);
  box-shadow: 0 15px 35px rgba(255, 159, 67, 0.15);
}

.package-card.featured-pkg:hover {
  transform: translateY(-15px);
  border-color: var(--brand-orange);
  box-shadow: 0 20px 40px rgba(255, 159, 67, 0.25);
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--grad-logo-camera);
  color: var(--text-white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(236, 72, 153, 0.3);
  z-index: 5;
}

.package-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
}

.package-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-white);
  font-family: 'Outfit', sans-serif;
}

.package-card.flash-moment:hover {
  border-color: var(--brand-pink);
  box-shadow: var(--shadow-glow-pink);
}

.package-card.icon-moment:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow-purple);
}

.package-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.package-features li {
  font-size: 0.95rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
}

.package-features li::before {
  content: '✦';
  color: var(--secondary);
  font-weight: bold;
}

.package-card.golden-moment .package-features li::before {
  color: var(--brand-orange);
}

.package-card.icon-moment .package-features li::before {
  color: var(--primary);
}

.package-btn {
  margin-top: auto;
  width: 100%;
}

/* --- THE 360 FEATURE --- */
.showcase-360 {
  background: radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.08) 0%, rgba(7, 7, 10, 0) 50%),
              radial-gradient(circle at 90% 80%, rgba(168, 85, 247, 0.08) 0%, rgba(7, 7, 10, 0) 50%);
}

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

.showcase-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.showcase-visual {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  aspect-ratio: 16/10;
  border: 1px solid var(--border-color);
}

.showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay-btn {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 10, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-normal);
}

.video-overlay-btn:hover {
  background: rgba(7, 7, 10, 0.3);
}

.play-button {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--text-white);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: var(--transition-normal);
}

.video-overlay-btn:hover .play-button {
  transform: scale(1.1);
  background: var(--secondary);
  color: var(--bg-dark);
  box-shadow: var(--shadow-glow-cyan);
}

/* --- INTERACTIVE CALCULATOR --- */
.calculator-section {
  position: relative;
}

.calculator-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 48px;
}

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

.calc-inputs {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.calc-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.calc-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-white);
  display: flex;
  justify-content: space-between;
}

.calc-select, .calc-range {
  width: 100%;
}

.calc-select {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.calc-select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.2);
}

.calc-select option {
  background: #0f0f15;
  color: var(--text-white);
}

.calc-range {
  -webkit-appearance: none;
  height: 6px;
  border-radius: 5px;
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
  transition: var(--transition-fast);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.addons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.addon-checkbox {
  display: none;
}

.addon-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.addon-label:hover {
  background: rgba(255, 255, 255, 0.06);
}

.addon-checkbox:checked + .addon-label {
  border-color: var(--secondary);
  background: rgba(0, 242, 254, 0.05);
}

.addon-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
}

.addon-icon {
  color: var(--text-muted);
  font-size: 1.1rem;
}

.addon-checkbox:checked + .addon-label .addon-icon {
  color: var(--secondary);
}

.addon-price {
  font-size: 0.85rem;
  color: var(--text-muted);
  font-weight: 600;
}

.calc-results {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
}

.results-header h3 {
  font-size: 1.25rem;
  margin-bottom: 24px;
}

.price-display {
  font-family: 'Outfit', sans-serif;
  margin: 24px 0;
}

.price-display span {
  font-size: 1.2rem;
  color: var(--text-muted);
  font-weight: 500;
}

.price-amount {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1;
  display: inline-block;
  background: var(--grad-cyan-purple);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.price-period {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.results-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.results-note {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* --- CONTACT FORM --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(168, 85, 247, 0.1);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-text h4 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.contact-text p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Camera Flash Effect Overlay */
.camera-flash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.05s ease-in;
}
.camera-flash-overlay.flash-active {
  opacity: 1;
  transition: none;
}
.camera-flash-overlay.flash-fade {
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

/* Header Socials Layout */
.header-socials {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 10px;
  align-items: center;
}
.header-socials .social-btn {
  width: 36px;
  height: 36px;
  font-size: 0.95rem;
}
.header-socials .social-btn:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow-pink);
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-fast);
}

.social-btn:hover {
  background: var(--grad-primary);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-purple);
}

.contact-form {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 14px;
  color: var(--text-white);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition-fast);
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--secondary);
  box-shadow: 0 0 10px rgba(0, 242, 254, 0.2);
}

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

/* --- FOOTER --- */
.footer {
  background: #040406;
  border-top: 1px solid var(--border-color);
  padding: 60px 0 30px 0;
  text-align: center;
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 24px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  list-style: none;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-nav a {
  text-decoration: none;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

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

.copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* --- ANIMATION ON SCROLL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  
  .hero h1 {
    font-size: 3rem;
  }
  
  .hero p {
    margin: 0 auto;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .hero-badge {
    align-self: center;
  }
  
  .hero-visual {
    margin-top: 20px;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .service-card.featured {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .service-card.featured .service-features {
    grid-template-columns: 1fr;
  }
  
  .showcase-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 30px;
  }
  
  .package-card.featured-pkg {
    transform: none;
  }
  
  .package-card.featured-pkg:hover {
    transform: translateY(-5px);
  }
  
  .calculator-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none; /* Add JS logic for mobile menu */
  }
  
  .nav-toggle {
    display: block;
  }
  
  .section-padding {
    padding: 60px 0;
  }
  
  .section-header h2 {
    font-size: 2.1rem;
  }
  
  .hero h1 {
    font-size: 2.4rem;
  }
  
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
  }
}
