/* Photobooth Bar - Shared Styles */
:root {
  --bg: #0f1115;
  --bg-2: #151823;
  --card: #10131c;
  --muted: #a6adbb;
  --text: #f5f7fb;
  --brand: #8ef0d6;
  --brand-2: #b6f79e;
  --accent: #7aa7ff;
  --warning: #ffd279;
  --gold: #d4af37;
  --gold-dark: #b8941f;
  --gold-light: #c9a961;
  --dark-bg: #0a0d14;
  --radius: 18px;
  --shadow: 0 10px 30px rgba(0,0,0,.25);
  --max: 1200px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark-bg);
  color: var(--text);
  font: 16px/1.6 "Inter", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

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

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

/* Header */
header {
  position: sticky;
  top: 0;
  background: rgba(10, 13, 20, 0.95);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 136px;
  height: auto;
  object-fit: contain;
}

nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

nav ul li {
  position: relative;
}

nav ul li a {
  color: #fff;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 4px;
}

nav ul li a:hover,
nav ul li a.active {
  color: var(--gold);
}

/* Dropdown Menu */
nav ul li.has-dropdown > a::after {
  content: '▼';
  font-size: 8px;
  margin-left: 4px;
  transition: transform .3s;
}

nav ul li.has-dropdown:hover > a::after {
  transform: rotate(180deg);
}

nav ul li .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-bg);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all .3s;
  margin-top: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,.3);
  z-index: 1000;
}

nav ul li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

nav ul li .dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--muted);
  font-size: 13px;
  text-transform: none;
  letter-spacing: 0;
}

nav ul li .dropdown a::after {
  display: none;
}

nav ul li .dropdown a:hover {
  color: var(--gold);
  background: rgba(255,255,255,.05);
}

/* Nav CTA Button */
.nav-cta {
  margin-left: 16px;
}

.nav-cta .btn {
  padding: 12px 24px;
  font-size: 13px;
}

.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
  order: 3;
}

@media (max-width: 1024px) {
  nav ul {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 20px;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  nav ul.open {
    display: flex;
  }
  nav ul li .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    margin-left: 16px;
    border: none;
    border-left: 2px solid rgba(255,255,255,.1);
    padding-left: 12px;
    box-shadow: none;
  }
  .menu-btn {
    display: inline-flex;
    order: 3;
    margin-left: auto;
  }
  .nav-cta {
    margin-left: 0;
    width: 100%;
  }
  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px;
  text-align: center;
  width: 100%;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: rgba(0,0,0,0.5);
}

.hero > *:not(.hero-bg):not(.hero-overlay) {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: -1px;
}

.hero-subhead {
  font-size: clamp(18px, 2vw, 22px);
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Buttons */
.btn {
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-family: inherit;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  box-shadow: 0 4px 15px rgba(212,175,55,.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,175,55,.4);
}

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

.btn-secondary:hover {
  background: var(--gold);
  color: #000;
}

/* Sticky Mobile CTA */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 16px 20px;
  z-index: 99;
  box-shadow: 0 -4px 20px rgba(0,0,0,.3);
}

.sticky-cta .btn {
  width: 100%;
  justify-content: center;
}

@media (max-width: 768px) {
  .sticky-cta {
    display: block;
  }
  body {
    padding-bottom: 80px;
  }
}

/* Sections */
section {
  padding: 80px 20px;
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 800;
  text-align: center;
}

.section-subtitle {
  color: var(--muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
  font-size: 18px;
}

/* Social Proof */
.social-proof {
  background: var(--bg-2);
  padding: 40px 20px;
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.social-proof-strip {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.social-proof-title {
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
  text-align: left;
}

.testimonial-text {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
  font-style: italic;
}

.testimonial-author {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

@media (max-width: 768px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* What's Included */
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 1024px) {
  .included-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .included-grid {
    grid-template-columns: 1fr;
  }
}

.included-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
}

.included-item h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 12px;
}

.included-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.summary-box {
  background: linear-gradient(135deg, rgba(212,175,55,.1), rgba(212,175,55,.05));
  border: 1px solid rgba(212,175,55,.2);
  border-radius: var(--radius);
  padding: 24px;
  margin-top: 32px;
  text-align: center;
}

.summary-box h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 12px;
}

.summary-box p {
  color: var(--muted);
  font-size: 16px;
}

/* Best For */
.best-for-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.best-for-card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: transform .3s;
}

.best-for-card:hover {
  transform: translateY(-4px);
}

.best-for-card h3 {
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 12px;
}

.best-for-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .best-for-grid {
    grid-template-columns: 1fr;
  }
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: linear-gradient(135deg, var(--bg-2), var(--card));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  position: relative;
}

.gallery-item::before {
  content: attr(data-label);
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
  background: rgba(0,0,0,.7);
  padding: 8px;
  border-radius: 6px;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

/* How It Works */
.timeline {
  max-width: 800px;
  margin: 40px auto 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.1);
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.timeline-content {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 24px;
}

.timeline-content h3 {
  color: var(--gold);
  font-size: 20px;
  margin-bottom: 8px;
}

.timeline-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-number {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* Pricing Box */
.pricing-box {
  background: var(--card);
  border: 2px solid rgba(212,175,55,.3);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  margin: 40px auto 0;
  text-align: center;
}

.pricing-box.badge-popular {
  border-color: var(--gold);
  position: relative;
}

.badge-popular::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  color: #000;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.pricing-box h2 {
  color: var(--gold);
  font-size: 32px;
  margin-bottom: 8px;
}

.pricing-amount {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
}

.pricing-duration {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
}

.pricing-features li {
  color: var(--muted);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-features li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 800;
  font-size: 18px;
}

.add-ons {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.add-ons h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 16px;
}

.add-on-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  color: var(--muted);
  font-size: 14px;
}

.fine-print {
  margin-top: 24px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* Service Area */
.service-area {
  background: var(--bg-2);
  padding: 60px 20px;
}

.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin-top: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.city-tag {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 8px;
  padding: 12px 16px;
  text-align: center;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  font-weight: 600;
  font-size: 18px;
  transition: background .3s;
}

.faq-question:hover {
  background: rgba(255,255,255,.02);
}

.faq-question::after {
  content: '+';
  color: var(--gold);
  font-size: 24px;
  font-weight: 300;
  transition: transform .3s;
}

.faq-item.active .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .3s ease-out;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 24px 24px;
  color: var(--muted);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
  margin: 40px auto 0;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  background: var(--bg-2);
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
}

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

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

.form-success {
  display: none;
  background: rgba(142,240,214,.1);
  border: 1px solid var(--brand);
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 24px;
  color: var(--brand);
  text-align: center;
}

.form-success.show {
  display: block;
}

/* Footer */
footer {
  background: var(--dark-bg);
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 40px 20px;
  margin-top: 80px;
}

.footer-content {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-section h3 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 16px;
}

.footer-section p,
.footer-section a {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.footer-section a:hover {
  color: var(--gold);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.06);
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-40 {
  margin-top: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

