:root {
  --font-heading: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  --font-main: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  
  --bg-color: #070709;
  --bg-surface: #0f0f13;
  --bg-surface-alt: #16161c;
  --bg-card: #141419;
  --border-color: #24242d;
  --border-color-hover: #3d3d4b;
  
  --text-main: #ffffff;
  --text-muted: #9fa0aa;
  --text-dim: #6d6e79;

  --red-primary: #d32f2f;
  --red-hover: #b71c1c;
  --red-accent: #ff334b;
  --red-glow: rgba(211, 47, 47, 0.35);

  --shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 6px 16px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 16px 36px rgba(0, 0, 0, 0.8);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --max-width: 1200px;
  --transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

h1, h2, h3, .hero-title, .page-hero-title, .package-name, .table-heading {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header & Navbar (Logo height: 58px-62px) */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(7, 7, 9, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-color);
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.logo-link .accent-text {
  color: var(--red-accent);
}

.logo-img {
  height: 60px;
  max-height: 62px;
  width: auto;
  object-fit: contain;
}

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

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
  color: #ffffff;
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 235px;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 0.5rem 0;
  z-index: 1100;
}

.dropdown-menu li a {
  display: block;
  padding: 0.7rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.dropdown-menu li a:hover {
  background-color: var(--bg-surface-alt);
  color: #ffffff;
  padding-left: 1.5rem;
}

.nav-item.has-dropdown:hover .dropdown-menu {
  display: block;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  padding: 0.75rem 1.45rem;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--red-primary);
  color: #ffffff;
  box-shadow: 0 4px 16px var(--red-glow);
}

.btn-primary:hover {
  background-color: var(--red-hover);
  box-shadow: 0 6px 22px rgba(211, 47, 47, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--border-color-hover);
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn-block {
  width: 100%;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 2.5px;
  background-color: #ffffff;
  margin: 5px 0;
  transition: var(--transition);
}

/* Immersive Hero Section */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border-color);
  background-color: #000000;
}

.hero-media-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.38;
  filter: saturate(1.2) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(7, 7, 9, 0.5) 0%, rgba(7, 7, 9, 0.92) 80%, #070709 100%),
              linear-gradient(to bottom, rgba(211, 47, 47, 0.15) 0%, transparent 50%, #070709 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 5rem 0;
  max-width: 960px;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-accent);
  background-color: rgba(211, 47, 47, 0.12);
  padding: 0.45rem 1.25rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 51, 75, 0.35);
  margin-bottom: 1.85rem;
  box-shadow: 0 0 15px rgba(211, 47, 47, 0.2);
}

.hero-title {
  font-family: 'Helvetica', 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(2.75rem, 6.2vw, 4.8rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.8);
}

.hero-title .highlight {
  color: var(--red-accent);
  background: linear-gradient(135deg, #ff334b 0%, #d32f2f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  font-size: 1.2rem;
  color: #c9cad4;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1.35rem;
}

/* Page Hero */
.page-hero {
  padding: 5rem 0 4rem;
  text-align: center;
  border-bottom: 1px solid var(--border-color);
  background: radial-gradient(circle at center top, rgba(211, 47, 47, 0.14) 0%, transparent 70%), var(--bg-surface);
}

.page-hero-title {
  font-size: clamp(2.4rem, 4.8vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
}

.page-hero-title .highlight {
  color: var(--red-accent);
}

.page-hero-desc {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.15rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: 6rem 0;
}

.section-alt {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

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

.section-subtitle {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red-accent);
  margin-bottom: 0.6rem;
}

.section-title {
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}

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

/* Scannable Modern Package Table Layout */
.pricing-table-container {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 3.5rem;
}

.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  min-width: 760px;
}

.pricing-table th, 
.pricing-table td {
  padding: 1.35rem 1.6rem;
  border-bottom: 1px solid var(--border-color);
}

.pricing-table thead th {
  background-color: var(--bg-surface-alt);
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 800;
}

.pricing-table tbody tr {
  transition: var(--transition);
}

.pricing-table tbody tr:hover {
  background-color: rgba(255, 51, 75, 0.04);
}

.pricing-table tbody tr.featured-row {
  background-color: rgba(211, 47, 47, 0.07);
}

.pricing-table tbody tr:last-child td {
  border-bottom: none;
}

.pkg-cell-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.pkg-tag {
  font-family: var(--font-main);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  background-color: var(--red-primary);
  color: #ffffff;
  letter-spacing: 0.04em;
}

.pkg-cell-price {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--red-accent);
  white-space: nowrap;
}

.pkg-cell-price span {
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
}

.inclusions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.92rem;
  color: #e1e2ea;
}

.inclusions-list li {
  position: relative;
  padding-left: 1.3rem;
}

.inclusions-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--red-accent);
  font-weight: 900;
  font-size: 1.1rem;
  line-height: 1;
}

