/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: #1e1e2f;
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s;
}
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== VARIABLES ===== */
:root {
  --primary: #7c3aed;
  --primary-dark: #5b21b6;
  --primary-light: #ede9fe;
  --primary-50: #f5f3ff;
  --accent: #a78bfa;
  --dark: #1e1e2f;
  --gray-900: #111827;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-500: #6b7280;
  --gray-400: #9ca3af;
  --gray-300: #d1d5db;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50: #f9fafb;
  --white: #ffffff;
  --success: #10b981;
  --warning: #f59e0b;
  --star: #fbbf24;
  --container: 1200px;
  --radius: 12px;
  --radius-sm: 8px;
  --radius-lg: 16px;
  --shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
}

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

/* ===== TYPOGRAPHY ===== */
h1,h2,h3,h4,h5,h6 {
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark);
}
h1 { font-size: 2.75rem; }
h2 { font-size: 2rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
p { margin-bottom: 1rem; color: var(--gray-600); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--primary);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}
.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 16px 0;
  position: relative;
  z-index: 100;
}

/* Homepage: header overlays hero */
.home .header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: transparent;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.home .header.scrolled {
  position: fixed;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}
.home .header:not(.scrolled) .logo {
  color: var(--white);
}
.home .header:not(.scrolled) .logo .material-icons-outlined {
  color: var(--white);
}
.home .header:not(.scrolled) .logo span {
  color: rgba(255,255,255,0.75);
}
.home .header:not(.scrolled) .nav-menu a {
  color: rgba(255,255,255,0.9);
}
.home .header:not(.scrolled) .nav-menu a:hover,
.home .header:not(.scrolled) .nav-menu a.active {
  color: var(--white);
}
.home .header:not(.scrolled) .hamburger span {
  background: var(--white);
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.logo .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
}
.logo span {
  color: var(--dark);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-weight: 500;
  color: var(--gray-700);
  transition: color 0.2s;
  font-size: 0.95rem;
}
.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url('../img/saranda.webp') center/cover no-repeat;
}
.home .hero {
  min-height: 400px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 1;
}
.hero .container {
  position: relative;
  z-index: 2;
  padding: 80px 20px;
}
.home .hero .container {
  padding-top: 140px;
}
.hero h1 {
  color: var(--white);
  font-size: 2.75rem;
  max-width: 100%;
  margin-bottom: 16px;
}
.hero-desc {
  color: rgba(255,255,255,0.85);
  font-size: 1.2rem;
  max-width: 100%;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  padding: 10px 18px;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255,255,255,0.2);
}
.hero-badge .check {
  color: #34d399;
  font-weight: 700;
}

/* ===== BOOKING WIDGET ===== */
.booking-section {
  padding: 60px 0 40px;
}
.booking-widget {
  width: 100%;
}
/* Force 3-column layout for localrent widget cars */
.booking-widget .mrc-wl-cars-list {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
}
@media (max-width: 768px) {
  .booking-widget .mrc-wl-cars-list {
    grid-template-columns: 1fr !important;
  }
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 80px 0;
}
.section-light {
  background: var(--primary-50);
}
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  margin-bottom: 12px;
}
.section-title p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--gray-500);
}

/* ===== HOW IT WORKS (STEPS) ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.step-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.3rem;
  margin: 0 auto 16px;
}
.step-icon {
  color: var(--primary);
  font-size: 40px;
  margin-bottom: 12px;
}
.step-card h3 {
  font-size: 1.15rem;
}
.step-card p {
  font-size: 0.92rem;
}

/* ===== OFFERS SECTION ===== */
.offers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.offer-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border-top: 4px solid var(--primary);
  transition: transform 0.25s, box-shadow 0.25s;
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.offer-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.offer-icon .material-icons-outlined {
  font-size: 28px;
  color: var(--primary);
}
.offer-card h3 {
  font-size: 1.2rem;
}

/* ===== WHY RENT ===== */
.why-rent-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.why-rent-text p {
  margin-bottom: 16px;
}
.why-rent-features {
  display: grid;
  gap: 16px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--primary-50);
  transition: background 0.2s;
}
.feature-item:hover {
  background: var(--primary-light);
}
.feature-item .material-icons-outlined {
  color: var(--primary);
  font-size: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}
.feature-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--dark);
}
.feature-item span {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* ===== PRICES ===== */
.price-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.price-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.price-card .material-icons-outlined {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 12px;
}
.price-card h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.price-card .price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
}
.price-card .price small {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-500);
}
.price-tips {
  margin-bottom: 48px;
}
.price-tips h3 {
  margin-bottom: 16px;
}
.price-tips ul {
  list-style: none;
  display: grid;
  gap: 10px;
}
.price-tips li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-700);
}
.price-tips li .material-icons-outlined {
  color: var(--success);
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}
.price-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}
.price-table th,
.price-table td {
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}
.price-table thead {
  background: var(--primary);
  color: var(--white);
}
.price-table thead th {
  font-weight: 600;
}
.price-table tbody tr {
  border-bottom: 1px solid var(--gray-200);
}
.price-table tbody tr:nth-child(even) {
  background: var(--gray-50);
}
.price-table tbody tr:hover {
  background: var(--primary-50);
}

