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

:root {
  --primary: #D4AF37;
  --primary-hover: #B8952E;
  --primary-light: rgba(212, 175, 55, 0.12);
  --dark: #0F0F0F;
  --dark-accent: #1A1A1A;
  --light: #FFFFFF;
  --bg-soft: #FFFAF0;
  --text-main: #1A1A1A;
  --text-muted: #666666;
  --border-soft: rgba(212, 175, 55, 0.2);
  --radius: 0.75rem; /* ~12px */
  --glass: rgba(255, 255, 255, 0.85);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --container-max: 80rem; /* 1280px */
  --section-padding: clamp(4rem, 10vw, 8rem);
  --h1: clamp(2.5rem, 8vw, 6rem);
  --h2: clamp(2rem, 5vw, 3.5rem);
  --h3: clamp(1.25rem, 3vw, 1.75rem);
  --body: clamp(0.95rem, 1.5vw, 1.05rem);
  --hero-p: clamp(1rem, 2vw, 1.35rem);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: 'Inter', system-ui, sans-serif;
}

body {
  background-color: var(--bg-soft);
  color: var(--text-main);
  line-height: 1.62;
  overflow-x: hidden;
  font-weight: 400;
  font-size: var(--body);
  -webkit-font-smoothing: antialiased;
}

html {
  scroll-padding-top: 90px;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

p {
  /* fixed: was invalid "justify-content: justify" */
  font-weight: 400;
}

.helper {
  font-size: 0.92rem;
  color: #666;
}

.fa-solid,
.fas {
  font-weight: 900;
  font-size: 2.5rem; /* 40px */
}

.fa-brands,
.fab {
  font-weight: 400;
  color: #1a1a1a;
}

.span1 {
  color: #D4AF37;
  font-weight: 900;
}

.span1-5 {
  color: #D4AF37;
  font-weight: 900;
  font-size: 1rem;
}

.span2 {
  color: #ffffff;
  font-weight: 400;
}

/* ================== NAVIGATION ================== */
header {
  position: sticky;
  top: 0;
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: var(--transition);
  border-bottom: 1px solid var(--border-soft);
}

#navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  padding: 1rem clamp(1rem, 5%, 5rem);
}

#navbar .logo {
  font-size: 1rem;
  font-weight: 700;
  color: #000000;
  letter-spacing: 2px;
  text-transform: uppercase;
  min-width: 0;
}

#nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.8rem, 2vw, 2rem);
  flex-wrap: nowrap;
  min-width: 0;
}

#nav-menu li a {
  color: #1a1a1a;
  text-decoration: none;
  position: relative;
  transition: color 0.3s;
  font-size: 0.9rem;
  font-weight: 600;
  scroll-behavior: smooth;
}

#nav-menu li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #D4AF37;
  transition: width 0.3s;
  scroll-behavior: smooth;
}

#nav-menu li a:hover {
  color: #D4AF37;
}

#nav-menu li a:hover::after {
  width: 100%;
}

/* Hamburger toggle (hidden on desktop) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 0.3125rem; /* ~5px */
  cursor: pointer;
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.65rem;
  border-radius: 0.875rem; /* ~14px */
  box-shadow: 0 0.625rem 1.5rem rgba(0, 0, 0, 0.08);
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ================== HERO SECTION ================== */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  background-color: #1a1a1a;
  /* Dark base ensures content is readable before images load */
}

/* ── Hero Slideshow Layers ── */
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out, transform 8s linear;
  transform: scale(1.1);
  /* Pre-zoom slightly for the effect */
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  /* Zoom in slowly while active */
}

/* Dark overlay to ensure text is always readable over photos */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  animation: fadeInUp 1.5s ease forwards;
  padding: 0 1rem;
}


.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: var(--h1);
  margin-bottom: 0.5rem;
  font-weight: 800;
  color: var(--light);
  text-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: var(--hero-p);
  margin-bottom: 2rem;
  color: #f1f1f1;
  max-width: 45rem; /* 720px */
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.25rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

/* ── Legacy fade-in cleanup ── */
.bg-fade-in {
  display: none;
}


@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.float-anim {
  animation: float 4s ease-in-out infinite;
}

