/* ===== CSS Variables & Reset ===== */
:root {
  --primary: #00796B;
  --primary-dark: #004D40;
  --primary-light: #4DB6AC;
  --accent: #E65100;
  --accent-light: #FF8F00;
  --text: #212121;
  --text-secondary: #616161;
  --text-light: #9E9E9E;
  --bg: #FFFFFF;
  --bg-light: #F5F7FA;
  --bg-alt: #E8EDEC;
  --border: #E0E0E0;
  --success: #2E7D32;
  --star: #FFC107;
  --shadow: 0 2px 8px rgba(0,0,0,.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,.12);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.16);
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --container: 1200px;
  --transition: .3s ease;
  --font: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

a:hover {
  color: var(--primary-dark);
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
  font-weight: 700;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Section spacing ===== */
.section {
  padding: 80px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text);
  text-align: center;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

/* ===== Header ===== */
.header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 100;
}


.header:not(.header--transparent) .logo img {
  filter: brightness(0);
} 

.header--transparent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,.15);
}

.header--transparent .nav a {
  color: rgba(255,255,255,.9);
}

.header--transparent .nav a::after {
  background: #fff;
}

.header--transparent .nav a:hover {
  color: #fff;
}

.header--transparent .mobile-toggle {
  color: #fff;
}

.header--transparent .nav.active {
  background: rgba(0,30,25,.95);
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  color: var(--text);
  font-weight: 500;
  font-size: .95rem;
  transition: color var(--transition);
  position: relative;
  white-space: nowrap;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav a:hover {
  color: var(--primary);
}

.nav a:hover::after {
  width: 100%;
}

.header--transparent .nav a::after {
  background: #fff;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

.mobile-toggle .material-icons-outlined {
  font-size: 28px;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 70px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('../img/hero.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
}

.hero .container {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 20px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.hero-desc {
  font-size: 1.1rem;
  margin-bottom: 24px;
  opacity: .95;
  max-width: 860px;
  margin-left: auto;
  margin-right: auto;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.hero-badge {
  background: rgba(0,180,120,.35);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  padding: 9px 18px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge .material-icons-outlined {
  font-size: 20px;
  color: #81C784;
}

/* ===== Booking Widget ===== */
.booking-section {
  padding: 60px 0;
  background: var(--bg);
}

.booking-section .container {
  max-width: var(--container);
}

/* ===== How It Works ===== */
.how-it-works {
  background: var(--bg);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(0,121,107,.3);
}

.step-card .material-icons-outlined {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.step-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text);
}

.step-card p {
  color: var(--text-secondary);
  font-size: .92rem;
}

.step-connector {
  position: absolute;
  top: 50px;
  right: -16px;
  color: var(--primary-light);
  font-size: 28px;
}

/* ===== Offers Section ===== */
.offers-section {
  background: var(--bg-light);
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.offer-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 40px 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
  border-top: 4px solid var(--primary);
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.offer-card .icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.offer-card .icon-circle .material-icons-outlined {
  font-size: 32px;
  color: #fff;
}

.offer-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--text);
}

.offer-card p {
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.6;
}

/* ===== Why Rent Section ===== */
.why-rent {
  background: var(--bg);
}

.why-rent-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.why-rent-text p {
  color: var(--text-secondary);
  font-size: 1rem;
  margin-bottom: 20px;
  line-height: 1.7;
}

.why-rent-img {
}

.why-rent-img img {
  width: 400px;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  margin-left: auto;
  margin-right: auto;
}

.why-rent-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.why-rent-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-light);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .88rem;
  font-weight: 500;
  color: var(--primary-dark);
  border: 1px solid var(--border);
}

.why-rent-tag .material-icons-outlined {
  font-size: 18px;
  color: var(--success);
}

/* ===== Prices Section ===== */
.prices-section {
  background: var(--bg-light);
}

.prices-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
  color: var(--text-secondary);
  line-height: 1.7;
}

.price-types {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.price-type-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform var(--transition);
}

.price-type-card:hover {
  transform: translateY(-2px);
}

.price-type-card .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.price-type-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.price-type-card .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
}

