/* ============================================================
   MOTO SOLUTIONS — Custom Stylesheet
   ============================================================ */

:root {
  --red:      #c0392b;
  --red-dark: #96281b;
  --dark:     #1a1a2e;
  --mid:      #2c3e50;
  --light-bg: #f4f6f8;
  --white:    #ffffff;
  --gray:     #6c757d;
  --gold:     #f39c12;
  --text:     #333333;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow:   0 4px 24px rgba(0,0,0,.10);
  --radius:   12px;
  --transition: .3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; }

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  color: var(--dark);
  margin-bottom: .5rem;
}
.section-subtitle {
  color: var(--gray);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.section-divider {
  width: 60px; height: 4px;
  background: var(--red);
  border-radius: 2px;
  margin: .75rem auto 1.5rem;
}

/* ── NAVBAR ──────────────────────────────────────────────── */
.navbar {
  background: var(--dark) !important;
  padding: .9rem 0;
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }

.navbar-brand img { height: 52px; }

.logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: .04em;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: .25rem;
}
.logo-text .logo-moto     { color: #ffffff; }
.logo-text .logo-solutions { color: var(--red); }
.footer-logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; letter-spacing: .04em; line-height: 1; display: inline-block; }
.footer-logo-text .logo-moto     { color: #ffffff; }
.footer-logo-text .logo-solutions { color: var(--red); }

.nav-link {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85) !important;
  padding: .5rem 1rem !important;
  transition: color var(--transition);
}
.nav-link:hover,
.nav-link.active { color: var(--red) !important; }

.navbar-toggler { border-color: rgba(255,255,255,.3); }
.navbar-toggler-icon { filter: invert(1); }

/* ── HERO ────────────────────────────────────────────────── */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../assets/banner.jpg') center center / cover no-repeat;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(26,26,46,.82) 0%,
    rgba(192,57,43,.45) 60%,
    rgba(26,26,46,.75) 100%);
}
.hero-content {
  position: relative;
  text-align: center;
  color: var(--white);
  padding: 0 1rem;
}
.hero-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 2rem;
  margin-bottom: 1.2rem;
}
.hero-content h1 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0,0,0,.4);
  margin-bottom: 1rem;
}
.hero-content h1 span { color: var(--red); }
.hero-content p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  opacity: .9;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(-10px); }
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn-red {
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  padding: .7rem 1.8rem;
  border-radius: 3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  transition: all var(--transition);
  display: inline-block;
}
.btn-red:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192,57,43,.35);
}
.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
  padding: .7rem 1.8rem;
  border-radius: 3rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .05em;
  transition: all var(--transition);
  display: inline-block;
}
.btn-outline-white:hover {
  background: rgba(255,255,255,.12);
  border-color: #fff;
  color: #fff;
  transform: translateY(-2px);
}

/* ── STATS STRIP ─────────────────────────────────────────── */
#stats {
  background: var(--dark);
  padding: 3.5rem 0;
}
.stat-item { text-align: center; padding: 1rem; }
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-suffix { color: var(--red); font-size: 2rem; font-weight: 800; }
.stat-label {
  font-size: .9rem;
  color: rgba(255,255,255,.7);
  margin-top: .4rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ── SECTION PADDING ─────────────────────────────────────── */
.section-pad { padding: 5rem 0; }
.section-pad-sm { padding: 3.5rem 0; }
.bg-light-gray { background: var(--light-bg); }
.bg-dark-section { background: var(--dark); color: #fff; }

/* ── SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
  border-top-color: var(--red);
}
.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  font-size: 1.8rem;
  color: #fff;
}
.service-card h4 {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: .6rem;
}
.service-card p { color: var(--gray); font-size: .93rem; line-height: 1.65; }

/* ── WHY US ──────────────────────────────────────────────── */
.why-us-item { display: flex; gap: 1.1rem; margin-bottom: 1.8rem; align-items: flex-start; }
.why-icon {
  flex-shrink: 0;
  width: 52px; height: 52px;
  background: rgba(192,57,43,.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--red);
}
.why-text h5 { font-size: 1rem; color: var(--dark); margin-bottom: .25rem; }
.why-text p  { color: var(--gray); font-size: .9rem; line-height: 1.6; }

/* ── BRANDS ──────────────────────────────────────────────── */
#brands { background: var(--light-bg); }
.brand-logo {
  background: #fff;
  border-radius: 10px;
  padding: 1.2rem 1.8rem;
  box-shadow: var(--shadow);
  display: flex; align-items: center; justify-content: center;
  height: 90px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.brand-logo:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.13);
  transform: translateY(-3px);
}
.brand-logo span {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--mid);
  letter-spacing: .04em;
  text-align: center;
}

