/* ======================================================
   RADHA TRAVELS - cleaned styles.css
   - Duplicate blocks removed/merged
   - All original selectors & behaviours preserved
   - Modal rules separated by ID to avoid clashes
   ====================================================== */

/* ========== Base ========== */
:root {
  --bg: #ffffff;         /* clean white */
  --bg-soft: #f9fafb;    /* soft section background */
  --card: #ffffff;       /* cards remain white */
  --muted: #64748b;      /* muted gray text */
  --text: #0f172a;       /* dark slate text */

  --accent: #2563eb;     /* royal blue */
  --accent-2: #7c3aed;   /* premium purple */
  --accent-3: #f59e0b;   /* golden accent */

  --ring: rgba(37,99,235,0.3);
  --glass: rgba(255,255,255,0.7);
  --glass-weak: rgba(255,255,255,0.4);
    --header-height: 80px;   /* desktop header height */
  --scroller-height: 42px; /* desktop scroller height */
}
/* ===== Layout vars (put near :root or top of stylesheet) ===== */
/* responsive overrides */
@media (max-width: 980px){
  :root{
    --header-height: 64px;
    --scroller-height: 40px;
  }
}
@media (max-width: 480px){
  :root{
    --header-height: 56px;
    --scroller-height: 36px;
  }
}


*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(34,211,238,0.08), transparent 60%),
    radial-gradient(900px 600px at -20% 10%, rgba(56,189,248,0.08), transparent 60%),
    var(--bg);
    scroll-behavior: smooth;
}

/* Containers */
.container { width: min(1100px, 92%); margin-inline: auto; }
#services,#fleet,#gallery,#reviews,#booking,#about {
  scroll-margin-top: var(--header-height);
}

/* ========== Header / Top ========== */
/* ===== Premium Header ===== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  width: 100%;
  height: var(--header-height);
  background: linear-gradient(90deg, rgba(15,23,42,0.9), rgba(67,56,202,0.85));
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  transition: all 0.4s ease;
}
.header.scrolled {
  background: linear-gradient(90deg, rgba(15,23,42,1), rgba(67,56,202,0.95));
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
}

/* Logo */
/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.logo__img {
  width: 65px;
  height: 45px;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.85);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.logo__text {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}
.logo__text strong {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Hover effect */
.logo__img:hover {
  transform: scale(1.08) rotate(2deg);
  box-shadow: 0 6px 18px rgba(0,0,0,0.4);
}

/* Shrink when scrolling */
.header.scrolled .logo__img {
  width: 55px;
  height: 40px;
  border-width: 1.5px;
}
.header.scrolled .logo__text {
  font-size: 1.1rem;
  letter-spacing: 0.3px;
}


/* =========================================================
   NAV LINKS
========================================================= */
.nav__links {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.nav__links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.35s ease;
}

.nav__links a:hover {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.nav__links a.active {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}

/* =========================================================
   NAV TOGGLE (Premium)
========================================================= */
.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: transparent;
  transition: all 0.3s ease;
  z-index: 2000;
}

.nav__toggle span {
  display: block;
  width: 26px;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

/* When menu is open → animate into X */
.nav__toggle.open span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 5px);
}
.nav__toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav__toggle.open span:nth-child(3) {
  transform: rotate(-45deg) translate(9px, -5px);
}
.nav__toggle span {
  transition: transform 0.1s ease, opacity 0.3s ease;
}
/* =========================================================
   MOBILE NAV (Dropdown)
========================================================= */
@media (max-width: 720px) {
  .nav__toggle { display: flex; }

  .nav__links {
    position: absolute;
    top: 100%;
    right: 4%;
    flex-direction: column;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
    padding: 0.8rem;
    overflow: hidden;
    max-height: 0;          /* start closed */
    opacity: 0;
    pointer-events: none;   /* prevent ghost clicks */
    transition: all 0.5s ease;
  }

  .nav__links.open {
    max-height: 500px;      /* enough space for links */
    opacity: 1;
    pointer-events: auto;
  }

  .nav__links a {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
  }
}
/* Dropdown animation */
@keyframes dropdown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ========== Sections ========== */
.section { padding: 3.2rem 0;margin-top: var(--header-height);}
@media (max-width: 480px) {
  .section {
    padding: 2rem 0;  /* reduce top-bottom padding */
    margin-top: calc(var(--header-height) + 0.5rem);
  }
}

.section--alt { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01)); }
.section__title { font-size: clamp(1.6rem, 4vw, 2rem); margin:0 0 0.6rem; text-align: center; }
.section__subtitle { color: var(--muted); margin-top: -0.4rem; }