.price-type-card .price small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.tips-list {
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.tips-list h3 {
  font-size: 1.15rem;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tips-list h3 .material-icons-outlined {
  color: var(--accent);
}

.tips-list ul {
  list-style: none;
}

.tips-list li {
  padding: 8px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
  font-size: .95rem;
}

.tips-list li .material-icons-outlined {
  font-size: 20px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-table-wrapper {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  font-size: .92rem;
}

.price-table thead {
  background: var(--primary);
  color: #fff;
}

.price-table th {
  padding: 14px 16px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
}

.price-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.price-table tbody tr:hover {
  background: var(--bg-light);
}

.price-table tbody tr:last-child td {
  border-bottom: none;
}

/* ===== Reviews Section ===== */
.reviews-section {
  background: var(--bg);
}

.reviews-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-bottom: 48px;
  padding: 32px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

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

.reviews-score .big-score {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.reviews-score .stars {
  color: var(--star);
  font-size: 1.4rem;
  margin: 8px 0;
}

.reviews-score .count {
  color: var(--text-secondary);
  font-size: .9rem;
}

.reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 240px;
}

.bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-secondary);
}

.bar-row .bar {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.bar-row .bar-fill {
  height: 100%;
  background: var(--star);
  border-radius: 4px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.review-info h4 {
  font-size: .95rem;
  margin-bottom: 2px;
}

.review-info .review-city {
  font-size: .82rem;
  color: var(--text-light);
}

.review-stars {
  color: var(--star);
  margin-bottom: 10px;
  font-size: .9rem;
}

.review-text {
  color: var(--text-secondary);
  font-size: .9rem;
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== Traffic Rules Section ===== */
.traffic-rules {
  background: var(--bg);
}

.traffic-full {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  margin-bottom: 32px;
}

.traffic-full-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.traffic-full-header .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
}

.traffic-full-header h3 {
  font-size: 1.35rem;
  color: var(--text);
}

.traffic-full > p {
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.7;
}

.traffic-full ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 32px;
  list-style: none;
}

.traffic-full ul li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: var(--text-secondary);
  font-size: .93rem;
  padding: 4px 0;
}

.traffic-full ul li .material-icons-outlined {
  font-size: 18px;
  color: var(--success);
  flex-shrink: 0;
  margin-top: 3px;
}

.traffic-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.traffic-col-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  border-top: 4px solid var(--primary);
}

.traffic-col-card .material-icons-outlined {
  font-size: 36px;
  color: var(--primary);
  margin-bottom: 12px;
}

.traffic-col-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.traffic-col-card p {
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.7;
}

/* ===== Attractions Section ===== */
.attractions-section {
  background: var(--bg-light);
}

.attractions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.attraction-card {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border-top: 3px solid var(--primary-light);
}

.attraction-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.attraction-card .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.attraction-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.attraction-desc {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 16px;
}

.attraction-meta {
  display: flex;
  gap: 16px;
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 4px;
}

.attraction-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex: 1;
}

.attraction-meta-item .material-icons-outlined {
  font-size: 18px;
  color: var(--primary);
  flex-shrink: 0;
  margin-bottom: 0;
}

.attraction-meta-text {
  display: flex;
  flex-direction: column;
}

.meta-label {
  font-size: .72rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: .03em;
}

.meta-value {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}

/* ===== Popular Cars Section ===== */
.popular-cars {
  background: var(--bg);
}

.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.car-card {
  background: var(--bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid var(--border);
}

.car-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.car-img {
  height: 200px;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
}

.car-img img {
  max-height: 160px;
  object-fit: contain;
}

.car-category-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--primary);
  color: #fff;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
}

.car-body {
  padding: 24px;
}

.car-body h3 {
  font-size: 1.2rem;
  margin-bottom: 16px;
}

.car-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.car-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .85rem;
  color: var(--text-secondary);
}

.car-feature .material-icons-outlined {
  font-size: 18px;
  color: var(--primary);
}

.car-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.car-price .price-amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}

.car-price .price-amount small {
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-secondary);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}

.btn-primary:hover {
  background: var(--accent-light);
  color: #fff;
  transform: translateY(-1px);
}

.btn-primary .material-icons-outlined {
  font-size: 18px;
}

/* ===== FAQ Section ===== */
.faq-section {
  background: var(--bg-light);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 24px;
  max-width: 100%;
}

.faq-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: var(--font);
  transition: background var(--transition);
}

.faq-question:hover {
  background: var(--bg-light);
}

