/* ==========================================================================
   PLYXP — SMART HAPPENS HERE
   Luxury Residential Technology & Boutique Business Integration
   Jacksonville, Ponte Vedra Beach, Nocatee, St. Johns County, FL
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  /* Core Brand Colors */
  --navy-midnight: #0D1B2A;
  --navy-deep: #112233;
  --navy-slate: #1B263B;
  --navy-surface: #22334A;
  --navy-card: #152232;
  
  --gold-champagne: #C8A96A;
  --gold-light: #DFCA9B;
  --gold-hover: #D4BA80;
  --gold-dark: #A98642;
  --gold-muted: rgba(200, 169, 106, 0.15);
  --gold-border: rgba(200, 169, 106, 0.28);
  --gold-glow: rgba(200, 169, 106, 0.25);

  --ivory-white: #F5F1E9;
  --bg-alabaster: #FAF8F5;
  --bg-subtle: #F2EFE9;
  --bg-card: #FFFFFF;
  
  --text-dark: #0D1B2A;
  --text-body: #3E4B5B;
  --text-muted: #6C7A89;
  --text-light: #F5F1E9;
  --text-light-muted: #B4C2D0;
  
  --border-light: rgba(13, 27, 42, 0.08);
  --border-card: rgba(200, 169, 106, 0.22);
  --border-dark: rgba(255, 255, 255, 0.08);

  --shadow-sm: 0 4px 12px rgba(13, 27, 42, 0.04);
  --shadow-md: 0 12px 32px rgba(13, 27, 42, 0.06);
  --shadow-lg: 0 24px 56px rgba(13, 27, 42, 0.1);
  --shadow-gold: 0 8px 24px rgba(200, 169, 106, 0.2);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-display: 'Cinzel', 'Playfair Display', serif;
  --font-sans: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;
  
  --max-width: 1240px;
  --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* --- Base & Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-alabaster);
  color: var(--text-body);
  line-height: 1.75;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  color: var(--text-dark);
  font-weight: 600;
  line-height: 1.25;
}

.serif-title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.01em;
}

p {
  margin-bottom: 1.25rem;
}

p:last-child {
  margin-bottom: 0;
}

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

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

/* --- Layout Utilities --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 2rem;
  padding-right: 2rem;
}

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

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

.section-dark {
  background-color: var(--navy-midnight);
  color: var(--text-light-muted);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--text-light);
}

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-champagne);
  background: rgba(200, 169, 106, 0.1);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.section-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold-champagne);
  border-radius: 50%;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto;
}

.section-dark .section-subtitle {
  color: var(--text-light-muted);
}

/* --- Top Utility Bar --- */
.top-bar {
  background: var(--navy-midnight);
  color: var(--text-light-muted);
  font-size: 0.82rem;
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-badge {
  color: var(--gold-champagne);
  font-weight: 500;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
}

.top-bar-link:hover {
  color: var(--gold-champagne);
}

/* --- Primary Navigation Header --- */
.header-nav {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 248, 245, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-card);
  transition: var(--transition);
}

.header-nav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(13, 27, 42, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

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

/* Desktop Nav Menu */
.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
}

.nav-item {
  position: relative;
}

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

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

.nav-link svg {
  transition: transform 0.2s ease;
}

.nav-item:hover .nav-link svg {
  transform: rotate(180deg);
}

/* Solutions Dropdown Menu */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 320px;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 0.75rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1010;
}

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

.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.75rem 1.25rem;
  transition: var(--transition);
}

.dropdown-item:hover {
  background: var(--bg-alabaster);
}

.dropdown-icon {
  width: 32px;
  height: 32px;
  background: var(--gold-muted);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.dropdown-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  display: block;
  margin-bottom: 2px;
}

.dropdown-desc {
  font-size: 0.76rem;
  color: var(--text-muted);
  display: block;
  line-height: 1.35;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy-midnight);
}

.nav-phone:hover {
  color: var(--gold-dark);
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--navy-midnight);
  cursor: pointer;
  padding: 0.5rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 0.85rem 1.85rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
  color: var(--navy-midnight);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-champagne));
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(200, 169, 106, 0.35);
  color: var(--navy-midnight);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-midnight);
  border-color: var(--navy-midnight);
}