/* ========== Cards / Grid ========== */
.grid { display:grid; gap:1rem; }
.cards { grid-template-columns: repeat(4, 1fr); display:grid; gap:1rem; }

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 1rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
}
.card__header { margin-bottom: 0.6rem; }
.card__icon { font-size: 1.6rem; }
.card--hover { transition: transform .25s ease, box-shadow .25s ease; }
.card--hover:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }

/* ========== Buttons ========== */
.btn {
  --btn-bg: var(--card);
  --btn-ring: var(--ring);
  display:inline-flex; align-items:center; justify-content:center; gap:0.5rem;
  padding: 0.65rem 1rem; border-radius: 12px; border:1px solid rgba(255,255,255,0.06);
  color: var(--text); text-decoration: none; font-weight: 600; cursor: pointer;
  transition: transform .15s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
  background: var(--btn-bg);
  outline: none;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { box-shadow: 0 0 0 6px var(--btn-ring); }
.btn--primary { --btn-bg: linear-gradient(90deg, var(--accent), var(--accent-2)); border-color: transparent; color: #00111a; }
.btn--ghost { background: transparent; }
.btn--sm { padding: 0.5rem 0.8rem; font-size: 0.95rem; background: white;}
.btn--full { width: 100%; }

/* ========== Forms ========== */
.form { display:grid; gap:0.8rem; }
.form--grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form__row { display:grid; gap:0.4rem; }
.form__row--full { grid-column: 1 / -1; }
label { font-weight: 600; }
input, select, textarea {
  background: #f7f7f7;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.65rem 0.8rem;
  color: var(--text);
  outline: none;
}
input::placeholder, textarea::placeholder { color: #7c8a9e; }
input:focus, select:focus, textarea:focus { box-shadow: 0 0 0 6px var(--ring); border-color: rgba(255,255,255,0.18); }

/* ========== Estimate result / hints ========== */
.estimate__result {
  text-align: center; margin: 0.4rem 0 0; font-weight: 700;
  background: rgba(34,211,238,0.12); border: 1px dashed rgba(34,211,238,0.4);
  padding: 0.5rem; border-radius: 10px; min-height: 2.2rem;
}
.estimate__hint { color: var(--muted); font-size: .9rem; margin-top: .35rem; }

/* ========== Pricing Tables ========== */
.pricing { display:grid; grid-template-columns: repeat(3, 1fr); gap:1rem; margin-top: 1rem; }
.pricing__table { background: var(--card); border:1px solid rgba(255,255,255,0.06); border-radius:18px; padding:1rem; }
table { width:100%; border-collapse: collapse; font-size: 0.95rem; }
thead th { text-align:left; color: var(--muted); font-weight:600; padding-bottom:0.4rem; }
tbody td { padding: 0.35rem 0; border-top: 1px solid rgba(255,255,255,0.06); }

/* ========== Accordion ========== */
details { background: var(--card); border:1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 0.8rem 1rem; }
details + details { margin-top: 0.6rem; }
summary { cursor: pointer; font-weight: 600; }
summary::-webkit-details-marker { display:none; }

/* ========== Footer ========== */
/* ===== Premium Footer ===== */
.footer {
  background: linear-gradient(135deg, #0f172a, #1e1b4b, #2e1065);
  color: #cbd5e1;
  padding-top: 3rem;
  margin-top: 3rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}
.footer h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer .list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer .list a {
  display: inline-block;
  padding: 0.3rem 0;
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}
.footer .list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 0%;
  height: 2px;
  background: var(--accent);
  transition: width 0.35s ease;
}
.footer .list a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer .list a:hover::after {
  width: 100%;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: center;
  padding: 1.2rem 0;
  font-size: 0.9rem;
  color: #94a3b8;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 720px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
/* ===== Minimal Footer Logo ===== */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: #e2e8f0;
  font-weight: 600;
  font-size: 1rem;
}

.footer-logo__img {
  width: 40px;
  height: 100%;

  object-fit: cover;
  border: 1px solid rgba(255,255,255,0.15);
}

.footer-logo__text {
  font-size: 1rem;
  font-weight: 600;
  color: #f1f5f9;
  letter-spacing: 0.4px;
  opacity: 0.9;
}
.footer-logo__text strong {
  color: var(--accent);     /* just a touch of brand color */
}
.footer-logo:hover .footer-logo__text {
  opacity: 1;
}


/* ========== Fleet Grid & cards (merged & preserved) ========== */
.fleet-section{ padding-top: 3.2rem; background-color:var(--bg-soft);}
.fleet-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  width: 100%;
}

/* Merge of both car-card definitions (kept both gradient & glass properties, conservative values) */
.car-card {
  background: linear-gradient(145deg, #ffffff, #f2f6ff);
  /* further glass-like effect */
  background-color: rgba(255,255,255,0.95);
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 5px 10px rgba(58, 28, 28, 0.25);
  transition: all 0.5s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer; /* 👈 makes card clickable */
}
.car-card img {
  width: 80%;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
  margin: 0 auto;
  display: block;
}
.car-card h3 {
  margin: 6px 0 2px;
  font-size: 1rem;
  font-weight: 700;
  color: #05308b;
  letter-spacing: 0.3px;
  text-transform: capitalize;
  position: relative;
  padding-bottom: 4px;
}
.car-card h3::after {
  content: "";
  display: block;
  width: 40%;
  height: 2px;
  background: #596171;
  margin: 4px auto 0;
  border-radius: 1px;
}
.car-card p {
  font-size: 0.8rem;
  color: #0000005d;
  font-weight: 700;
  margin: 2px 0 8px;
  line-height: 1.25;
  font-style: italic;
  opacity: 0.85;
}
.car-card:hover { transform: translateY(-8px) scale(1.02); box-shadow: 0 10px 30px rgba(174, 92, 92, 0.15); }
.car-card:hover img { transform: scale(1.05); }

/* .car-card button:hover { background: linear-gradient(135deg, #0056b3, #003f88); transform: translateY(-2px); } */

/* Fleet responsive tweaks */
@media (max-width:992px) and (min-width:577px){
  .fleet-grid{ grid-template-columns: repeat(2,1fr); justify-items:center; }
  .car-card{ width:75%; }
  .car-card img{ height:80px; width:50%; }
}
@media (max-width:576px){
  .fleet-grid{ grid-template-columns: repeat(2,1fr); justify-items:center; }
  .car-card{ width:50%; }
  .car-card img { height:70px; width:50%; }
}

/* ========== Fleet Modal (kept original table & styles) ========== */
#fleetModal.modal {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  justify-content: center; align-items: center;
}
#fleetModal.modal.show { display:flex; }
#fleetModal .modal-content {
  position: relative; background: #fff; color: #111; padding: 1.75rem;
  width: min(92vw,520px); border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.28);
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
#fleetModal .modal-content h3 { margin: 0 0 1rem 0; font-size: 1.28rem; font-weight: 800; text-align:center; }
#fleetModal .close { position:absolute; top:10px; right:12px; font-size:1.6rem; color:#222; cursor:pointer; }
#fleetModal .modal-content table { width:100%; border-collapse:collapse; margin:0.25rem 0 1rem; font-size:0.96rem; }
#fleetModal .modal-content th, #fleetModal .modal-content td { border:1px solid #e5e7eb; padding:0.6rem 0.7rem; text-align:left; }
#fleetModal .modal-content th { background:#f8fafc; font-weight:700; }
#fleetModal .book-btn { display:block; text-align:center; text-decoration:none; background: linear-gradient(90deg, var(--accent), var(--accent-2)); color:#fff; padding:0.7rem 1rem; border-radius:10px; font-weight:700; }
#fleetModal .book-btn:hover{ filter:brightness(0.98); }

/* ========== Gallery Grid & Modal ========== */
#galleryGrid {
  display:grid; grid-template-columns: repeat(auto-fit, minmax(220px,1fr)); gap:1rem; background-color: var(--bg);
}
#galleryGrid figure {
  margin:0; cursor:pointer; transition: transform 0.2s; border-radius:8px; overflow:hidden;
}
#galleryGrid figure:hover { transform: scale(1.03); }
#galleryGrid img{ width:100%; height:200px; object-fit:cover; border-radius:8px; }
#galleryGrid figcaption {position: absolute;bottom: 0;left: 0;right: 0;background: linear-gradient(to top, rgba(0,0,0,0.65), transparent);color: #fff;
  font-size: 0.9rem;padding: 0.6rem;text-align: center;opacity: 0;/* hidden initially */
  transform: translateY(20px);/* slide down a little */
  transition: all 0.3s ease;
}
#galleryGrid figure:hover figcaption {opacity: 1;transform: translateY(0);   /* slide up into place */
}

