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

:root {
  --color-primary: #0b192c;
  --color-primary-dark: #060e19;
  --color-primary-blue: #1e3e62;
  --color-accent-gold: #ff6500;
  --color-accent-amber: #e65100;
  --color-accent-emerald: #10b981;
  --color-accent-teal: #06b6d4;
  --color-accent-blue: #2563eb;
  --color-surface: #ffffff;
  --color-bg-light: #f8fafc;
  --color-text-dark: #0f172a;
  --color-text-muted: #64748b;
  --color-text-light: #f8fafc;
  --color-border: #e2e8f0;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 28px rgba(0,0,0,0.14);
  --shadow-glow: 0 0 20px rgba(255,101,0,0.3);
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-dark);
  background-color: var(--color-bg-light);
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

h1 { font-size: clamp(2.1rem, 5vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.25rem); letter-spacing: -0.01em; margin-top: 1rem; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.45rem); margin-top: 0.75rem; }

p { margin-bottom: 1.25rem; color: #334155; }

a { color: var(--color-accent-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--color-accent-gold); }

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.text-center { text-align: center; }
.section-padding { padding: 4rem 0; }

/* Header & Navigation */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--color-surface);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid var(--color-border);
}

.top-bar {
  background: var(--color-primary);
  color: var(--color-text-light);
  padding: 0.45rem 0;
  font-size: 0.85rem;
  border-bottom: 2px solid var(--color-accent-gold);
}

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

.license-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: #cbd5e1;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--color-accent-emerald);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(16, 185, 129, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.phone-link {
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.phone-link:hover { color: var(--color-accent-gold); }

.nav-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-blue));
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1.1;
}

.brand-name strong {
  color: var(--color-accent-gold);
}

.brand-tagline {
  font-size: 0.725rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  align-items: center;
}

.nav-item { position: relative; }
.nav-link {
  font-weight: 600;
  color: var(--color-primary);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}
.nav-link:hover { color: var(--color-accent-gold); }

.has-dropdown > .nav-link::after {
  content: '▾';
  font-size: 0.8rem;
  transition: transform 0.2s ease;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background-color: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent-gold);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1100;
}

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

.dropdown-link {
  display: block;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  color: var(--color-primary);
  font-weight: 500;
}
.dropdown-link:hover {
  background-color: var(--color-bg-light);
  color: var(--color-accent-gold);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-primary);
  margin: 5px 0;
  transition: var(--transition);
}

/* Interior Subpage Grid Layout */
.inner-layout-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 991px) {
  .inner-layout-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.main-content-col {
  min-width: 0;
  width: 100%;
}

.main-article {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

/* Dynamic Inner Hero Section */
.inner-hero-section {
  padding: 3.5rem 0 3rem;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 60%, #1e3e62 100%);
  color: #ffffff;
  border-bottom: 2px solid var(--color-accent-gold);
}

.inner-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 899px) {
  .inner-hero-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

.inner-hero-title {
  color: #ffffff !important;
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  margin-top: 0.5rem;
  margin-bottom: 0.75rem;
}

.inner-hero-lead {
  color: #cbd5e1 !important;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  max-width: 680px;
}

.inner-hero-preview-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 101, 0, 0.4) !important;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 0 30px rgba(255, 101, 0, 0.2);
  color: #ffffff !important;
}

.preview-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 0.85rem;
  margin-bottom: 0.85rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
}

.preview-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-amber));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.preview-specs-list {
  list-style: none;
  color: #e2e8f0 !important;
  font-size: 0.875rem;
  padding-left: 0 !important;
}

.preview-specs-list li {
  color: #e2e8f0 !important;
  margin-bottom: 0.5rem;
  font-weight: 500;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.preview-specs-list li strong {
  color: #ffffff !important;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: 0.775rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.badge-amber { background: #fef3c7; color: #b45309; border: 1px solid #fde68a; }
.badge-emerald { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.3); }
.badge-primary { background: rgba(6, 182, 212, 0.15); color: #06b6d4; border: 1px solid rgba(6, 182, 212, 0.3); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-heading);
  text-align: center;
  text-decoration: none;
}

.btn-accent {
  background: var(--color-accent-gold);
  color: #ffffff !important;
  box-shadow: 0 4px 14px rgba(255, 101, 0, 0.35);
}

.btn-accent:hover {
  background: var(--color-accent-amber);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 101, 0, 0.5);
  color: #ffffff !important;
}