.btn-secondary:hover {
  background: var(--navy-midnight);
  color: var(--ivory-white);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--navy-midnight);
  color: var(--ivory-white);
  border: 1px solid var(--border-dark);
}

.btn-dark:hover {
  background: var(--navy-slate);
  color: var(--gold-champagne);
  border-color: var(--gold-border);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-champagne);
  border-color: var(--gold-champagne);
}

.btn-outline-gold:hover {
  background: var(--gold-champagne);
  color: var(--navy-midnight);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 1.05rem 2.25rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  padding: 6.5rem 0 7rem;
  background: linear-gradient(180deg, var(--bg-alabaster) 0%, #FFFFFF 100%);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.08) 0%, rgba(250, 248, 245, 0) 70%);
  pointer-events: none;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  color: var(--navy-midnight);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.hero-subheadline {
  font-size: 1.22rem;
  color: var(--text-body);
  max-width: 780px;
  margin: 0 auto 2.25rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-width: 860px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-dark);
}

.trust-icon {
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.hero-consultation-line {
  margin-top: 1.25rem;
  font-size: 0.9rem;
  color: var(--gold-dark);
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* --- Intro Section --- */
.intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2.4rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  font-size: 1.05rem;
  color: var(--text-body);
}

.intro-features-list {
  list-style: none;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.intro-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--navy-midnight);
}

.intro-feature-icon {
  width: 28px;
  height: 28px;
  background: var(--gold-muted);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  flex-shrink: 0;
}

.intro-card {
  background: var(--navy-midnight);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--ivory-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.intro-card::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.25), transparent 70%);
  border-radius: 50%;
}

.intro-card h3 {
  color: var(--gold-champagne);
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.intro-card p {
  color: var(--text-light-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* --- Featured Solutions Grid --- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.solution-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.solution-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-champagne);
}

.solution-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, rgba(200, 169, 106, 0.15), rgba(200, 169, 106, 0.05));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  margin-bottom: 1.5rem;
}

.solution-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.solution-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-dark);
  margin-top: auto;
}

.solution-link:hover {
  color: var(--navy-midnight);
  gap: 0.75rem;
}

/* --- Lifestyle Scenes (Interactive Simulator) --- */
.scenes-container {
  background: var(--navy-slate);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3.5rem;
  color: var(--text-light);
  box-shadow: var(--shadow-lg);
}

.scene-nav-pills {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.scene-pill {
  background: var(--navy-midnight);
  border: 1px solid var(--border-dark);
  color: var(--text-light-muted);
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.scene-pill:hover {
  border-color: var(--gold-border);
  color: var(--gold-light);
}

.scene-pill.active {
  background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
  color: var(--navy-midnight);
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-gold);
}

.scene-display-panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3.5rem;
  align-items: center;
}

.scene-info h3 {
  font-size: 2.2rem;
  color: var(--gold-champagne);
  margin-bottom: 1rem;
}

.scene-info p {
  font-size: 1.08rem;
  color: var(--text-light-muted);
  margin-bottom: 2rem;
  line-height: 1.7;
}

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

.scene-state-card {
  background: var(--navy-midnight);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.state-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.state-title {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-light-muted);
}

.state-badge {
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  background: rgba(200, 169, 106, 0.15);
  color: var(--gold-champagne);
}

.state-val {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-light);
}

/* --- Why PLYXP Section --- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.why-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-champagne);
  box-shadow: var(--shadow-md);
}

.why-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold-champagne);
  margin-bottom: 0.75rem;
}

.why-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

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

/* --- Who We Work With --- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.audience-card {
  background: var(--navy-midnight);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.25rem;
  color: var(--text-light-muted);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.audience-card:hover {
  border-color: var(--gold-champagne);
  transform: translateY(-6px);
}

.audience-card h3 {
  color: var(--gold-champagne);
  font-size: 1.45rem;
  margin-bottom: 1rem;
}

.audience-card p {
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Service Area Strip --- */
.area-pills-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2rem;
}