/* ================== BUTTONS ================== */
.btn,
.btnp {
  padding: 0.9rem 2rem;
  background: var(--primary);
  color: var(--light);
  text-decoration: none;
  border-radius: var(--radius);
  font-weight: 600;
  letter-spacing: 0.03125rem; /* 0.5px */
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(0.875rem, 2vw, 1rem);
  white-space: nowrap;
}

.btn:hover,
.btnp:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.3);
  background: #b8952e;
}

.btn-outline {
  background: transparent;
  border: 1px solid #D4AF37;
  color: #D4AF37;
}

.btn-outline:hover {
  background: #D4AF37;
  color: #fff;
}

/* ================== SECTIONS ================== */
.section {
  padding: var(--section-padding) clamp(1.25rem, 5vw, 3rem);
  margin: auto;
  width: min(var(--container-max), 100%);
  opacity: 0;
  transform: translateY(2.5rem);
  transition: all 1s ease;
  background-color: #ffffff;
}

.section.reveal,
.package-card.reveal,
.card.reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

@media (max-width: 1100px) {
  html {
    scroll-padding-top: 84px;
  }

  #navbar {
    padding-inline: clamp(1rem, 3vw, 2rem);
  }

  #nav-menu {
    gap: 1rem;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 8vw, 5rem);
  }

  .hero p {
    font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  }

  .section {
    padding: 5rem 2rem;
  }
}

.section.visible {
  opacity: 1;
  transform: translateY(0);
}

.section h2 {
  font-family: 'Outfit', sans-serif;
  font-size: var(--h2);
  margin-bottom: 2.5rem;
  text-align: center;
  color: var(--dark);
  font-weight: 700;
  position: relative;
}

.section h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  margin: 12px auto;
  border-radius: 2px;
}

.section .about-paragraph {
  text-align: justify;
  margin: 1.5rem auto;
  max-width: 47.5rem; /* ~760px */
  color: #444;
  line-height: 1.8;
  font-size: clamp(0.95rem, 2vw, 1.05rem);
}

/* ================== SERVICE CARDS ================== */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.card {
  background: var(--light);
  padding: 2.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
}

.card h3 {
  margin-bottom: 0.65rem;
}

.card p {
  color: #4d4d4d;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.15);
}

.card:focus-within {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

/* ================== PORTFOLIO GRID (STATIC ORDER) ================== */
#portfolio {
  max-width: 1400px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 22rem), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
  width: 100%;
}

.photobooth-grid {
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 16rem), 1fr));
}

.portfolio-item {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid var(--border-soft);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  object-fit: cover;
}

.portfolio-grid .portfolio-item:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 3px;
}

/* Keep photo tab thumbnails uniform */
#portfolioGrid-photo .portfolio-item {
  aspect-ratio: 4 / 5;
  height: 100%;
  object-fit: cover;
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 12px 25px rgba(212, 175, 55, 0.25);
  border-color: #D4AF37;
  z-index: 2;
}


/* Photobooth Grid specific adjustments if any */
.photobooth-grid .portfolio-item {
  background: #fff;
  padding: 5px;
  /* Frame look for strips */
  border: 1px solid #eee;
}


/* ── Portfolio tabs ── */
.portfolio-switch {
  margin-bottom: 2rem;
}

/* ── Portfolio empty state ── */
.portfolio-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 4rem 2rem;
}

.portfolio-empty i {
  font-size: 3rem;
  color: #D4AF37;
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.portfolio-empty p {
  font-size: 0.95rem;
  color: #999;
}

.portfolio-empty code {
  background: #f3f3f3;
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.85rem;
  color: #D4AF37;
}

/* ── Video grid ── */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  padding: 1rem 0;
}

.video-card {
  text-decoration: none;
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.video-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  border-color: #D4AF37;
}

.video-card:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

.video-thumb-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.video-thumb-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumb-wrap img {
  transform: scale(1.04);
  opacity: 0.85;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  transition: background 0.3s ease;
}