/* Generic modal (gallery dark overlay) */
#galleryModal.modal {
  display:none; position:fixed; inset:0; background: rgba(0,0,0,0.9); z-index:9999; justify-content:center; align-items:center;
}
#galleryModal.modal.show { display:flex; }
#galleryModal .modal-inner { max-width:90%; max-height:90%; text-align:center; position:relative; }
#galleryModal .modal-inner img { max-width:100%; max-height:80vh; border-radius:10px; box-shadow:0 8px 30px rgba(0,0,0,0.6); }
#galleryModal .modal-inner p { color:#fff; margin-top:0.5rem; }
#galleryModal .close { position:absolute; top:10px; right:20px; font-size:2rem; color:#fff; cursor:pointer; }

/* ========== Reviews / Summary / Review Modal ========== */
.review-summary-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  padding: 2rem;
  padding-top: 0;
  max-width: 480px;
  margin: auto;
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
  text-align: center;
}
.avg-rating{ font-size:5rem; font-weight:800; color: var(--accent-2); margin:0; padding:0; }
.stars{ color: gold; font-size: 3rem; margin: -30px 100px; }
.rating-breakdown { text-align:left; }
.rating-breakdown .bar { display:flex; align-items:center; margin:0.4rem 3rem; gap:1rem; }
.rating-breakdown span{ width:30px; font-size:1rem; font-weight:900; }
.progress { flex:1; background: rgba(255,255,255,0.15); border-radius:10px; height:11px; overflow:hidden; }
.progress div { height:100%; background: rgb(36, 167, 134); width:0%; transition: width 0.4s ease; }
.review-buttons{ display:flex; gap:1rem; justify-content:center; margin-top:1.5rem; }