.area-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* --- FAQ Accordion --- */
.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.75rem;
  background: none;
  border: none;
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy-midnight);
  text-align: left;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--gold-dark);
}

.faq-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 1.75rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 1.5rem;
}

.faq-answer p {
  font-size: 0.94rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* --- Interactive Consultation Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 4rem;
}

.contact-info-panel {
  background: var(--navy-midnight);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  color: var(--text-light);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h3 {
  font-size: 2rem;
  color: var(--gold-champagne);
  margin-bottom: 1rem;
}

.contact-detail-list {
  list-style: none;
  margin: 2.5rem 0;
}

.contact-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.75rem;
}

.contact-icon-box {
  width: 42px;
  height: 42px;
  background: var(--navy-slate);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-champagne);
  flex-shrink: 0;
}

.contact-detail-text h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}

.contact-detail-text a,
.contact-detail-text p {
  font-size: 1.05rem;
  color: var(--text-light);
  font-weight: 500;
}

.form-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 3rem 2.5rem;
  box-shadow: var(--shadow-md);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy-midnight);
  margin-bottom: 0.45rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  background: var(--bg-alabaster);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--gold-champagne);
  background: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(200, 169, 106, 0.15);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230D1B2A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

.checkbox-group,
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem;
  margin-top: 0.5rem;
}

.custom-checkbox {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.86rem;
  color: var(--text-body);
  cursor: pointer;
}

.custom-checkbox input {
  accent-color: var(--gold-champagne);
  width: 16px;
  height: 16px;
}

.form-privacy-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

/* --- Page Banner Header (Inner Pages) --- */
.page-hero {
  background: var(--navy-midnight);
  color: var(--ivory-white);
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.15), transparent 70%);
}

.page-hero-content {
  max-width: 860px;
}

.page-hero h1 {
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--ivory-white);
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.18rem;
  color: var(--text-light-muted);
}

/* --- Process Timeline --- */
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 28px;
  width: 2px;
  background: var(--gold-border);
}

.timeline-step {
  position: relative;
  padding-left: 75px;
  margin-bottom: 3.5rem;
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 58px;
  height: 58px;
  background: var(--navy-midnight);
  border: 2px solid var(--gold-champagne);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold-champagne);
  box-shadow: var(--shadow-gold);
}

.timeline-card {
  background: var(--bg-card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.timeline-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

/* --- Footer --- */
.footer {
  background: var(--navy-midnight);
  color: var(--text-light-muted);
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--border-card);
}

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

.footer-brand p {
  font-size: 0.92rem;
  margin: 1.25rem 0;
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--gold-champagne);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

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

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

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

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

.footer-compliance {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
  color: #7A899B;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.5rem;
  font-size: 0.84rem;
}

/* --- Sticky Mobile Bar --- */
.sticky-mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 27, 42, 0.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--gold-border);
  padding: 0.75rem 1.25rem;
}

.sticky-mobile-inner {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.sticky-mobile-btn-call {
  flex: 1;
  background: transparent;
  color: var(--gold-champagne);
  border: 1px solid var(--gold-champagne);
  padding: 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.sticky-mobile-btn-book {
  flex: 1.2;
  background: linear-gradient(135deg, var(--gold-champagne), var(--gold-dark));
  color: var(--navy-midnight);
  padding: 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .solutions-grid,
  .why-grid,
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scene-display-panel {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-headline {
    font-size: 2.35rem;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .solutions-grid,
  .why-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

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

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

  .checkbox-group {
    grid-template-columns: 1fr;
  }

  .sticky-mobile-bar {
    display: block;
  }

  body {
    padding-bottom: 70px;
  }

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

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

/* --- Mobile Navigation Drawer --- */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--navy-midnight);
  color: var(--ivory-white);
  z-index: 1100;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
  transition: right 0.35s ease;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--ivory-white);
  font-size: 1.5rem;
  cursor: pointer;
}

.drawer-menu {
  list-style: none;
}

.drawer-item {
  margin-bottom: 1.25rem;
}

.drawer-link {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ivory-white);
  display: block;
}

.drawer-link:hover {
  color: var(--gold-champagne);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}