/* ── REVIEWS ─────────────────────────────────────────────── */
#reviews { background: var(--white); }
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  height: 100%;
  border-left: 4px solid var(--red);
  position: relative;
}
.review-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .8rem; }
.review-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
}
.review-name { font-weight: 700; font-size: .92rem; color: var(--dark); }
.review-date { font-size: .78rem; color: var(--gray); }
.review-google { margin-left: auto; font-size: .8rem; color: var(--gray); display: flex; align-items: center; gap: .3rem; }

/* Carousel custom arrows */
.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: none;
  background: none;
  width: 44px; height: 44px;
}
.carousel-control-prev, .carousel-control-next {
  width: auto;
}
.carousel-btn {
  background: var(--red);
  border: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background var(--transition);
}
.carousel-btn:hover { background: var(--red-dark); }

/* ── GALLERY GRID ────────────────────────────────────────── */
.gallery-filter-btn {
  background: transparent;
  border: 2px solid var(--mid);
  color: var(--mid);
  border-radius: 3rem;
  padding: .4rem 1.2rem;
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .05em;
  transition: all var(--transition);
  cursor: pointer;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 240px;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(192,57,43,.0);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.gallery-item:hover .gallery-overlay {
  background: rgba(192,57,43,.55);
}
.gallery-overlay i {
  color: #fff;
  font-size: 2rem;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ── LIGHTBOX ────────────────────────────────────────────── */
.lightbox-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.active { display: flex; }
.lightbox-img {
  max-width: 92vw;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
}
.lightbox-close {
  position: absolute;
  top: 1.2rem; right: 1.5rem;
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav:hover { background: var(--red); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex; flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,.14);
}
.blog-card-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-category {
  position: absolute;
  top: .85rem; left: .85rem;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: 2rem;
}
.blog-card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex; flex-direction: column;
}
.blog-card-body h4 { font-size: 1.05rem; color: var(--dark); margin-bottom: .5rem; }
.blog-card-body p  { font-size: .9rem; color: var(--gray); line-height: 1.65; flex: 1; }
.blog-meta { font-size: .8rem; color: var(--gray); margin-bottom: .5rem; }
.blog-meta i { color: var(--red); margin-right: .3rem; }
.read-more {
  color: var(--red);
  font-weight: 700;
  font-size: .88rem;
  margin-top: 1rem;
  display: inline-flex; align-items: center; gap: .3rem;
  transition: gap var(--transition);
}
.read-more:hover { gap: .6rem; color: var(--red-dark); }

/* ── PAYMENT ─────────────────────────────────────────────── */
.payment-badge {
  display: flex; align-items: center; gap: .65rem;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 1rem 1.4rem;
  font-size: .92rem;
  font-weight: 600;
  color: var(--mid);
}
.payment-badge i { font-size: 1.4rem; color: var(--red); }

/* ── HOURS TABLE ─────────────────────────────────────────── */
.hours-table tr td { padding: .5rem .75rem; font-size: .95rem; }
.hours-table tr td:first-child { font-weight: 600; color: var(--dark); }
.hours-table tr td:last-child  { color: var(--gray); }
.hours-table .closed td { color: #e74c3c !important; opacity: .7; }
.hours-table .today td { background: rgba(192,57,43,.07); border-radius: 6px; }
.bg-dark-section .hours-table tr td:first-child { color: rgba(255,255,255,.9); }
.bg-dark-section .hours-table tr td:last-child  { color: rgba(255,255,255,.65); }

/* ── CONTACT ─────────────────────────────────────────────── */
.contact-info-card {
  background: var(--dark);
  color: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  height: 100%;
}
.contact-info-item {
  display: flex; gap: 1rem; align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-info-icon {
  width: 44px; height: 44px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: #fff;
}
.contact-info-item h6 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,.5); margin-bottom: .2rem; }
.contact-info-item p  { font-size: .97rem; color: rgba(255,255,255,.9); margin: 0; }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2.5rem;
}
.form-control, .form-select {
  border: 1.5px solid #dde1e7;
  border-radius: 8px;
  padding: .7rem 1rem;
  font-size: .95rem;
  transition: border-color var(--transition);
}
.form-control:focus, .form-select:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(192,57,43,.12);
}
.form-label { font-weight: 600; font-size: .88rem; color: var(--dark); margin-bottom: .35rem; }

/* ── MAP ─────────────────────────────────────────────────── */
#map-section iframe {
  width: 100%;
  height: 420px;
  border: none;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: #0d1117;
  color: rgba(255,255,255,.75);
  padding: 3.5rem 0 1.5rem;
}
.footer-brand img { height: 50px; margin-bottom: 1rem; }
.footer-brand p { font-size: .9rem; line-height: 1.7; max-width: 280px; }
.footer-col h6 {
  color: var(--white);
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: .55rem; }
.footer-links a {
  color: rgba(255,255,255,.65);
  font-size: .92rem;
  transition: color var(--transition);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--red); }
