/* ==========================================================================
   CarFyAntalya.com - Car Rental Styles
   Design: Dark Navy + Warm Amber | Mediterranean Premium
   Based on kutaisicar.com design
   ========================================================================== */

/* ---- CSS Variables ---- */
:root {
  --dark: #061D30;
  --dark-medium: #0B2A44;
  --dark-light: #12395C;
  --amber: #1B9AD4;
  --amber-hover: #1478AB;
  --amber-light: #DBEEFF;
  --amber-bg: #EFF8FF;
  --amber2: #0D6A9F;
  --gradient-amber: linear-gradient(135deg, #1B9AD4 0%, #1478AB 100%);
  --gradient-dark: linear-gradient(135deg, #061D30 0%, #12395C 100%);
  --gradient-hero: linear-gradient(160deg, rgba(6,29,48,0.68) 0%, rgba(18,57,92,0.72) 50%, rgba(6,29,48,0.70) 100%);
  --white: #FFFFFF;
  --bg: #FFFFFF;
  --bg-alt: #F4F8FB;
  --bg-cream: #EFF8FF;
  --text: #1E293B;
  --text-secondary: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px rgba(0,0,0,0.06), 0 4px 16px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 12px 32px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.1), 0 24px 64px rgba(0,0,0,0.1);
  --shadow-amber: 0 4px 24px rgba(27,154,212,0.35);
  --container: 1200px;
  --header-h: 80px;
  --section-pad: 90px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px; line-height: 1.7; color: var(--text); background: var(--bg);
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--amber); text-decoration: none; transition: color var(--transition); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { line-height: 1.3; font-weight: 700; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.35rem); }
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: var(--section-pad) 0; }
.section-alt { background: var(--bg-alt); }
.section-cream { background: var(--bg-cream); }
.section-dark { background: var(--dark); color: var(--white); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-header h2 { margin-bottom: 16px; position: relative; display: inline-block; }
.section-header h2::after {
  content: ''; position: absolute; bottom: -12px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 4px; border-radius: 2px; background: var(--gradient-amber);
}
.section-header p { color: var(--text-secondary); max-width: 640px; margin: 24px auto 0; font-size: 1.02rem; }

.text-center { text-align: center; }
.text-secondary { color: var(--text-secondary); }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================================ HEADER */
.site-header { width: 100%; z-index: 100; background: var(--dark); position: relative; }
.page-home .site-header { position: absolute; top: 0; left: 0; background: transparent; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: var(--header-h); }

.logo { display: flex; align-items: center; gap: 10px; color: var(--white); font-size: 1.4rem; font-weight: 800; }
.logo img { height: 42px; width: auto; }

.nav-menu { display: flex; align-items: center; gap: 28px; }
.nav-menu a {
  color: rgba(255,255,255,0.85); font-weight: 500; font-size: 0.9rem;
  position: relative; padding: 4px 0; white-space: nowrap;
}
.nav-menu a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--amber); border-radius: 1px; transition: width var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--amber); }
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); margin: 6px 0; border-radius: 2px; transition: var(--transition); }
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

.nav-menu.open {
  display: flex; flex-direction: column; position: absolute;
  top: var(--header-h); left: 0; right: 0;
  background: var(--dark); padding: 20px 24px; gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.08); z-index: 200;
}

/* ============================================================ HERO */
.hero { position: relative; min-height: 460px; display: flex; align-items: center; overflow: hidden; background: var(--dark); }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; background: var(--gradient-hero); z-index: 1; }
.hero::before {
  content: ''; position: absolute; top: -20%; right: -8%;
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(232,112,58,0.07) 0%, transparent 70%);
  border-radius: 50%; z-index: 2; pointer-events: none;
}
.hero-content { position: relative; z-index: 3; padding-top: calc(var(--header-h) + 32px); padding-bottom: 44px; }
.hero h1 { color: var(--white); font-weight: 800; line-height: 1.15; margin-bottom: 16px; }
.hero h1 .highlight { color: var(--amber); }
.hero-subtitle { color: rgba(255,255,255,0.88); font-size: clamp(0.97rem, 2vw, 1.12rem); margin-bottom: 26px; max-width: 760px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 9px 18px; border-radius: 50px; color: var(--white); font-size: 0.88rem; font-weight: 500;
}
.hero-badge .material-icons-outlined { color: var(--amber); font-size: 19px; }
.hero-badge:hover { background: rgba(232,112,58,0.15); border-color: rgba(232,112,58,0.3); }

