:root {
  --primary: #007bff;
  --primary-dark: #0056b3;
  --bg: #f3f5f9;
  --card-bg: #ffffff;
  --text: #111827;
  --text-muted: #6b7280;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-card: 0 14px 35px rgba(15, 23, 42, 0.18);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: radial-gradient(
    circle at top,
    #0f172a 0,
    #020617 55%,
    #020617 100%
  );
  color: var(--text);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 18px 10px 24px;
}

.card {
  width: 100%;
  max-width: 430px;
  background: var(--bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}

/* Hero */
.hero {
  position: relative;
  height: 220px;
  background-image: url("images/hero-24cars.jpg");
  background-size: cover;
  background-position: center;
}

/* .hero::after {
  content: "";
  position: absolute;
  inset: 0;
} */

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 18px;
  color: #f9fafb;
}

.hero-tagline {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
  margin-bottom: 3px;
}

.hero-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}

.hero-subtitle {
  font-size: 12px;
  opacity: 0.9;
  margin-bottom: 12px;
}

.hero-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  background: #fbbf24;
  color: #111827;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(250, 204, 21, 0.4);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn-book:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 30px rgba(250, 204, 21, 0.55);
  background: #facc15;
}

.hero-badge {
  font-size: 11px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(248, 250, 252, 0.5);
  backdrop-filter: blur(8px);
  background: rgba(15, 23, 42, 0.3);
}

/* Logo */
.logo-wrap {
  display: flex;
  justify-content: center;
  margin-top: -42px;
  position: relative;
}

.logo {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 4px solid var(--bg);
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.28);
}

.logo img {
  max-width: 78%;
  height: auto;
  display: block;
}

/* Header text */
.header {
  text-align: center;
  padding: 6px 18px 12px;
}

.brand-name {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 2px;
}

.brand-tagline {
  font-size: 12px;
  color: var(--text-muted);
}

/* Social icons */
.social-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin: 14px 0 6px;
}

.social-row a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--card-bg);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  color: #111827;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.social-row a:hover {
  background: #e5f2ff;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(37, 99, 235, 0.3);
}

/* Main buttons */
.action-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  padding: 14px 16px 8px;
}

.action-btn {
  background: var(--card-bg);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 10px 6px 8px;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  font-size: 11px;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  transition: border 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.action-btn i {
  font-size: 16px;
}

.action-btn.primary {
  background: var(--primary);
  border-color: transparent;
  color: #f9fafb;
}

.action-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.15);
  border-color: var(--primary);
}

.action-btn.primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.45);
}

.action-grid-wide {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 4px 16px 16px;
}

/* Sections (base) */
.section {
  padding: 10px 16px 14px;
}

.section + .section {
  border-top: 1px solid var(--border);
}

.section-title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-title i {
  font-size: 20px;
  color: var(--primary);
}

.section-body {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.6;
}

.highlight {
  font-weight: 600;
  color: #0f172a;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}

.pill {
  padding: 6px 10px;
  border-radius: 12px;
  font-size: 11px;
  border: 1px solid var(--border);
  background: #f9fafb;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pill i {
  font-size: 12px;
  color: var(--primary);
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 6px;
}

.service-card {
  background: var(--card-bg);
  border-radius: 14px;
  border: 1px solid var(--border);
  padding: 8px 9px 9px;
  font-size: 11px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.service-title {
  font-weight: 600;
  font-size: 11px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 6px;
}

.service-title i {
  font-size: 12px;
  color: var(--primary);
}

.service-text {
  color: var(--text-muted);
  line-height: 1.5;
}

/* Contact */
.contact-list {
  list-style: none;
  font-size: 12px;
  color: var(--text-muted);
  display: grid;
  gap: 6px;
}

.contact-item {
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.contact-item i {
  margin-top: 2px;
  font-size: 13px;
  color: var(--primary);
  min-width: 14px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* ===== Card-style sections (About, Contact ইত্যাদির জন্য) ===== */
.section-card {
  background: var(--card-bg);
  margin: 10px 12px;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
  border-top: none !important;
}

.section-card + .section-card {
  margin-top: 6px;
}

.section-card .section-title {
  font-size: 16px;
  margin-bottom: 10px;
}

.section-card .section-title i {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.section-card .section-body {
  font-size: 13px;
}

/* Gallery slider */
.gallery-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
  background: #ffffff;
  margin-top: 10px;
}

.gallery-slider {
  display: flex;
  transition: transform 0.4s ease;
}

.gallery-slide {
  min-width: 100%;
  height: 220px;
  overflow: hidden;
  border-radius: 16px;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-arrow i {
  font-size: 15px;
  color: #111;
}

.gallery-arrow.left {
  left: 8px;
}

.gallery-arrow.right {
  right: 8px;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  margin-top: 8px;
  gap: 6px;
}

.gallery-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cbd5e1;
}

.gallery-dots .dot.active {
  background: #ffffff;
}

/* Map */
.map-wrap {
  margin-top: 8px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #e5e7eb;
}

.map-wrap iframe {
  width: 100%;
  height: 190px;
  border: 0;
  display: block;
}

/* Footer */
.footer {
  padding: 10px 16px 14px;
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
  border-top: 1px solid var(--border);
  background: #f9fafb;
}

.footer span {
  color: #4b5563;
  font-weight: 500;
}

@media (min-width: 600px) {
  .page {
    padding: 26px 16px;
  }

  .hero {
    height: 240px;
  }
}
