:root {
  --bg-primary: #0b0b0e;
  --bg-secondary: #121217;
  --bg-card: #191922;
  --bg-glass: rgba(25, 25, 34, 0.75);
  
  --gold-primary: #e2c062;
  --gold-light: #f7e8b5;
  --gold-dark: #b88a28;
  --gold-gradient: linear-gradient(135deg, #f7e8b5 0%, #e2c062 50%, #b88a28 100%);
  --whatsapp-green: #25d366;
  --whatsapp-gradient: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
  --rainbow-gradient: linear-gradient(90deg, #ff4b2b, #ff416c, #8a2be2, #00d2ff, #00f2fe, #4facfe, #00f2fe, #e2c062);
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --border-color: rgba(226, 192, 98, 0.22);
  --border-light: rgba(255, 255, 255, 0.08);
  
  --font-heading: 'Cinzel', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-accent: 'Space Grotesk', sans-serif;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

/* Typography & Base */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  letter-spacing: 0.5px;
}

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

.gold-link {
  color: var(--gold-primary);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.gold-link:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.75rem;
}

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

.section-dark {
  background-color: var(--bg-secondary);
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-primary);
  background: rgba(226, 192, 98, 0.12);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.section-header h2 span {
  display: block;
  font-size: 1.15rem;
  color: var(--gold-light);
  font-family: var(--font-body);
  font-weight: 400;
  margin-top: 0.3rem;
}

.section-header p {
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.05rem;
}

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

/* Grids */
.grid {
  display: grid;
  gap: 2rem;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.8rem;
  font-family: var(--font-accent);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border: none;
  box-shadow: 0 4px 20px rgba(226, 192, 98, 0.35);
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(226, 192, 98, 0.55);
}

.btn-whatsapp {
  background: var(--whatsapp-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.55);
}

.btn-outline {
  background: rgba(255, 255, 255, 0.03);
  color: var(--gold-light);
  border: 1px solid var(--gold-primary);
  backdrop-filter: blur(10px);
}

.btn-outline:hover {
  background: rgba(226, 192, 98, 0.15);
  color: #fff;
  transform: translateY(-3px);
}

.btn-pdf {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-light);
}

.btn-pdf:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--gold-primary);
  transform: translateY(-3px);
}

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

/* Navbar with Clean 2-Line Wording (English Line 1, Chinese Line 2) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 11, 14, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text-main);
}

.logo-img {
  height: 42px;
  width: auto;
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 1px;
  white-space: nowrap;
}

.logo-sub {
  color: var(--gold-primary);
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

/* 2-Line Stacked Nav Links */
.nav-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  line-height: 1.25;
  transition: var(--transition);
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.link-en {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-main);
  white-space: nowrap;
}

.link-cn {
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--gold-primary);
  white-space: nowrap;
}

.nav-link:hover .link-en,
.nav-link.active .link-en {
  color: var(--gold-light);
}

.nav-link:hover .link-cn,
.nav-link.active .link-cn {
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(226, 192, 98, 0.5);
}

.nav-whatsapp-btn {
  padding: 0.35rem 0.8rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid var(--whatsapp-green);
  border-radius: 6px;
}

.nav-whatsapp-btn .link-en {
  color: #25d366;
  font-weight: 700;
}

.nav-whatsapp-btn .link-cn {
  color: #4ade80;
}

.nav-btn {
  padding: 0.35rem 1.1rem;
  border: 1px solid var(--gold-primary);
  border-radius: 6px;
  background: var(--gold-gradient);
}

.nav-btn .link-en {
  color: #0b0b0e;
  font-weight: 800;
}

.nav-btn .link-cn {
  color: #261c04;
  font-weight: 700;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.mobile-toggle span {
  width: 25px;
  height: 2px;
  background: var(--gold-primary);
  transition: var(--transition);
}

/* Hero Section - Stacked Layout */
.hero-section {
  position: relative;
  padding-top: 6.5rem;
  padding-bottom: 3.5rem;
  background: radial-gradient(circle at 50% 20%, rgba(28, 28, 40, 0.9) 0%, rgba(11, 11, 14, 1) 90%);
}

.hero-container-stacked {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Top Full Stage Showcase Banner - 20% Larger (504px) & Glow Overlay Removed */
.hero-banner-wrap {
  position: relative;
  width: 100%;
  height: 504px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border-color);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
}

.stage-gif-showcase {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Pure 100% clarity */
}

/* Removed glow overlay per request */
.banner-spotlight-overlay {
  display: none;
}

.banner-badge {
  position: absolute;
  bottom: 1.2rem;
  left: 1.5rem;
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: blur(10px);
  color: var(--gold-light);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  border: 1px solid var(--border-color);
}

.rainbow-gradient-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--rainbow-gradient);
  background-size: 200% 100%;
  animation: rainbowGlow 6s linear infinite;
}

@keyframes rainbowGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

/* Hero Details Card Below the Banner */
.hero-title-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.25rem;
  background: var(--bg-card);
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.badge-sparkle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold-light);
  background: rgba(226, 192, 98, 0.12);
  border: 1px solid var(--border-color);
  padding: 0.4rem 1.1rem;
  border-radius: 50px;
  margin: 0 auto;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--gold-primary);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 192, 98, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(226, 192, 98, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(226, 192, 98, 0); }
}

.hero-name-heading {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 900;
}

.hero-role-desc {
  font-size: 1.18rem;
  color: var(--text-muted);
  max-width: 720px;
}

.personality-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 0.2rem;
}