.video-card:hover .video-play-btn {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-btn i {
  font-size: 3rem !important;
  color: #fff;
  background: rgba(212, 175, 55, 0.85);
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-play-btn i {
  transform: scale(1.12);
  background: #D4AF37;
}

.video-card-title {
  color: #D4AF37;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.75rem 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

/* Video placeholder (when no videos added yet) */
.video-placeholder {
  text-align: center;
  padding: 4rem 2rem;
  width: 100%;
}

.video-placeholder i {
  font-size: 3rem;
  color: #D4AF37;
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

.video-placeholder p {
  font-size: 1.1rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

.video-placeholder span {
  font-size: 0.85rem;
  color: #999;
}

.video-placeholder code {
  background: #f3f3f3;
  padding: 2px 6px;
  border-radius: 4px;
  color: #D4AF37;
  font-size: 0.82rem;
}

/* ================== PACKAGES ================== */
#packages {
  background-color: #f9f9f9;
  padding: 6rem 2rem;
}

.package-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 22rem), 1fr));
  justify-content: center;
  align-items: stretch;
  gap: clamp(1rem, 3vw, 2rem);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.package-card {
  background: var(--light);
  padding: clamp(2rem, 5vw, 3rem) clamp(1.5rem, 5vw, 2.5rem);
  border-radius: var(--radius);
  width: min(100%, 21.25rem); /* ~340px */
  text-align: left;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-soft);
  transition: var(--transition);
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.04);
}

.package-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08), 0 4px 10px rgba(0, 0, 0, 0.06);
}

.package-card:focus-within {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.package-card.featured {
  background: #1a1a1a;
  color: #fff;
  transform: scale(1.05);
  z-index: 10;
  border: 1px solid #D4AF37;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(212, 175, 55, 0.25);
}

.package-cards.four-cards .package-card {
  width: min(100%, 17.5rem); /* ~280px */
}

.package-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #D4AF37;
  white-space: normal;
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D4AF37;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.7rem;
  font-weight: 800;
}

.price {
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 2rem;
  color: #1a1a1a;
}

.featured .price {
  color: #fff;
}

.inclusions-list {
  list-style: none;
  margin-bottom: 2.5rem;
  flex-grow: 1;
}

.inclusions-list li {
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.inclusions-list li::before {
  content: '✓';
  margin-right: 12px;
  font-weight: bold;
  color: #D4AF37;
}

.book-btn {
  display: block;
  text-align: center;
  background: #D4AF37;
  color: white;
  text-decoration: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
  transition: 0.3s;
}

.white-btn {
  background: white;
  color: #1a1a1a;
  border: 1px solid #D4AF37;
}

.book-btn:hover {
  opacity: 0.9;
  letter-spacing: 1px;
}

/* Fade when switching pricing tabs */
.package-cards.is-switching .package-card {
  opacity: 0;
  transform: translateY(8px);
}

/* ================== PRICING SWITCH ================== */
.pricing-switch {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 15px 0 35px;
  flex-wrap: wrap;
}

.pricing-tab,
.portfolio-tab {
  background: #fff;
  border: 1px solid #eee;
  padding: 10px 18px;
  font-weight: 700;
  cursor: pointer;
  border-radius: 6px;
  transition: 1s;
}

.pricing-tab:hover,
.portfolio-tab:hover {
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.pricing-tab.active,
.portfolio-tab.active {
  background: #1a1a1a;
  color: #D4AF37;
  border-color: #D4AF37;
}

.pricing-tab:focus-visible,
.portfolio-tab:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 1px;
}

/* ================== INCLUSIONS SECTION ================== */
#inclusions {
  background-color: #1a1a1a;
  text-align: center;
  padding: 6rem 2rem;
}

.incl-title {
  font-size: 3rem;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.incl-subtitle {
  color: #D4AF37;
  margin-bottom: 3rem;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.inclusions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 25rem), 1fr));
  gap: 1.5rem;
  width: min(var(--container-max), 100%);
  margin: 0 auto;
}

.inclusion-item {
  background: #252525;
  border: 1px solid #333;
  padding: 1.5rem 2rem;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: transform 1s ease, border-color 1s ease;
}

.inclusion-item:hover {
  transform: translateY(-5px);
  border-color: #D4AF37;
}

.inclusion-item:focus-within {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.08);
}

