/* PAGE-SPECIFIC STYLES */

.page-hero {
  padding: 8rem 0 4rem;
  background: var(--off-white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .78rem;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
}
.page-breadcrumb a { color: var(--teal); }
.page-breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 em { font-style: italic; color: var(--teal); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 560px;
  margin-top: 1rem;
}

.page-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}

.page-main h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 2rem 0 .75rem;
  line-height: 1.2;
}
.page-main h2:first-child { margin-top: 0; }
.page-main p {
  font-size: .95rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: 1rem;
}
.page-list {
  list-style: none;
  margin: .5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.page-list li {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.6;
  padding-left: 1.25rem;
  position: relative;
}
.page-list li::before {
  content: '';
  position: absolute;
  left: 0; top: .55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--teal);
}

.price-table {
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 10px;
  overflow: hidden;
  margin: 1rem 0 1.25rem;
}
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .85rem 1.25rem;
  font-size: .88rem;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  gap: 1rem;
}
.price-row:last-child { border-bottom: none; }
.price-row:nth-child(even) { background: var(--off-white); }
.price { font-family: var(--font-display); font-size: 1rem; color: var(--teal); white-space: nowrap; }

/* SIDEBAR */
.page-sidebar { position: sticky; top: 6rem; display: flex; flex-direction: column; gap: 1.25rem; }

.sidebar-cta-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 14px;
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.sidebar-cta-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: .5rem;
}
.sidebar-cta-card p {
  font-size: .83rem;
  color: var(--gray-500);
  line-height: 1.6;
}
.sidebar-features {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.sidebar-feature {
  font-size: .78rem;
  color: var(--dark-teal);
  font-weight: 500;
}

.sidebar-nav-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.sidebar-nav-card .sidebar-cta-title { font-size: 1rem; margin-bottom: .25rem; }
.sidebar-nav-link {
  font-size: .85rem;
  color: var(--gray-700);
  transition: color var(--transition-fast);
  padding: .25rem 0;
}
.sidebar-nav-link:hover { color: var(--teal); }

@media (max-width: 900px) {
  .page-content { grid-template-columns: 1fr; }
  .page-sidebar { position: static; }
}
@media (max-width: 768px) {
  .page-hero { padding: 7rem 0 3rem; }
}

/* CAR RENTAL CARDS (замість таблиці — мобільно-адаптивні) */
.car-rental-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 1.5rem;
}
.car-rental-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: .5rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-fast);
}
.car-rental-card:hover { box-shadow: var(--shadow-md); }
.car-rental-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
}
.car-rental-sub {
  font-size: .78rem;
  color: var(--teal);
  font-weight: 500;
  font-style: italic;
}
.car-rental-uses {
  font-size: .82rem;
  color: var(--gray-500);
  line-height: 1.6;
  flex: 1;
}
.car-rental-links {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-top: .5rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.car-rental-links span {
  font-size: .78rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.car-rental-links strong { color: var(--dark-teal); }

@media (max-width: 860px) {
  .car-rental-cards { grid-template-columns: 1fr; }
}