.tag-pill {
  font-size: 0.82rem;
  font-family: var(--font-accent);
  font-weight: 600;
  color: var(--gold-light);
  background: rgba(226, 192, 98, 0.15);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* Stat Cards & Infographic Section */
.infographic-section {
  background: linear-gradient(180deg, #0b0b0e 0%, #121217 100%);
}

.stat-grid {
  margin-bottom: 3.5rem;
}

.stat-card {
  background: var(--bg-glass);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(12px);
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.stat-icon {
  font-size: 2.2rem;
  margin-bottom: 0.5rem;
}

.stat-number {
  font-family: var(--font-accent);
  font-size: 2.3rem;
  font-weight: 700;
  color: var(--gold-primary);
}

.stat-label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0.3rem 0;
}

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

/* Passion Box */
.passion-highlight-box {
  position: relative;
  background: rgba(25, 25, 34, 0.75);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.passion-quote-mark {
  font-family: var(--font-heading);
  font-size: 5rem;
  color: var(--gold-primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: -2rem;
}

.passion-highlight-box h3 {
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 1rem;
}

.passion-text {
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-main);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.passion-author {
  font-family: var(--font-accent);
  font-weight: 700;
  color: var(--gold-primary);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

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

.emcee-service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.emcee-service-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 35px rgba(226, 192, 98, 0.15);
}

.card-media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.emcee-service-card:hover .card-media img {
  transform: scale(1.06);
}

.service-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(11, 11, 14, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  border: 1px solid var(--border-color);
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 4px;
}

.emcee-service-card .card-body {
  padding: 1.6rem;
}

.emcee-service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.6rem;
}

.emcee-service-card p {
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 1.1rem;
}

.feature-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.feature-bullets li {
  font-size: 0.88rem;
  color: var(--text-main);
  position: relative;
  padding-left: 1.2rem;
}

.feature-bullets li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold-primary);
  font-weight: bold;
}

/* Music Cards */
.music-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.music-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-primary);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.card-img-wrap {
  position: relative;
  height: 250px;
  overflow: hidden;
  cursor: pointer;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.music-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 14, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

.music-card:hover .play-overlay {
  opacity: 1;
}

.play-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3rem;
  padding-left: 3px;
  box-shadow: 0 0 20px rgba(226, 192, 98, 0.6);
}

.music-card .card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.music-badge {
  font-size: 0.75rem;
  font-family: var(--font-accent);
  color: var(--gold-primary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.music-card h3 {
  font-size: 1.25rem;
  margin: 0.2rem 0 0.5rem;
}

.music-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.card-actions {
  display: flex;
  margin-top: auto;
}

.btn-card-play {
  background: var(--gold-gradient);
  border: none;
  color: #0b0b0e;
  font-family: var(--font-accent);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 15px rgba(226, 192, 98, 0.25);
}

.btn-card-play:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(226, 192, 98, 0.45);
}

/* Press Cards */
.press-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.press-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-primary);
}

.press-card .card-img-wrap {
  height: 220px;
}

.press-card .card-body {
  padding: 1.5rem;
}

.press-source {
  font-size: 0.8rem;
  font-family: var(--font-accent);
  color: var(--gold-primary);
  font-weight: 700;
}

.press-card h4 {
  font-size: 1.15rem;
  margin: 0.3rem 0 0.5rem;
}

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

/* Gallery Section */
.gallery-filter-bar {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(25, 25, 34, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-muted);
  padding: 0.5rem 1.3rem;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--gold-gradient);
  color: #0b0b0e;
  border-color: var(--gold-primary);
  font-weight: 700;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 260px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 11, 14, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--gold-light);
  border-bottom: 2px solid var(--gold-primary);
  padding-bottom: 0.2rem;
}

/* Testimonials */
.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.25rem;
}

.stars {
  color: var(--gold-primary);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.quote {
  font-style: italic;
  color: var(--text-main);
  font-size: 0.98rem;
}

.client-info strong {
  display: block;
  color: var(--gold-light);
  font-size: 0.95rem;
}

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

/* Contact Section */
.contact-box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 3rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.contact-intro {
  color: var(--text-muted);
  margin: 1rem 0 1.5rem;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.info-icon {
  font-size: 1.5rem;
  background: rgba(226, 192, 98, 0.12);
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--border-color);
}

.info-item strong {
  display: block;
  font-size: 0.95rem;
}

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

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.booking-form h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(11, 11, 14, 0.8);
  border: 1px solid var(--border-light);
  color: var(--text-main);
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(226, 192, 98, 0.25);
}

.form-feedback {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #4ade80;
  font-weight: 600;
  text-align: center;
}

/* Modal */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(12px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 2rem;
}

.modal-content {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #121217;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: rgba(226, 192, 98, 0.2);
  border: 1px solid var(--gold-primary);
  color: var(--gold-light);
  font-size: 1.6rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: var(--transition);
}

.modal-close:hover {
  background: var(--gold-gradient);
  color: #0b0b0e;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  background: #000;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-footer-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem;
  background: rgba(18, 18, 23, 0.95);
  border-top: 1px solid var(--border-light);
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: #070709;
  border-top: 1px solid var(--border-color);
  padding: 3rem 0;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

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

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

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

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-banner-wrap {
    height: 384px;
  }
  
  .hero-name-heading {
    font-size: 2.6rem;
  }
  
  .contact-box-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(11, 11, 14, 0.98);
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

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

  .hero-banner-wrap {
    height: 288px;
  }

  .hero-name-heading {
    font-size: 2.2rem;
  }

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