/* ============================================================ BOOKING */
.booking-section { padding: 60px 0 40px; background: var(--white); }
.booking-widget { width: 100%; min-height: 400px; }

/* ============================================================ STEPS */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 52px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--amber) 0%, var(--amber-light) 50%, var(--amber) 100%);
  opacity: 0.45; z-index: 0;
}
.step-card { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%; background: var(--gradient-amber);
  color: var(--white); font-size: 1.5rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; box-shadow: var(--shadow-amber); position: relative;
}
.step-number::after { content: ''; position: absolute; inset: -6px; border-radius: 50%; border: 2px dashed rgba(232,112,58,0.3); }
.step-card h3 { margin-bottom: 10px; font-size: 1.06rem; }
.step-card p { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; }

/* ============================================================ OFFERS */
.offers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.offer-card {
  background: var(--white); border-radius: var(--radius); padding: 36px 28px;
  position: relative; overflow: hidden;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
}
.offer-card::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--gradient-amber); }
.offer-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.offer-icon { width: 56px; height: 56px; border-radius: 12px; background: var(--amber-bg); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.offer-icon .material-icons-outlined { font-size: 28px; color: var(--amber); }
.offer-card h3 { margin-bottom: 12px; font-size: 1.08rem; }
.offer-card p { color: var(--text-secondary); font-size: 0.92rem; }

/* ============================================================ WHY RENT */
.why-rent-content { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.why-rent-text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 1rem; }
.why-rent-image img { width: 400px; height: auto; border-radius: var(--radius); box-shadow: var(--shadow-md); margin: 0 auto; }
.why-rent-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 48px; }
.why-rent-item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 10px;
  padding: 20px 12px; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow); transition: transform var(--transition);
}
.why-rent-item:hover { transform: translateY(-4px); }
.icon-circle { width: 52px; height: 52px; border-radius: 50%; background: var(--amber-bg); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-circle .material-icons-outlined { color: var(--amber); font-size: 24px; }
.why-rent-item h4 { font-size: 0.94rem; margin-bottom: 2px; }
.why-rent-item p { color: var(--text-secondary); font-size: 0.83rem; margin-bottom: 0; }

/* ============================================================ PRICING */
.price-types { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 48px; }
.price-type-card {
  background: var(--white); border-radius: var(--radius); padding: 28px 20px; text-align: center;
  box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition);
  position: relative; overflow: hidden;
}
.price-type-card.featured { border: 2px solid var(--amber); }
.price-type-card.featured::after {
  content: 'Popular'; position: absolute; top: 12px; right: -28px;
  background: var(--gradient-amber); color: var(--white); font-size: 0.7rem; font-weight: 700;
  padding: 4px 32px; transform: rotate(45deg); text-transform: uppercase; letter-spacing: 0.5px;
}
.price-type-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-type-icon { font-size: 2rem; margin-bottom: 12px; }
.price-type-card h3 { font-size: 1rem; margin-bottom: 8px; }
.price-from { font-size: 1.9rem; font-weight: 800; color: var(--amber); line-height: 1; }
.price-from span { font-size: 0.82rem; font-weight: 400; color: var(--text-secondary); }

.price-recommendations { margin: 40px 0; }
.price-recommendations h3 { margin-bottom: 16px; }
.price-rec-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.price-rec-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text-secondary); }
.price-rec-list .material-icons-outlined { color: var(--amber); font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.price-table-wrap { margin-top: 48px; overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow); }
.price-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.92rem; }
.price-table thead { background: var(--dark); color: var(--white); }
.price-table th { padding: 15px 20px; text-align: left; font-weight: 600; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; white-space: nowrap; }
.price-table td { padding: 13px 20px; border-bottom: 1px solid var(--border-light); }
.price-table tbody tr:nth-child(even) { background: var(--bg-alt); }
.price-table tbody tr:hover { background: var(--amber-bg); }
.price-table td:last-child, .price-table td:nth-last-child(2) { font-weight: 600; color: var(--amber2); }