/* ===== REVIEWS ===== */
.reviews-overview {
  text-align: center;
  margin-bottom: 48px;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--primary-50);
}
.reviews-overview .big-rating {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--primary);
}
.reviews-overview .stars {
  color: var(--star);
  font-size: 1.6rem;
  margin: 8px 0;
}
.reviews-overview .review-count {
  color: var(--gray-500);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s;
}
.review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
}
.review-name {
  font-weight: 600;
  color: var(--dark);
}
.review-city {
  font-size: 0.85rem;
  color: var(--gray-500);
}
.review-stars {
  color: var(--star);
  font-size: 1rem;
  margin-bottom: 12px;
}
.review-text {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ===== PLACES ===== */
.places-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.place-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  transition: transform 0.25s, box-shadow 0.25s;
}
.place-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.place-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1.15rem;
}
.place-card h3 .material-icons-outlined {
  color: var(--primary);
}
.place-meta {
  display: flex;
  gap: 16px;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.place-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.place-meta .material-icons-outlined {
  font-size: 16px;
}

/* ===== TOP CARS ===== */
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.car-card {
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-200);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.car-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}
.car-image {
  background: #FFF;
  padding: 24px;
  text-align: center;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.car-image img {
  max-height: 140px;
  object-fit: contain;
  margin: auto;
}
.car-info {
  padding: 24px;
}
.car-info h3 {
  margin-bottom: 4px;
}
.car-category {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.car-specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}
.car-spec {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--gray-700);
}
.car-spec .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(--gray-200);
}
.car-price .amount {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
}
.car-price .amount small {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gray-500);
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.faq-item:hover {
  box-shadow: var(--shadow);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  text-align: left;
  background: var(--white);
  cursor: pointer;
  transition: background 0.2s;
}
.faq-question:hover {
  background: var(--gray-50);
}
.faq-question .material-icons-outlined {
  font-size: 24px;
  color: var(--gray-400);
  transition: transform 0.3s;
}
.faq-item.active .faq-question .material-icons-outlined {
  transform: rotate(180deg);
  color: var(--primary);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 20px 18px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding: 48px 0 24px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo span {
  color: var(--accent);
}
.footer-seo {
  max-width: 800px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--gray-400);
  margin-bottom: 24px;
}
.footer-links {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.footer-links a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--white);
}
.footer-copy {
  font-size: 0.85rem;
  color: var(--gray-500);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

/* ===== INNER PAGES ===== */
.page-hero {
  background: linear-gradient(135deg, #1e1e2f 0%, #3b1f6e 100%);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
}
.page-content {
  padding: 60px 0;
}
.page-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}
.page-content p {
  margin-bottom: 14px;
  line-height: 1.7;
}
.page-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 16px;
}
.page-content ul li {
  margin-bottom: 8px;
  color: var(--gray-600);
}
.about-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 32px 0;
}
.about-feature {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--primary-50);
}
.about-feature .material-icons-outlined {
  font-size: 32px;
  color: var(--primary);
  flex-shrink: 0;
}
.about-feature h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}
.about-feature p {
  font-size: 0.9rem;
  margin-bottom: 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 32px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.contact-info-item .material-icons-outlined {
  color: var(--primary);
  font-size: 24px;
  margin-top: 2px;
}
.contact-info-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 2px;
}
.contact-info-item span, .contact-info-item a {
  color: var(--gray-600);
  font-size: 0.95rem;
}
.contact-info-item a:hover {
  color: var(--primary);
}
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .why-rent-content {
    grid-template-columns: 1fr;
  }
  .price-cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.2rem; }
  .section { padding: 48px 0; }
  
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 24px;
    box-shadow: var(--shadow-xl);
    transition: right 0.3s ease;
    z-index: 200;
  }
  .nav-menu.open {
    right: 0;
  }
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 150;
  }
  .nav-overlay.open {
    display: block;
  }
  
  .hero { min-height: 420px; }
  .hero h1 { font-size: 1.75rem; }
  .hero-desc { font-size: 1rem; }
  .hero-badges { gap: 10px; }
  .hero-badge { padding: 8px 14px; font-size: 0.85rem; }
  
  .steps-grid { grid-template-columns: 1fr; gap: 20px; }
  .offers-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .places-grid { grid-template-columns: 1fr; gap: 16px; }
  .cars-grid { grid-template-columns: 1fr; }
  .price-cards { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  
  .page-hero { padding: 60px 0 40px; }
  .page-hero h1 { font-size: 1.75rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 1.5rem; }
  .price-cards { grid-template-columns: 1fr; }
  .car-specs { grid-template-columns: 1fr; }
}