.footer-links i { font-size: .7rem; color: var(--red); }
.footer-social { display: flex; gap: .8rem; margin-top: .8rem; }
.social-btn {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: all var(--transition);
  font-size: .95rem;
}
.social-btn:hover { background: var(--red); color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 2.5rem;
  padding-top: 1.2rem;
  font-size: .83rem;
  text-align: center;
  color: rgba(255,255,255,.4);
}

/* ── PAGE HERO ───────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  padding: 7rem 0 4rem;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../assets/banner.jpg') center/cover no-repeat;
  opacity: .12;
}
.page-hero-content { position: relative; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); margin-bottom: .5rem; }
.page-hero p  { color: rgba(255,255,255,.75); font-size: 1.05rem; }
.breadcrumb { justify-content: center; background: none; padding: 0; margin-top: .8rem; }
.breadcrumb-item, .breadcrumb-item a { color: rgba(255,255,255,.6); font-size: .85rem; }
.breadcrumb-item.active { color: var(--red); }
.breadcrumb-item+.breadcrumb-item::before { color: rgba(255,255,255,.3); }

/* ── ARTICLE ─────────────────────────────────────────────── */
.article-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--mid) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.article-hero::before {
  content: '';
  position: absolute; inset: 0;
  opacity: .18;
  background-size: cover;
  background-position: center;
}
.article-hero-content { position: relative; color: #fff; max-width: 820px; margin: 0 auto; text-align: center; }
.article-hero-content h1 { font-size: clamp(1.7rem, 4vw, 2.8rem); line-height: 1.25; margin-bottom: .8rem; }
.article-hero-content p  { color: rgba(255,255,255,.75); font-size: 1rem; }
.article-category-badge {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 2rem;
  margin-bottom: 1rem;
}
.article-meta { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; color: rgba(255,255,255,.6); font-size: .85rem; }
.article-meta i { color: var(--red); margin-right: .35rem; }

.article-body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3a3a3a;
}
.article-body h2 { font-size: 1.5rem; color: var(--dark); margin: 2.2rem 0 .8rem; }
.article-body h3 { font-size: 1.2rem; color: var(--dark); margin: 1.8rem 0 .6rem; }
.article-body p  { margin-bottom: 1.2rem; text-align: justify; }
.article-body ul, .article-body ol { padding-left: 1.5rem; margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .5rem; }
.article-body strong { color: var(--dark); }
.article-body .tip-box {
  background: rgba(192,57,43,.06);
  border-left: 4px solid var(--red);
  border-radius: 0 8px 8px 0;
  padding: 1.2rem 1.4rem;
  margin: 1.8rem 0;
}
.article-body .tip-box strong { color: var(--red); }
.article-cover {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 48px rgba(0,0,0,.12);
  margin-bottom: 2.5rem;
}
.article-author-card {
  background: var(--light-bg);
  border-radius: var(--radius);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 3rem;
}
.author-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--mid));
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.related-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
  transition: transform var(--transition);
  text-decoration: none;
  color: inherit;
  display: block;
}
.related-card:hover { transform: translateY(-4px); color: inherit; }
.related-card img { width: 100%; height: 170px; object-fit: cover; }
.related-card-body { padding: 1rem 1.1rem; }
.related-card-body span { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--red); }
.related-card-body h5 { font-size: .95rem; color: var(--dark); margin-top: .3rem; line-height: 1.4; }

/* ── BACK TO TOP ─────────────────────────────────────────── */
#backToTop {
  position: fixed;
  bottom: 1.8rem; right: 1.8rem;
  width: 46px; height: 46px;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(192,57,43,.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  z-index: 999;
}
#backToTop.visible { opacity: 1; pointer-events: all; }
#backToTop:hover { transform: translateY(-3px); background: var(--red-dark); }

/* ── TOAST ───────────────────────────────────────────────── */
.toast-container { z-index: 9999; }

/* ── AOS OVERRIDE ────────────────────────────────────────── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .navbar-collapse { background: var(--dark); padding: 1rem; border-radius: 0 0 12px 12px; }
  #hero { min-height: 90vh; }
}
@media (max-width: 767px) {
  .section-pad { padding: 3.5rem 0; }
  .stat-item { padding: .5rem; }
  .contact-form-card, .contact-info-card { padding: 1.8rem 1.2rem; }
  #map-section iframe { height: 300px; }
  .gallery-item img { height: 190px; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .gallery-item img { height: 160px; }
}