/* ============================================================ REVIEWS */
.reviews-overview {
  display: flex; align-items: center; justify-content: center;
  gap: 32px; margin-bottom: 48px; padding: 32px;
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow);
}
.reviews-score { text-align: center; }
.reviews-score .big-number { font-size: 4rem; font-weight: 800; color: var(--amber); line-height: 1; }
.reviews-score .stars { color: var(--amber); font-size: 1.25rem; margin: 8px 0 4px; letter-spacing: 2px; }
.reviews-score p { color: var(--text-secondary); font-size: 0.9rem; }
.review-meta-info { text-align: left; }
.review-meta-info p { color: var(--text-secondary); font-size: 0.94rem; margin-bottom: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.review-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform var(--transition); position: relative; }
.review-card:hover { transform: translateY(-4px); }
.review-card::before { content: '\201C'; position: absolute; top: 16px; right: 22px; font-size: 4rem; line-height: 1; color: var(--amber-light); font-family: Georgia, serif; }
.review-stars { color: var(--amber); font-size: 1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.92rem; color: var(--text-secondary); margin-bottom: 16px; line-height: 1.7; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--gradient-amber); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.review-author-info strong { display: block; font-size: 0.92rem; }
.review-author-info span { font-size: 0.82rem; color: var(--text-light); }

/* ============================================================ TRAFFIC RULES */
.traffic-full { margin-bottom: 28px; }
.traffic-card { background: var(--white); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.traffic-card h3 { margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.traffic-card h3 .material-icons-outlined { color: var(--amber); }
.traffic-card p { color: var(--text-secondary); font-size: 0.93rem; }
.traffic-card ul { list-style: none; padding: 0; margin-top: 12px; }
.traffic-card ul li { position: relative; padding: 7px 0 7px 26px; color: var(--text-secondary); font-size: 0.92rem; }
.traffic-card ul li::before { content: ''; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--amber); }
.traffic-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ============================================================ LANDMARKS */
.landmarks-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.landmark-card { background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); position: relative; overflow: hidden; }
.landmark-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gradient-amber); transform: scaleX(0); transition: transform var(--transition); }
.landmark-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.landmark-card:hover::after { transform: scaleX(1); }
.landmark-icon { font-size: 2.2rem; margin-bottom: 14px; }
.landmark-card h3 { margin-bottom: 10px; font-size: 1.02rem; }
.landmark-card p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 14px; }
.landmark-meta { display: flex; gap: 16px; font-size: 0.8rem; color: var(--text-light); flex-wrap: wrap; }
.landmark-meta span { display: flex; align-items: center; gap: 4px; }
.landmark-meta .material-icons-outlined { font-size: 16px; color: var(--amber); }

/* ============================================================ TOP CARS */
.top-cars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.car-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform var(--transition), box-shadow var(--transition); color: var(--text); }
.car-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.car-card-img { position: relative; padding: 24px 24px 0; background: var(--white); display: flex; align-items: center; justify-content: center; min-height: 180px; }
.car-card-img img { max-height: 155px; object-fit: contain; width: auto; }
.car-category-badge { position: absolute; top: 16px; left: 16px; background: var(--gradient-amber); color: var(--white); font-size: 0.72rem; font-weight: 600; padding: 4px 12px; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
.car-card-body { padding: 24px; }
.car-card-body h3 { font-size: 1.2rem; margin-bottom: 14px; color: var(--text); }
.car-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 20px; }
.car-spec { display: flex; align-items: center; gap: 8px; font-size: 0.86rem; color: var(--text-secondary); }
.car-spec .material-icons-outlined { font-size: 18px; color: var(--amber); }
.car-price-row { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; border-top: 1px solid var(--border-light); }
.car-price { font-size: 1.5rem; font-weight: 800; color: var(--amber); }
.car-price span { font-size: 0.79rem; font-weight: 400; color: var(--text-secondary); }
.btn-view-deal { display: inline-flex; align-items: center; gap: 6px; background: var(--gradient-amber); color: var(--white); padding: 10px 22px; border-radius: 50px; font-weight: 600; font-size: 0.87rem; border: none; cursor: pointer; transition: transform var(--transition), box-shadow var(--transition); text-decoration: none; }
.btn-view-deal:hover { transform: translateY(-2px); box-shadow: var(--shadow-amber); color: var(--white); }
.btn-view-deal .material-icons-outlined { font-size: 17px; }

/* ============================================================ FAQ */
.faq-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; transition: border-color var(--transition); }
.faq-item:hover { border-color: var(--amber); }
.faq-question { width: 100%; padding: 18px 22px; background: var(--white); border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; font-size: 0.95rem; font-weight: 600; color: var(--text); text-align: left; font-family: inherit; transition: background var(--transition); }
.faq-question:hover { background: var(--bg-alt); }
.faq-question .material-icons-outlined { font-size: 22px; color: var(--amber); 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 0.4s ease; }
.faq-item.active .faq-answer { max-height: 600px; }
.faq-answer-inner { padding: 0 22px 18px; color: var(--text-secondary); font-size: 0.92rem; line-height: 1.75; }