.duration-pill {
  display: inline-block;
  background: var(--bg-surface-alt);
  border: 1px solid var(--border-color);
  padding: 0.25rem 0.65rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

/* Add-ons Grid */
.addons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.addon-card:hover {
  border-color: var(--red-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.addon-info h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

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

.addon-price {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--red-accent);
  white-space: nowrap;
  padding-left: 1.5rem;
}

/* Event Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--red-accent);
  box-shadow: 0 10px 25px rgba(211, 47, 47, 0.25);
}

.service-img-wrapper {
  position: relative;
  width: 100%;
  height: 220px;
  background-color: #1a1a22;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  filter: brightness(0.9);
}

.service-card:hover .service-img {
  transform: scale(1.06);
  filter: brightness(1.05);
}

.service-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.service-title .arrow {
  color: var(--red-accent);
  font-size: 1.1rem;
  transition: transform 0.2s;
}

.service-card:hover .service-title .arrow {
  transform: translateX(4px);
}

.service-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* Capabilities 5-Pillar Grid */
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.capability-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  transition: var(--transition);
}

.capability-card:hover {
  border-color: var(--border-color-hover);
  background: var(--bg-surface-alt);
}

.capability-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(211, 47, 47, 0.14);
  border: 1px solid rgba(255, 51, 75, 0.35);
  color: var(--red-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.35rem;
}

.capability-title {
  font-size: 1.18rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.capability-desc {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.team-card:hover {
  transform: translateY(-5px);
  border-color: var(--red-accent);
}

.team-photo-wrap {
  width: 100%;
  height: 280px;
  background-color: #1a1a22;
  overflow: hidden;
}

.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: transform 0.4s ease, filter 0.4s ease;
}

.team-card:hover .team-photo {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.team-info {
  padding: 1.5rem;
}

.team-name {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.team-role {
  color: var(--red-accent);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.team-bio {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Quote Form & Autocomplete */
.form-container {
  max-width: 760px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  box-shadow: var(--shadow-lg);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  position: relative;
}

.form-group.full-width {
  grid-column: span 2;
}

.form-label {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 0.45rem;
  color: #e4e4e7;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  color: #ffffff;
  background-color: var(--bg-surface);
  transition: var(--transition);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--red-accent);
  box-shadow: 0 0 0 3px rgba(255, 51, 75, 0.22);
}

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

/* Google Places Autocomplete dropdown dark styling */
.pac-container {
  background-color: #141419 !important;
  border: 1px solid #3d3d4b !important;
  border-radius: var(--radius-sm) !important;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8) !important;
  font-family: var(--font-main) !important;
  z-index: 9999 !important;
}

.pac-item {
  border-top: 1px solid #24242d !important;
  padding: 8px 12px !important;
  color: #ffffff !important;
  cursor: pointer !important;
}

.pac-item:hover, .pac-item-selected {
  background-color: #1e1e26 !important;
}

.pac-item-query {
  color: #ffffff !important;
  font-weight: 700 !important;
}

.pac-matched {
  color: var(--red-accent) !important;
}

.form-error {
  display: none;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  color: #f87171;
}

.form-error.visible {
  display: block;
}

.form-status {
  display: none;
  margin-top: 1.25rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  text-align: center;
}

.form-status.success {
  display: block;
  background-color: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #4ade80;
}

/* Dark Mode Scheduling Widget Container */
.schedule-widget-container {
  max-width: 960px;
  margin: 0 auto;
  background: #0d0d11;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.schedule-widget-header {
  padding: 1.5rem 2rem;
  background: var(--bg-surface-alt);
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.schedule-widget-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.badge-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  display: inline-block;
  box-shadow: 0 0 8px #22c55e;
}

.calendar-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 720px;
  background: #070709;
}

.calendar-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  /* Dark mode filter inversion to harmonize standard light embeds with seamless dark UI */
  filter: invert(0.92) hue-rotate(180deg) contrast(0.95);
  transition: var(--transition);
}

/* Footer */
.site-footer {
  background-color: #050507;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 4.5rem 0 2.5rem;
  font-size: 0.9rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  color: #ffffff;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
}

.region-tag {
  display: inline-block;
  background: rgba(211, 47, 47, 0.15);
  color: var(--red-accent);
  border: 1px solid rgba(255, 51, 75, 0.35);
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.65rem;
  border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 1rem;
  letter-spacing: 0.08em;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.65rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 860px) {
  .header-container {
    height: 80px;
  }

  .logo-img {
    height: 52px;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    flex-direction: column;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    gap: 1rem;
    align-items: flex-start;
  }

  .nav-menu.active {
    display: flex;
  }

  .dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding-left: 1rem;
    display: block;
    background: transparent;
  }

  .mobile-toggle {
    display: block;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-actions {
    flex-direction: column;
    gap: 0.85rem;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}