/* Review form modal (kept original) */
#reviewModal.modal {
  display:none; position:fixed; inset:0; background: var(--bg); justify-content:center; align-items:center; z-index:9999;
}
#reviewModal.modal.show{ display:flex; }
.review-form-card {
  background: var(--card);
  border-radius: 14px;
  padding: 2rem;
  width: min(90%, 420px);
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  animation: popup 0.3s ease;
  text-align: center;
}
@keyframes popup { from{ transform: scale(0.9); opacity:0 } to{ transform: scale(1); opacity:1 } }
.review-form-card h3{ margin-bottom:1rem; font-weight:600; }
.review-form-card input, .review-form-card textarea { width:100%; padding:0.8rem; margin:0.6rem 0; border:1px solid #ddd; border-radius:8px; font-size:0.95rem; }
.review-form-card textarea{ min-height:100px; resize:vertical; }
.star-rating{ font-size:3rem; color:#111; cursor:pointer; margin:0.5rem 0 1rem; }
.star-rating span.active{ color: gold; }
#reviewModal .close, #reviewsModal .close { color:#111; top:10px; right:14px; font-size:1.5rem; cursor:pointer; }

/* Review cards used inside modals */
.review-card { background: var(--glass); padding:1rem; margin:0.6rem 0; border-radius:10px; text-align:left; }
.review-card h4 { margin:0 0 0.3rem; font-weight:600; color: var(--accent); }
.review-card .rating{ color: gold; font-size:1.2rem; }
.review-card p{ margin:0.3rem 0 0; color: var(--text); }

/* ========== Booking form & success modal ========== */
.booking.card { backdrop-filter: blur(8px); background: var(--bg-soft); border: 1px solid color-mix(in oklab, var(--accent, #22d3ee) 25%, transparent); border-radius:16px; padding: clamp(16px, 3vw, 28px); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.form-grid { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
@media (max-width:720px){ .form-grid{ grid-template-columns: 1fr; } }
.form__row { display:flex; flex-direction: column; gap:6px; }
.form__row label { font-size:.95rem; opacity:.9; }
.form__row input, .form__row select, .form__row textarea {
  width:100%;
  border: 1px solid color-mix(in oklab, var(--accent, #22d3ee) 20%, #ffffff10);
  background: color-mix(in oklab, #ffffffb4, transparent);
  color: var(--text);
  padding: 12px 14px;
  border-radius: 12px;
  outline: none;
  transition: border .2s, box-shadow .2s, background .2s;
}
.form__row textarea{ min-height:96px; resize:vertical; }
.form__row input:focus, .form__row select:focus, .form__row textarea:focus {
  border-color: var(--accent, #22d3ee);
  box-shadow: 0 0 0 3px color-mix(in oklab, var(--accent, #22d3ee) 25%, transparent);
  background: #f1f2f5;
}

.inline-2 { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:16px; }
@media (max-width:720px){ .inline-2 { grid-template-columns: 1fr; } }

.form__actions { margin-top:16px; display:flex; gap:12px; align-items:center; }
.form__message { margin-top:8px; font-size:.95rem; }

.btn.btn--primary {
  background: var(--accent, #22d3ee);
  color: #001018;
  border: none;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: transform .06s ease, box-shadow .2s ease, filter .2s ease;
}
.btn.btn--primary:hover { filter: brightness(1.05); }
.btn.btn--primary:active { transform: translateY(1px); }

/* Booking Success Modal (glass) */
#bookingSuccessModal { display:none; position:fixed; inset:0; z-index:9999; background: rgba(0,0,0,0.55); backdrop-filter: blur(6px); justify-content:center; align-items:center; animation: fadeIn 0.3s ease-in-out; }
#bookingSuccessModal.show{ display:flex; }
#bookingSuccessModal .modal-content.glass {
  position:relative;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 18px; padding:2rem; max-width:420px; width:90%; text-align:center; color:var(--text);
  box-shadow: 0 12px 40px rgba(0,0,0,0.35); backdrop-filter: blur(12px);
  animation: slideUp 0.35s ease-out;
}
#bookingSuccessModal h2{ margin-bottom:0.6rem; font-size:1.6rem; font-weight:700; color:var(--accent); }
#bookingSuccessModal p{ margin-bottom:1.2rem; font-size:1rem; color:var(--muted); }
#bookingSuccessModal .btn{ margin-top:0.5rem; padding:0.7rem 1.4rem; font-size:1rem; border-radius:10px; }
#bookingSuccessModal .close{ position:absolute; top:10px; right:14px; font-size:1.6rem; color:var(--text); cursor:pointer; opacity:0.8; transition:0.2s; }
#bookingSuccessModal .close:hover{ opacity:1; color:var(--accent); }

/* Animations */
@keyframes fadeIn { from{ opacity:0 } to{ opacity:1 } }
@keyframes slideUp { from{ transform: translateY(20px); opacity:0 } to{ transform: translateY(0); opacity:1 } }

/* ========== Generic modal fallback (if still used elsewhere) ========== */
/* Keep generic modal class but lighter; the specific modals above take precedence */
.modal {
  display:none; position:fixed; inset:0; background: rgba(0,0,0,0.6); z-index:9999; justify-content:center; align-items:center; padding:1.2rem;
}
.modal.show { display:flex; }
.modal-inner { max-width:90%; max-height:90%; text-align:center; position:relative; }
.modal-inner img { max-width:100%; max-height:80vh; border-radius:10px; box-shadow:0 8px 30px rgba(0,0,0,0.6); }
.modal .close { position:absolute; top:10px; right:20px; font-size:2rem; color:#fff; cursor:pointer; }

/* ========== Gallery modal dark variant kept earlier ========== */
/* (gallery modal already defined above with #galleryModal) */

/* ========== Review Cards in Modal ========== */
/* (kept above under review-card) */

/* ========== Booking form (already above) ========== */

/* ========== Gallery hover & caption behavior preserved above ========== */

/* ========== Animations & small helpers ========== */
[data-reveal] { opacity:0; transform:translateY(20px); transition: all .6s ease; }
[data-reveal].is-visible { opacity:1; transform:translateY(0); }
@keyframes popup { from{ transform:scale(0.96); opacity:0 } to{ transform:scale(1); opacity:1 } }
.sr-only{ position:absolute; left:-9999px; top:auto; width:1px; height:1px; overflow:hidden; }

/* ========== Compact Price Estimator (merged & preserved) ========== */


/* Compact form elements */
#quick-estimate.form { display: grid; gap: 0.4rem; }
#quick-estimate .form__row { margin: 0; }
#quick-estimate label { font-size: 1rem; font-weight: 800; margin-bottom: 0.1rem; }
#quick-estimate input, #quick-estimate select { padding: 0.4rem 0.6rem; font-size: 0.85rem; border-radius: 8px; height: 34px; }
#quick-estimate button.btn--primary { padding: 0.5rem; font-size: 0.9rem; border-radius: 8px; }
#estimateResult, .estimate__result { font-size: 0.85rem; padding: 0.3rem 0.4rem; margin-top: 0.2rem; color: red; font-weight:800; }

/* ========== Service card (kept) ========== */
.service-card {
  background: linear-gradient(135deg, #ffffff, #f9fafb);
  border-radius: 16px;
  padding: 1.2rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.service-card h3 { margin: 0.6rem 0; font-size: 1.2rem; font-weight: 700; color: var(--accent); }
.service-card p { font-size: 0.9rem; color: var(--muted); }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.15); }
#serviceModal.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  justify-content: center;
  align-items: center;
}

#serviceModal.modal.show {
  display: flex;
}

#serviceModal .modal-content {
  position: relative;
  background: #fff;
  color: #111;
  padding: 1.75rem;
  width: min(92vw, 520px);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.28);
}

#serviceModal .close {
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 1.6rem;
  cursor: pointer;
}


/* ========== Misc: Buttons, Card hover polish kept ========== */
.card { transition: transform 0.3s, box-shadow 0.3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12); }
.btn--primary { transition: all 0.3s ease; }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.15); background: linear-gradient(90deg, var(--accent-3), var(--accent)); }

/* ========== Responsive ========== */
@media (max-width: 980px) {
  .cards { grid-template-columns: repeat(2,1fr); }
  .pricing { grid-template-columns: 1fr; }
  .hero__grid { grid-template-columns: 1fr; }
  .fleet-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 720px) {
  .form--grid { grid-template-columns: 1fr; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .footer__grid { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .fleet-grid { grid-template-columns: 1fr; }
}

/* ===== Mobile: Fleet cards like Service cards (with button) ===== */
@media (max-width: 720px) {
  .fleet-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .car-card {
    all: unset; /* reset desktop styles */
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: center !important;

    background: linear-gradient(135deg, #ffffff, #f9fafb) !important;
    border-radius: 16px !important;
    padding: 1rem !important;
    padding-top: 0 !important;
    text-align: center !important;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;

    height: auto !important;
    min-height: 180px !important; /* square-like look */
    transition: all 0.5s ease;
  }

  .car-card img {
    width: 120px !important;
    height: 120px !important;
    object-fit: contain !important;
    margin-bottom: 0.6rem !important;
    /* border: dotted; */
  }

  .car-card h3 {
    font-size: 0.95rem !important;
    margin: 0.2rem 0 !important;
    font-weight: 700 !important;
    color: var(--accent) !important;
  }

  .car-card p {
    font-size: 0.75rem !important;
    color: var(--muted) !important;
    margin: 0.2rem 0 0.6rem !important;
    line-height: 1.3 !important;
  }
    /* Gallery grid */
  #galleryGrid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns */
    gap: 0.8rem;
  }
  #galleryGrid img {
    width: 100%;
    height: 160px; /* smaller height on mobile */
    object-fit: cover;
    border-radius: 8px;
  }

}
/* hero section */
/* === Hero Scroller === */
/* === SCROLLER (fixed below header) === */
.hero-scroller {
  position: relative;
  top: 0;
  height: 34px;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  overflow: hidden;
  z-index: 101;
  margin: 0; /* ✅ remove extra margin-top */
}


.hero-scroller__text {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 20s linear infinite;
}

@keyframes ticker {
  from { transform: translateX(100%); }
  to   { transform: translateX(-100%); }
}
/* ===========================
   HERO: blurred background + centered sharp card
   Replace any existing .hero-slider / .hero-slide / .hero-content rules with this
   =========================== */

/* hero container (fits below header) */
/* ================= Hero Section ================= */
/* === HERO SLIDER === */
.hero-full {
  position: relative;
  margin-top: var(--header-height);
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.hero-slider {
  height: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease, transform 6s ease;
  background-size: cover;
  background-position: center;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero-content {
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 1rem 2rem;
  border-radius: 10px;
  color: #fff;
  animation: fadeUp 1s ease forwards;
}

.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
}

.hero-dots button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s;
}

.hero-dots button.active {
  background: #ff7a18;
  width: 24px;
  border-radius: 12px;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to { opacity: 1; transform: translate(-50%, 0); }
}

/* === Desktop Hero Buttons === */
.hero-buttons-desktop {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none; /* avoid blocking slider clicks */
  z-index: 70;
}

.hero-buttons-left,
.hero-buttons-right {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 2rem;
  pointer-events: auto;
}

.hero-card {
  padding: 0.8rem 1.4rem;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
  background: rgb(31, 139, 211);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-card:hover {
  color: rgb(0, 4, 255);
  background:linear-gradient(45deg, rgb(255, 115, 0),white, green);;
  transform: translateX(4px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* === Mobile Bottom Action Bar === */
.hero-action-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: space-around;
  width: 90%;
  max-width: 420px;
  padding: 0.5rem;
  border-radius: 18px;
  background: rgba(0,0,0,0.65);
  backdrop-filter: blur(10px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  z-index: 70;
}

.hero-action {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.5rem;
  color: #fff;
  border: none;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-action span {
  font-size: 2rem;
  margin-top: 2px;
}

.hero-action:hover {
  transform: translateY(-4px);
  color: #ff7a18;
}
.hero-card,
.hero-action {
  text-decoration: none;  /* remove underline from links */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}


/* === Responsive Switch === */
@media (max-width: 768px) {
  .hero-buttons-desktop { display: none; }
  .hero-action-bar { display: flex; }
  /* === Mobile Hero Clean Layout === */
 

  /* Action bar (clean bottom nav) */
  .hero-action-bar {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 400px;
    padding: 0.4rem;
    border-radius: 14px;
    display: flex;
    justify-content: space-around;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(10px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  }

  .hero-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 1rem;
    color: #fff;
    border: none;
    background: transparent;
  }

  .hero-action span {
    font-size: 0.65rem;
    margin-top: 2px;
  }
}
@media (min-width: 769px) {
  .hero-buttons-desktop { display: flex; }
  .hero-action-bar { display: none; }
}


/* === Estimator Overlay === */
.estimator-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: none;
  z-index: 15;
}

/* === Estimator Box (Drawer) === */
/* Estimator Overlay */
.estimator-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);   /* ✅ blur effect */
  display: none;
  z-index: 1099;
}
.estimator-overlay.show {
  display: block;
}

/* Compact Estimator Box */
.estimator-box {
  position: fixed;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%) scale(0.95);
  background: #fff;
  width: 300px;
  max-height: 85%;   /* ✅ limit height */
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
  padding: 1rem;
  display: none;
  flex-direction: column;
  z-index: 1100;
  overflow: hidden;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.estimator-box.show {
  display: flex;
  animation: slideIn 0.3s ease forwards;
}

/* Header with Close */
.estimator-header {
  display: flex;
  justify-content: space-between;  /* ✅ side by side */
  align-items: center;
  margin-bottom: 0.6rem;
}
.estimator-header h3 {
  font-size: 0.9rem;   /* ✅ smaller heading */
  font-weight: 600;
  margin: 0;           /* ✅ no space above */
}
/* Modern SVG Close Button */
.close-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.45);  /* glassy dark */
  backdrop-filter: blur(6px);
  transition: all 0.25s ease;
  color: #fff;
  padding: 0;
}

.close-btn:hover {
  background: rgba(220, 38, 38, 0.85); /* deep red */
  transform: rotate(90deg) scale(1.1);
}


/* Compact Form */
.estimator-form {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  font-size: 0.75rem;   /* ✅ reduced size */
}
.form-group label {
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
  color: #444;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.35rem 0.5rem;   /* ✅ smaller input height */
  font-size: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 6px;
}
.form-row {
  display: flex;
  gap: 0.4rem;
}
.form-row .form-group {
  flex: 1;
}

/* Button */
.btn-primary {
  background: linear-gradient(45deg, #2563eb, #7c3aed);
  color: #fff;
  padding: 0.45rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.3s ease;
}
.btn-primary:hover {
  opacity: 0.9;
}

/* Results */
.estimate-result {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e11d48;
  margin-top: 0.4rem;
}
.estimate-hint {
  font-size: 0.65rem;
  color: #333;
  background: #f8f9fa;
  padding: 0.3rem;
  border-radius: 6px;
  margin-top: 0.3rem;
}

/* Animation */
@keyframes slideIn {
  from { transform: translateY(-50%) translateX(100%) scale(0.95); opacity: 0; }
  to   { transform: translateY(-50%) translateX(0) scale(1); opacity: 1; }
}
/* Estimator Header Layout */
.estimator-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem; /* reduce gap below heading */
}

.estimator-header h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: #222;
}
/* === Hero Slider Dots === */
/* === Hero Slider Dots (Glassy Pills) === */
.hero-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 50;
}

.hero-dots button {
  width: 15px;
  height: 5px;
  border-radius: 20px;
  border: none;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-dots button.active {
  width: 20px; /* expands active pill */
  background: linear-gradient(90deg, #ff9800, #ff5722);
  box-shadow: 0 0 8px rgba(255, 152, 0, 0.6);
}
/* ======================
   Hero Buttons - Mobile Fix
   ====================== */
@media (max-width: 720px) {
  .hero-buttons-left,
  .hero-buttons-right {
    position: static;          /* remove fixed side placement */
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;           /* allow wrapping to next line */
  }

  .hero-buttons-left .side-btn,
  .hero-buttons-right .estimator-btn {
    padding: 0.5rem 0.9rem;
    font-size: 0.8rem;
    border-radius: 10px;
    max-width: 45%;            /* ensure no overflow */
    text-align: center;
  }

  /* Move action bar down, above dots */
  .hero-buttons-left,
  .hero-buttons-right {
    order: 2;                  /* appear below hero image/text */
  }

  /* Ensure dots are above or below cleanly */
  /* .hero-dots {
    margin-top: 0.5rem;
    position: static;
    transform: none;
    z-index: 70; */
  
}
/* ======================
   Hero Dots - Mobile Fix
   ====================== */
@media (max-width: 720px) {
  .hero-dots {
    position: relative;
    bottom: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 0.8rem;   /* spacing from buttons */
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 5;           /* stay above hero content */
  }

  .hero-dots button {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.7);
  }

  .hero-dots button.active {
    width: 20px;
    border-radius: 10px;
  }
}
/* Mobile hero buttons fix */
@media (max-width: 480px) {
  .hero-action-bar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem;
    flex-wrap: wrap;   /* allow wrapping */
  }

  .hero-action {
    flex: 1 1 22%;
    min-width: 60px;
    font-size: 0.7rem;
    padding: 0.4rem 0.5rem;
    border-radius: 10px;
  }

  .hero-action span {
    display: block;
    font-size: 0.65rem;
    margin-top: 0.2rem;
  }
}

/* ======================
   Floating Social Bar
   ====================== */
.social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1200;
}

.social-bar a {
  opacity: 0;
  transform: translateX(80px);
  animation: slideInRight 0.6s ease forwards;
}

.social-bar a:nth-child(1) { animation-delay: 0.1s; }
.social-bar a:nth-child(2) { animation-delay: 0.25s; }
.social-bar a:nth-child(3) { animation-delay: 0.4s; }
.social-bar a:nth-child(4) { animation-delay: 0.55s; }
.social-bar a:nth-child(5) { animation-delay: 0.7s; }

@keyframes slideInRight {
  0% { opacity: 0; transform: translateX(80px); }
  100% { opacity: 1; transform: translateX(0); }
}

.social-bar img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover */
.social-bar a:hover img {
  transform: scale(1.2);
  filter: drop-shadow(0 0 8px rgba(0,0,0,0.35));
}

/* Mobile version */
@media (max-width: 720px) {
  .social-bar {
    top: auto;
    bottom: 15px;
    right: 50%;
    transform: translateX(50%);
    flex-direction: row;
    gap: 22px;
    background: rgba(0,0,0,0.35);
    padding: 8px 14px;
    border-radius: 40px;
    backdrop-filter: blur(6px);
  }

  .social-bar a {
    transform: translateY(60px);
    animation: slideInUp 0.6s ease forwards;
  }

  .social-bar a:nth-child(1) { animation-delay: 0.1s; }
  .social-bar a:nth-child(2) { animation-delay: 0.25s; }
  .social-bar a:nth-child(3) { animation-delay: 0.4s; }
  .social-bar a:nth-child(4) { animation-delay: 0.55s; }
  .social-bar a:nth-child(5) { animation-delay: 0.7s; }

  @keyframes slideInUp {
    0% { opacity: 0; transform: translateY(60px); }
    100% { opacity: 1; transform: translateY(0); }
  }

  .social-bar img {
    width: 30px;
    height: 30px;
  }
}
/* Tooltip styling */
.tooltip {
  position: relative;
}

.tooltip::after {
  content: attr(data-label);
  position: absolute;
  right: 110%;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.tooltip:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-5px);
}