.check-circle {
  background: rgba(212, 175, 55, 0.1);
  border: 2px solid #D4AF37;
  color: #D4AF37;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.inclusion-item span {
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
}

/* ================== CONTACT FORM ================== */
.contact-container {
  display: flex;
  gap: clamp(1.5rem, 5vw, 3rem);
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}

.inquiry-form {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: white;
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #888;
  letter-spacing: 1px;
}

.form-divider {
  border: none;
  border-top: 1px solid #eee;
  margin: 1.5rem 0;
}

input,
textarea,
select {
  padding: 0.8rem;
  border-radius: 4px;
  border: 1px solid #ddd;
  background: #fcfcfc;
  color: #1a1a1a;
  font-size: 0.9rem;
  transition: 1s;
  width: 100%;
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: #D4AF37;
  background: #fff;
}

textarea {
  resize: vertical;
  min-height: 100px;
}

/* ================== BUNDLE SIDEBAR TABS ================== */
.bundle-type-switch {
  display: flex;
  gap: 8px;
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}

.bundle-type-tab {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid #333;
  color: #aaa;
  padding: 8px 14px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 1px;
  cursor: pointer;
  transition: 1s;
  text-transform: uppercase;
}

.bundle-type-tab:hover {
  border-color: #D4AF37;
  color: #fff;
}

.bundle-type-tab.active {
  background: #D4AF37;
  color: #1a1a1a;
  border-color: #D4AF37;
}

/* Override the global .fa-solid 40px rule inside summary */
.bundle-summary .fa-solid {
  font-size: 0.85rem !important;
  color: #D4AF37;
  width: 16px;
  text-align: center;
}

.bundle-summary-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid #eee;
}

.summary-row:last-child {
  border-bottom: none;
}

.summary-label {
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  flex-shrink: 0;
}

.summary-value {
  color: #aaa;
  font-style: italic;
  font-size: 0.82rem;
  transition: all 1s ease;
  text-align: right;
}

.summary-value.selected {
  color: #1a1a1a;
  font-style: normal;
  font-weight: 700;
}

/* ================== BUNDLE OPTIONS LIST ================== */
.bundle-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bundle-option {
  width: 100%;
  text-align: left;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid #333;
  border-radius: 8px;
  padding: 12px 14px;
  cursor: pointer;
  transition: 1s;
  color: #fff;
}

.bundle-option:hover {
  border-color: #D4AF37;
  transform: translateY(-2px);
}

.bundle-option.active {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.12);
}

.bundle-option-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}

.bundle-option-name {
  font-weight: 800;
  font-size: 0.9rem;
  color: #fff;
}

.bundle-option-price {
  font-weight: 900;
  color: #D4AF37;
  white-space: nowrap;
}

.bundle-option-desc {
  margin-top: 5px;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
}

/* ================== BUNDLE SELECTION ================== */
.promo-selection {
  flex: 1;
  min-width: min(100%, 20rem);
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 0.75rem;
  color: white;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.2);
}

.promo-selection h3 {
  font-size: 1rem;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  text-align: center;
  letter-spacing: 1px;
}

.bundle-section {
  margin-bottom: 1.2rem;
}

.bundle-section h4 {
  font-size: 0.7rem;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.bundle-category {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 12rem), 1fr));
  gap: 12px;
}

.bundle-card {
  cursor: pointer;
  display: block;
}

.bundle-card input {
  display: none;
}

.bundle-info {
  border: 1px solid #333;
  padding: 10px 6px;
  border-radius: 6px;
  background: #222;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 70px;
  width: 100%;
  transition: 1s;
}

.bundle-price {
  font-size: 0.7rem;
  color: #D4AF37;
  font-weight: 700;
}

.bundle-card input:checked+.bundle-info {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.15);
  box-shadow: inset 0 0 10px rgba(212, 175, 55, 0.1);
}

.bundle-card.no-avail .bundle-info {
  border-style: dashed;
  opacity: 0.5;
}

.bundle-card.no-avail input:checked+.bundle-info {
  opacity: 1;
  border-style: solid;
}