.btn-outline {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff !important;
  border-color: #ffffff;
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary) !important;
  border: 1.5px solid var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: #ffffff !important;
}

.btn-xs { padding: 0.35rem 0.75rem; font-size: 0.8rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.85rem; }
.btn-block { width: 100%; display: flex; text-align: center; }

/* Sidebar Layout & Dark Sidebar Card Styling */
.sidebar-sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.sidebar-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 101, 0, 0.4) !important;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  color: #ffffff !important;
}

.sidebar-card h3, .sidebar-card h4 {
  color: #ffffff !important;
}

.sidebar-card p {
  color: #cbd5e1 !important;
}

/* Homepage Hero Section */
.hero-section {
  padding: 4.5rem 0 4rem;
  background: linear-gradient(135deg, #090d16 0%, #0f172a 60%, #1e3e62 100%);
  color: #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
}

@media (max-width: 899px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.hero-content h1 { color: #ffffff !important; }
.hero-subtitle { color: #cbd5e1 !important; font-size: 1.15rem; margin-bottom: 1.75rem; }

.hero-badge-group {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  margin-top: 1.75rem;
  flex-wrap: wrap;
}

.hero-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
  border: 1px solid rgba(255, 101, 0, 0.4) !important;
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: 0 0 30px rgba(255, 101, 0, 0.25);
  color: #ffffff !important;
}

.hero-card h3 {
  color: #ffffff !important;
  font-size: 1.35rem;
  margin-top: 0;
  margin-bottom: 0.4rem;
}

.hero-card p {
  color: #cbd5e1 !important;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.25rem 0;
}

.hero-card-list li {
  color: #e2e8f0 !important;
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.hero-card-list li strong {
  color: #ffffff !important;
}

/* Trust Bar */
.trust-bar {
  background: #ffffff;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.trust-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  width: 100%;
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 0.925rem;
  white-space: nowrap;
}

.trust-icon { font-size: 1.25rem; color: var(--color-accent-gold); }

/* Strict 3x2 Services Grid for Desktop */
.services-section { margin-bottom: 4rem; }

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

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 639px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

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

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-accent-gold);
}

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

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

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

.service-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(8px);
}

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

.service-card-body h3 { font-size: 1.3rem; margin-bottom: 0.6rem; line-height: 1.25; margin-top: 0; }
.service-card-body h3 a { color: var(--color-primary); }
.service-card-body h3 a:hover { color: var(--color-accent-gold); }
.service-card-body p { font-size: 0.95rem; color: #475569; margin-bottom: 1.5rem; flex-grow: 1; }
.service-card-body .btn { margin-top: auto; }

/* RGV Local Nuance Card & 2x2 Feature Grid */
.nuance-section { margin-bottom: 4rem; }

.nuance-card {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 101, 0, 0.3);
}

.nuance-card h2 {
  color: #ffffff !important;
  text-align: center;
  margin-bottom: 0.75rem;
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
}

.nuance-card > p {
  color: #cbd5e1 !important;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 2.5rem auto;
  font-size: 1.05rem;
}

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

@media (max-width: 768px) {
  .nuance-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.nuance-item {
  display: flex;
  gap: 1.25rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 1.75rem;
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.nuance-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--color-accent-gold);
}

.nuance-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.nuance-item h4 {
  color: #ffffff !important;
  margin-bottom: 0.4rem;
  font-size: 1.15rem;
}

.nuance-item p {
  color: #cbd5e1 !important;
  font-size: 0.925rem;
  margin-bottom: 0;
  line-height: 1.55;
}

/* 4-Step Process Section Grid */
.process-section { margin-bottom: 4rem; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (max-width: 991px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 599px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

.process-card {
  background: var(--color-surface);
  border-radius: var(--radius-md);
  padding: 2rem 1.5rem;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.process-step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-accent-gold), var(--color-accent-amber));
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 12px rgba(255, 101, 0, 0.3);
}

.process-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  color: var(--color-primary);
  margin-top: 0;
}

