/* Inner pages — Aria Black Car Service */
body.inner-page {
  overflow-x: hidden;
}

body.inner-page .navbar {
  background: rgba(5, 5, 5, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(201, 169, 98, 0.1);
}

.page-main {
  padding-top: var(--nav-height);
  min-height: 60vh;
}

/* Nav dropdowns */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: " ▾";
  font-size: 0.6em;
  opacity: 0.6;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  max-height: 320px;
  overflow-y: auto;
  background: rgba(10, 10, 10, 0.98);
  border: 1px solid var(--gold-dim);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 100;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 0.5rem 1.25rem;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

.nav-dropdown-menu a::after {
  display: none;
}

.nav-dropdown-menu a:hover {
  background: rgba(201, 169, 98, 0.08);
  color: var(--gold);
}

/* Breadcrumbs */
.breadcrumbs {
  padding: 1.25rem 0;
  font-size: 0.8rem;
  color: var(--gray-500);
  max-width: 1280px;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.breadcrumbs a {
  color: var(--gray-400);
  transition: color var(--transition);
}

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

.bc-sep {
  margin: 0 0.5rem;
  opacity: 0.4;
}

/* Page hero */
.page-hero {
  padding: 3rem 0 2.5rem;
  background: linear-gradient(180deg, rgba(201, 169, 98, 0.06) 0%, transparent 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 48rem;
}

.page-hero-sub {
  margin-top: 1rem;
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--gray-400);
  max-width: 40rem;
}

.page-section {
  padding: 3rem 0 4rem;
}

.page-section .narrow,
.prose.narrow {
  max-width: 48rem;
}

/* Prose */
.prose {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  line-height: 1.75;
}

.prose .lead {
  font-size: 1.15rem;
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.prose h2 {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 500;
  margin: 2.5rem 0 1rem;
  color: var(--white);
}

.prose h3 {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  margin: 1.75rem 0 0.75rem;
  color: var(--gold-light);
}

.prose p {
  margin-bottom: 1rem;
}

.prose a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.prose-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .prose-grid {
    grid-template-columns: 1fr 300px;
    align-items: start;
  }
}

.updated-badge {
  font-size: 0.8rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

/* Sidebar */
.page-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sidebar-card {
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
}

.sidebar-card h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.sidebar-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 1rem;
}

.sidebar-link {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: var(--gray-400);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color var(--transition);
}

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

/* Card grid (hub pages) */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.link-card {
  display: block;
  padding: 1.75rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 1rem;
  transition: var(--transition);
}

.link-card:hover {
  border-color: var(--gold-dim);
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.04);
}

.link-card h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  transition: color var(--transition);
}

.link-card:hover h3 {
  color: var(--gold);
}

.link-card p {
  font-size: 0.85rem;
  color: var(--gray-500);
  font-weight: 300;
  line-height: 1.5;
}

.link-card-arrow {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transition: var(--transition);
}

.link-card:hover .link-card-arrow {
  opacity: 1;
}

.link-card-tag {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* Lists */
.check-list {
  list-style: none;
  margin: 1rem 0;
}

.check-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.6rem;
  font-weight: 300;
  color: var(--gray-400);
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.85rem;
}

.steps-list {
  margin: 1rem 0 1rem 1.25rem;
  color: var(--gray-400);
  font-weight: 300;
}

.steps-list li {
  margin-bottom: 0.75rem;
}

/* Stat strip */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: 2rem;
  background: rgba(201, 169, 98, 0.06);
  border: 1px solid var(--gold-dim);
  border-radius: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .stat-strip {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-strip strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--gold);
}

.stat-strip span {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gray-500);
}

/* Tables on inner pages */
.page-section .pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 2rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 0.75rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-section .pricing-table th,
.page-section .pricing-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-size: 0.9rem;
}

.page-section .pricing-table th {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  background: rgba(0, 0, 0, 0.3);
}

.page-section .pricing-table td:last-child {
  color: var(--gold);
  font-family: var(--font-serif);
}

.compare-table td:first-child {
  font-weight: 500;
  color: var(--white);
}

/* Page CTA */
.page-cta {
  padding: 2rem 0 5rem;
}

.page-cta .cta-box {
  text-align: center;
}

/* Blog category pills on hub */
.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.blog-filter {
  padding: 0.35rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: var(--gray-500);
}

.book-embed-section .booking-iframe {
  width: 100%;
  min-height: 75vh;
  border: 1px solid var(--gold-dim);
  border-radius: 0.75rem;
  background: #fff;
}