.faq-question .material-icons-outlined {
  font-size: 24px;
  color: var(--primary);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.faq-item.active .faq-question .material-icons-outlined {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding: 0 24px 18px;
  color: var(--text-secondary);
  font-size: .93rem;
  line-height: 1.7;
}

/* ===== Footer Locations ===== */
.footer-locations {
  background: #152535;
  padding: 48px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-locations-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 32px;
  text-align: center;
}

.footer-locations-title .material-icons-outlined {
  color: var(--accent);
  font-size: 26px;
}

.footer-locations-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px 16px;
}

.footer-locations-grid a {
  color: #9DB8CC;
  font-size: .88rem;
  padding: 6px 0;
  display: block;
  transition: color .3s ease;
}

.footer-locations-grid a:hover {
  color: #fff;
}

/* ===== Footer ===== */
.footer {
  background: #0D1B2A;
  color: #ccc;
  padding: 40px 0 24px;
}

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

.footer-logo {
  margin-bottom: 12px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  opacity: .8;
}

.footer-copyright {
  font-size: .85rem;
  margin-bottom: 20px;
  color: #999;
}

.footer-seo {
  max-width: 700px;
  margin: 0 auto 24px;
  font-size: .82rem;
  color: #888;
  line-height: 1.7;
  text-align: center;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
}

.footer-links a {
  color: #aaa;
  font-size: .85rem;
  transition: color var(--transition);
}

.footer-links a:hover {
  color: #fff;
}

/* ===== Inner Pages ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  padding: 60px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
}

.page-hero p {
  opacity: .9;
  font-size: 1.05rem;
}

.page-content {
  padding: 60px 0;
}

.page-content .container {
  max-width: 1200px;
}

.page-content h2 {
  font-size: 1.5rem;
  margin: 32px 0 12px;
  color: var(--text);
}

.page-content h3 {
  font-size: 1.2rem;
  margin: 24px 0 10px;
  color: var(--text);
}

.page-content p {
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.7;
}

.page-content ul {
  margin-bottom: 16px;
  padding-left: 0;
}

.page-content ul li {
  padding: 6px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-secondary);
}

.page-content ul li .material-icons-outlined {
  color: var(--success);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 3px;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius);
}

.about-feature .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
  flex-shrink: 0;
}

.about-feature h3 {
  font-size: 1.05rem;
  margin: 0 0 6px;
}

.about-feature p {
  font-size: .9rem;
  margin: 0;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}

.contact-info-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-info-card h3 {
  margin: 0 0 20px;
  font-size: 1.2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}

.contact-item .material-icons-outlined {
  font-size: 24px;
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item strong {
  display: block;
  margin-bottom: 2px;
}

.contact-item span, .contact-item a {
  color: var(--text-secondary);
  font-size: .93rem;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
}

/* Privacy page */
.privacy-content h2 {
  margin-top: 40px;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

/* Category pages */
.category-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.category-feature-card {
  background: var(--bg-light);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  border-top: 4px solid var(--primary);
}

.category-feature-card .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}

.category-feature-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.category-feature-card p {
  font-size: .88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.category-why {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 40px 0;
}

.category-why h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.category-why p {
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.category-why ul {
  list-style: none;
}

.category-why ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  color: var(--text-secondary);
}

.category-why ul li .material-icons-outlined {
  color: var(--success);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-connector {
    display: none;
  }

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

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

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

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

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

  .traffic-cols {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 48px 0;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--bg);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    z-index: 200;
  }

  .nav a {
    color: var(--text);
  }

  .nav.active {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 420px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-desc {
    font-size: 1rem;
  }

  .hero-badges {
    gap: 10px;
  }

  .hero-badge {
    padding: 8px 14px;
    font-size: .82rem;
  }

  .steps-grid,
  .offers-grid,
  .reviews-grid,
  .attractions-grid,
  .cars-grid {
    grid-template-columns: 1fr;
  }

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

  .reviews-overview {
    flex-direction: column;
    gap: 20px;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .car-features {
    grid-template-columns: 1fr 1fr;
  }

  .why-rent-inner {
    grid-template-columns: 1fr;
  }

  .traffic-full ul {
    grid-template-columns: 1fr;
  }

  .traffic-cols {
    grid-template-columns: 1fr;
  }

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

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

  .category-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .hero-badge {
    padding: 6px 12px;
    font-size: .78rem;
  }

  .price-types {
    grid-template-columns: 1fr;
  }

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