.submit-btn {
  width: 100%;
  background: #1a1a1a;
  color: #D4AF37;
  padding: 1rem;
  border: 1px solid #D4AF37;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 1rem;
  letter-spacing: 2px;
  transition: 0.3s;
  border-radius: 4px;
}

.submit-btn:hover {
  background: #D4AF37;
  color: white;
}

.submit-btn:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 2px;
}

/* ================== STATUS MESSAGES ================== */
.msg-success {
  background-color: #f0f9f0;
  color: #2e7d32;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #a5d6a7;
  text-align: center;
}

.msg-error {
  background-color: #fff5f5;
  color: #c62828;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
  border: 1px solid #ef9a9a;
  text-align: center;
}

/* ================== SOCIALS ================== */
.socials {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  margin-top: 30px;
  padding: 20px 0;
}

.social-icon {
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(26, 26, 26, 0.05);
  border: 1px solid transparent;
  transition: all 1s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon i {
  font-size: 24px;
  color: #1a1a1a;
  transition: color 1s ease;
}

.social-icon:hover {
  background: #1a1a1a;
  border-color: #D4AF37;
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.social-icon:hover i {
  color: #D4AF37;
}

/* Honeypot - must be invisible but NOT display:none or bots ignore it */
.hp-field {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
  overflow: hidden;
}

/* ================== FOOTER ================== */
.site-footer {
  margin-top: 3rem;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7f3e7 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-inner {
  width: min(var(--container-max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.footer-brand p,
.footer-meta p {
  max-width: 420px;
  color: #5b5b5b;
  line-height: 1.7;
}

.footer-meta a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 600;
}

.footer-meta a:hover {
  color: #D4AF37;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin-bottom: 0.6rem;
}

.social-icon:focus-visible {
  outline: 2px solid #D4AF37;
  outline-offset: 3px;
}

/* ================== LIGHTBOX ================== */
.lightbox {
  display: none;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  animation: fadeIn 1s ease;
}

.lightbox-content {
  max-width: 90%;
  max-height: 80%;
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 1s ease;
}

.lightbox .close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  cursor: pointer;
  transition: 1s;
}

.lightbox .close:hover {
  color: #D4AF37;
  transform: scale(1.1);
}

/* ================== ANIMATIONS ================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s ease-out;
}

[data-reveal].active {
  opacity: 1;
  transform: translateY(0);
}

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

/* Small Laptops & Tablets (1024px) */
@media (max-width: 1024px) {
  #navbar {
    padding: 1rem 2rem;
  }

  .portfolio-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  }
}

/* Tablets & Landscape Phones (768px) */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 76px;
  }

  .nav-toggle {
    display: flex;
  }

  #nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    flex-direction: column;
    padding: 1rem 0;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-1rem);
    transition: var(--transition);
    border-bottom: 1px solid var(--border-soft);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
  }

  #nav-menu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  #nav-menu li { width: 100%; text-align: center; }

  .contact-container {
    flex-direction: column-reverse;
    gap: 3rem;
  }

  .package-card {
    max-width: 100%;
  }
}

/* Mobile (480px) */
@media (max-width: 480px) {
  #navbar .logo {
    font-size: 0.85rem;
  }

  .section {
    padding: 3rem 1.25rem;
  }

  .hero h1 {
    font-size: var(--h1);
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .cta-buttons .btn,
  .cta-buttons .btnp {
    width: 100%;
  }

  .site-footer {
    padding: 3rem 1.25rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .about-paragraph {
    text-align: left !important;
  }
}

/* ================== BACK TO TOP ================== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--primary);
  color: var(--light);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
}

/* ================== WELCOME TOAST ================== */
.welcome-toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-soft);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  z-index: 10001;
  transform: translateX(150%);
  transition: transform 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.welcome-toast.show {
  transform: translateX(0);
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.toast-icon {
  font-size: 1.5rem;
  color: var(--primary);
}

.toast-content strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  color: var(--dark);
}

.toast-content p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

@media (max-width: 768px) {
  .welcome-toast {
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 10002;
    padding: 0.8rem 1.2rem;
  }
  
  .back-to-top {
    bottom: 90px; /* Offset from toast on mobile */
    right: 20px;
  }
}