/* ============================================================ FOOTER LOCATIONS */
.footer-locations { background: #0D1929; padding: 56px 0 40px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer-locations-title { text-align: center; color: var(--white); font-size: 1.35rem; margin-bottom: 36px; display: flex; align-items: center; justify-content: center; gap: 10px; }
.footer-locations-title .material-icons-outlined { color: var(--amber); font-size: 26px; }
.locations-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 16px; }
.locations-grid li a { color: rgba(255,255,255,0.55); font-size: 0.87rem; display: block; padding: 5px 0; transition: color var(--transition); }
.locations-grid li a:hover { color: var(--amber); }

/* ============================================================ FOOTER */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.65); padding: 40px 0 24px; }
.footer-top { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 18px; }
.footer-top .logo { color: var(--white); }
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-seo-text { max-width: 520px; font-size: 0.83rem; line-height: 1.7; color: rgba(255,255,255,0.45); }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--amber); }
.footer-bottom { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.35); padding-top: 4px; }

/* ============================================================ INNER PAGES */
.page-hero { background: var(--gradient-dark); color: var(--white); padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: var(--gradient-amber); }
.page-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.4rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.02rem; }
.page-hero .material-icons-outlined { font-size: 48px; color: var(--amber); margin-bottom: 16px; }

.page-content { padding: 60px 0; }
.page-content .container { max-width: 1200px; }
.page-content h2 { font-size: 1.45rem; margin: 32px 0 12px; }
.page-content h3 { font-size: 1.12rem; margin: 22px 0 10px; }
.page-content p { color: var(--text-secondary); margin-bottom: 16px; line-height: 1.75; }
.page-content ul { margin-bottom: 16px; }
.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(--amber); font-size: 20px; flex-shrink: 0; margin-top: 2px; }

.about-features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin: 28px 0; }
.about-feature { display: flex; gap: 16px; padding: 22px; background: var(--bg-cream); border-radius: var(--radius); border-left: 3px solid var(--amber); }
.about-feature .material-icons-outlined { font-size: 28px; color: var(--amber); flex-shrink: 0; }
.about-feature h3 { font-size: 0.97rem; margin: 0 0 5px; }
.about-feature p { font-size: 0.87rem; margin: 0; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 32px; }
.contact-info-card { background: var(--bg-cream); border-radius: var(--radius); padding: 32px; }
.contact-info-card h3 { margin: 0 0 20px; font-size: 1.1rem; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 20px; }
.contact-item .material-icons-outlined { font-size: 24px; color: var(--amber); flex-shrink: 0; margin-top: 2px; }
.contact-item strong { display: block; margin-bottom: 2px; font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text-light); }
.contact-item span, .contact-item a { color: var(--text-secondary); font-size: 0.95rem; }
.contact-item a:hover { color: var(--amber); }
.map-wrapper { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrapper iframe { width: 100%; min-height: 400px; border: 0; display: block; }

/* ============================================================ RESPONSIVE */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .why-rent-list { grid-template-columns: repeat(3, 1fr); }
  .price-types { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .offers-grid, .reviews-grid, .landmarks-grid, .top-cars-grid { grid-template-columns: repeat(2, 1fr); }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .faq-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .why-rent-content { grid-template-columns: 1fr; gap: 32px; }
  .why-rent-image { order: -1; }
  .traffic-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; --header-h: 68px; }
  .nav-menu { display: none; }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 1.85rem; }
  .hero-subtitle { font-size: 0.96rem; }
  .hero-content { padding-top: calc(var(--header-h) + 16px); }
  .steps-grid { grid-template-columns: 1fr; gap: 16px; }
  .why-rent-list { grid-template-columns: repeat(2, 1fr); }
  .price-rec-list { grid-template-columns: 1fr; }
  .reviews-overview { flex-direction: column; gap: 20px; }
  .section-header { margin-bottom: 36px; }
  .section-header h2::after { bottom: -8px; }
}

@media (max-width: 600px) {
  .offers-grid, .reviews-grid, .landmarks-grid, .top-cars-grid { grid-template-columns: 1fr; }
  .locations-grid { grid-template-columns: repeat(2, 1fr); }
  .price-types { grid-template-columns: repeat(2, 1fr); }
  .footer-links { gap: 14px; flex-direction: column; }
  .why-rent-list { grid-template-columns: 1fr 1fr; }
}