.process-card p {
  font-size: 0.9rem;
  color: #475569;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Cost Table */
.table-responsive {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  background-color: var(--color-surface);
  text-align: left;
  font-size: 0.95rem;
}

th, td { padding: 1.1rem 1.25rem; border-bottom: 1px solid var(--color-border); }
th { background-color: var(--color-primary); color: #ffffff; font-family: var(--font-heading); font-weight: 600; }
tr:nth-child(even) { background-color: #f8fafc; }
tr:hover { background-color: #f1f5f9; }

.price-tag { font-weight: 700; color: #16a34a; }

/* FAQ Accordion Component */
.faq-accordion { margin: 2rem 0; }
.faq-item {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: var(--color-surface);
  border: none;
  padding: 1.15rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover { background: var(--color-bg-light); }
.faq-icon { font-size: 1.2rem; color: var(--color-accent-gold); transition: transform 0.2s ease; }
.faq-item.active .faq-icon { transform: rotate(180deg); }
.faq-answer { display: none; padding: 0 1.25rem 1.25rem 1.25rem; color: #475569; font-size: 0.95rem; border-top: 1px solid #f1f5f9; }
.faq-item.active .faq-answer { display: block; }

/* CTA Banner Component */
.cta-banner {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-blue) 100%);
  color: #ffffff;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin: 3rem 0;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 { color: #ffffff; margin-top: 0; font-size: 2.2rem; }
.cta-banner p { color: #cbd5e1; max-width: 650px; margin: 0 auto 1.75rem auto; font-size: 1.1rem; }

/* Footer */
.site-footer {
  background: var(--color-primary);
  color: #94a3b8;
  padding-top: 4rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--color-accent-gold);
}

.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col a { color: #94a3b8; font-size: 0.9rem; }
.footer-col a:hover { color: var(--color-accent-gold); }

.footer-bottom {
  background: var(--color-primary-dark);
  padding: 1.5rem 0;
  font-size: 0.85rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Mobile Media Queries & Drawer Navigation Fixes */
@media (min-width: 992px) {
  .mobile-menu-cta { display: none; }
  .mobile-menu-footer { display: none; }
  .desktop-only-btn { display: inline-flex; }
  .desktop-only { display: block; }
}

@media (max-width: 991px) {
  .desktop-only { display: none !important; }
  .desktop-only-btn { display: none !important; }
  .header-action-group { display: none !important; }
  .mobile-call-btn { display: none !important; }

  .mobile-toggle { display: block; }

  .container {
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
  }

  .section-padding {
    padding: 2.5rem 0 !important;
  }

  .main-article {
    padding: 1.5rem 1.25rem !important;
    border-radius: var(--radius-md) !important;
  }

  .top-bar-inner {
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
  }
  
  .license-badge {
    font-size: 0.775rem;
    text-align: center;
  }
  
  .header-contacts {
    font-size: 0.8rem;
  }
  
  .brand-name {
    font-size: 1.1rem;
  }
  
  .brand-tagline {
    font-size: 0.65rem;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    padding: 1.25rem 1.5rem;
    border-top: 3px solid var(--color-accent-gold);
    z-index: 2000;
    max-height: 80vh;
    overflow-y: auto;
  }
  
  .site-header.nav-open .main-nav { display: block; }
  
  .mobile-menu-cta {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--color-border);
  }
  
  .nav-menu {
    flex-direction: column;
    gap: 0.25rem;
    align-items: stretch;
    width: 100%;
  }
  
  .nav-item {
    width: 100%;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 0.5rem;
  }
  
  .nav-link {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0.6rem 0;
  }
  
  /* Fix for Mobile Dropdown Menu */
  .dropdown-menu {
    position: static !important;
    width: 100% !important;
    box-shadow: none !important;
    border: none !important;
    border-left: 3px solid var(--color-accent-gold) !important;
    border-radius: 0 8px 8px 0 !important;
    padding: 0.4rem 0 0.4rem 0.85rem !important;
    margin: 0.4rem 0 0.6rem 0 !important;
    background: #f8fafc !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
    box-sizing: border-box !important;
  }
  
  .dropdown-menu li {
    margin-bottom: 0.25rem;
  }
  
  .dropdown-link {
    display: block !important;
    padding: 0.45rem 0.6rem !important;
    font-size: 0.925rem !important;
    color: #1e293b !important;
    font-weight: 600 !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
  
  .dropdown-link:hover {
    color: var(--color-accent-gold) !important;
    background: #f1f5f9 !important;
  }
}