/* On mobile, show tooltips above */
@media (max-width: 720px) {
  .tooltip::after {
    right: 50%;
    top: -35px;
    transform: translateX(50%);
  }

  .tooltip:hover::after {
    transform: translateX(50%) translateY(-3px);
  }
}
/* Mobile hero buttons aligned left */
@media (max-width: 768px) {
  .hero-action-bar {
    justify-content: flex-start; /* align left */
    gap: 0.8rem;
    padding-left: 1rem;
  }

  .hero-action {
    font-size: 0.75rem;
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
  }

  .social-bar {
     /* keep social icons fixed on right */
    bottom: 2rem; 
  }
}
/* -------------------------
   ABOUT SECTION
   ------------------------- */
/* Trendy About Section */
.about-trendy {
  background: var(--bg-soft, #f3f6f9);
  padding: 4rem 1rem;
}
.about-trendy__container {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-trendy__media {
  position: relative;
}
.image-card {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
  transition: transform 0.4s ease;
}
.image-card img {
  width: 100%; height: 100%; object-fit: cover;
}
/* layout cards */
.image-card--big {
  top: 0; left: 0; width: 100%; height: 320px;
}
.image-card--small {
  width: 45%; height: 160px;
}
.image-card--top {
  top: 0; right: -10%;
}
.image-card--bottom {
  bottom: 0; right: -5%;
}
.image-card:hover {
  transform: translateY(-8px);
}

/* Content */
.about-trendy__heading {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}
.about-trendy__heading span {
  color: var(--accent, #ff7a18);
}
.about-trendy__lead {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}
.about-trendy__desc {
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Stats */
.about-trendy__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.trend-stat {
  flex: 1 1 40%;
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  font-size: 1rem;
  color: #333;
}
.trend-num {
  font-size: 2rem;
  font-weight: bold;
  color: var(--accent, #ff7a18);
}

/* Animations reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}
[data-reveal].visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .about-trendy__container {
    grid-template-columns: 1fr;
  }
  .image-card--big { width: 100%; height: 240px; }
  .image-card--small { display: none; }  /* hide small ones on narrow */
  .trend-stat {
    flex: 1 1 45%;
  }
}
