/* ==========================================================================
   Mumbai Ahmedabad Transport — shared stylesheet
   ========================================================================== */

:root {
  --red: #e2211c;
  --blue: #1b2e7c;
  --dark: #1a1a1a;
  --gray: #555;
  --light-gray: #f4f5f8;
  --border: #e2e4ea;
  --white: #ffffff;
  --orange: #e8722c;
  --radius: 10px;
  --shadow: 0 4px 16px rgba(20, 30, 70, 0.08);
  --max-width: 1180px;
  --font-body: 'Inter', 'Segoe UI', Arial, sans-serif;
  --font-heading: 'Poppins', 'Segoe UI', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.logo-text, .footer-logo,
.hero-eyebrow, .stat .num {
  font-family: var(--font-heading);
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

ul { list-style: none; margin: 0; padding: 0; }

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

section { padding: 60px 0; }

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 8px;
}

.section-sub {
  text-align: center;
  color: var(--gray);
  max-width: 640px;
  margin: 0 auto 40px;
}

.bg-light { background: var(--light-gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(226, 33, 28, 0.35);
}
.btn-red:hover { background: #c81b17; }

.btn-blue {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(27, 46, 124, 0.35);
}
.btn-blue:hover { background: #142561; }

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--blue); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Icons (Font Awesome) ---------- */
.ic {
  font-size: 15px;
  line-height: 1;
  color: currentColor;
  flex: none;
}

/* ---------- Top info strip ---------- */
.topbar {
  background: linear-gradient(90deg, #0d1533, var(--dark) 60%);
  color: #b8bcd6;
  font-size: 0.82rem;
  border-bottom: 3px solid var(--red);
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 9px;
  padding-bottom: 9px;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-contact,
.topbar-meta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.topbar-contact li,
.topbar-meta li {
  display: flex;
  align-items: center;
  gap: 7px;
}
.topbar-contact a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #dfe1f0;
  font-weight: 500;
  transition: color 0.2s ease;
}
.topbar-contact a:hover { color: var(--white); }
.topbar-contact .ic,
.topbar-meta .ic { color: #ff8f8c; }
.topbar-gst { color: #99a0c2; letter-spacing: 0.3px; }
.topbar-cta {
  background: var(--red);
  color: var(--white) !important;
  font-weight: 700;
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 0.3px;
}
.topbar-cta:hover { background: #c81b17; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo img { width: 54px; height: 54px; }
.logo-text { line-height: 1.15; }
.logo-text .l1 { color: var(--red); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.5px; }
.logo-text .l2 { color: var(--blue); font-weight: 800; font-size: 1.3rem; letter-spacing: 0.5px; }

nav.main-nav {
  margin-left: auto;
}
nav.main-nav ul {
  display: flex;
  gap: 8px;
}
nav.main-nav a {
  position: relative;
  display: block;
  padding: 10px 6px;
  margin: 0 8px;
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--dark);
}
nav.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: width 0.25s ease;
}
nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--red);
}
nav.main-nav a:hover::after,
nav.main-nav a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 11px 22px;
  border-radius: 50px;
  box-shadow: 0 6px 16px rgba(27, 46, 124, 0.3);
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-cta:hover { background: #142561; transform: translateY(-2px); }
.nav-cta .ic { color: #ff9a97; }

@media (max-width: 1080px) {
  .nav-cta { display: none; }
}
@media (max-width: 720px) {
  .topbar-email { display: none; }
}
@media (max-width: 560px) {
  .topbar-gst { display: none; }
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
}

/* ---------- Hero image slider ---------- */
.hero-slider {
  position: relative;
  height: 88vh;
  min-height: 560px;
  max-height: 760px;
  overflow: hidden;
  background: var(--dark);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s ease;
  z-index: 1;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
  transition: transform 7s ease-out;
}
.hero-slide.active .hero-slide-bg { transform: scale(1); }

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,16,38,0.86) 0%, rgba(10,16,38,0.58) 45%, rgba(226,33,28,0.35) 100%);
}

.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  color: var(--white);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ffd7d5;
  font-weight: 700;
  letter-spacing: 3px;
  font-size: 0.82rem;
  text-transform: uppercase;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
}
.hero-eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--red);
  display: inline-block;
  border-radius: 2px;
}

.hero-slide-content h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(22px);
}

.hero-slide-content p {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  max-width: 560px;
  color: #e6e9f5;
  margin: 0 0 32px;
  opacity: 0;
  transform: translateY(22px);
}

.hero-slide .btn-row {
  opacity: 0;
  transform: translateY(22px);
}

.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-slide-content h1,
.hero-slide.active .hero-slide-content p,
.hero-slide.active .btn-row {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.9s ease 0.5s, transform 0.9s ease 0.5s;
}
.hero-slide.active .hero-slide-content h1 { transition-delay: 0.65s; }
.hero-slide.active .hero-slide-content p { transition-delay: 0.8s; }
.hero-slide.active .btn-row { transition-delay: 0.95s; }

.hero-nav {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
}
.hero-arrow {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, transform 0.2s ease;
}
.hero-arrow:hover { background: var(--red); border-color: var(--red); transform: translateY(-2px); }

.hero-dots {
  display: flex;
  gap: 10px;
}
.hero-dot {
  width: 34px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  position: relative;
}
.hero-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleX(0);
  transform-origin: left;
}
.hero-dot.active::after { animation: heroDotFill 6s linear forwards; }
@keyframes heroDotFill {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@media (max-width: 640px) {
  .hero-slider { height: 78vh; min-height: 480px; }
  .hero-nav { bottom: 18px; gap: 14px; }
}

/* ---------- Service ticker (scrolling city strip) ---------- */
.service-ticker {
  background: linear-gradient(90deg, var(--blue), #24398f 60%, var(--red) 160%);
  padding: 0;
}
.ticker-wrap {
  display: flex;
  align-items: stretch;
  padding: 0;
}
.ticker-tag {
  flex: none;
  display: flex;
  align-items: center;
  background: var(--red);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 14px 24px;
  white-space: nowrap;
  position: relative;
  z-index: 2;
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0% 100%);
  margin-right: -14px;
}
.ticker-viewport {
  flex: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 96%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: tickerScroll 20s linear infinite;
  padding-left: 30px;
}
.ticker-track span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  padding: 0 22px;
  position: relative;
}
.ticker-track span::after {
  content: "\2022";
  position: absolute;
  right: -3px;
  color: rgba(255,255,255,0.5);
}
.ticker-track span:last-child::after { content: ""; }

@keyframes tickerScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track { animation: none; }
}
@media (max-width: 640px) {
  .ticker-tag { padding: 12px 16px; font-size: 0.75rem; }
  .ticker-track span { font-size: 0.85rem; padding: 0 16px; }
}

/* ---------- Page header banner (inner pages) ---------- */
.page-header {
  position: relative;
  background-color: var(--blue);
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(10,16,38,0.88) 0%, rgba(27,46,124,0.8) 55%, rgba(226,33,28,0.55) 140%);
}
.page-header .container { position: relative; z-index: 2; }
.page-header h1 { margin: 0 0 10px; font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; }
.page-header .crumbs { color: #dfe3f6; font-size: 0.9rem; }
.page-header .crumbs a { color: var(--white); font-weight: 600; }

@media (max-width: 640px) {
  .page-header { padding: 70px 0; }
}

/* ---------- Highlight / feature cards ---------- */
.grid {
  display: grid;
  gap: 26px;
}
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(20,30,70,0.14); }
.card .icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--red);
}
.card h3 { margin: 0 0 8px; color: var(--blue); font-size: 1.1rem; }
.card p { color: var(--gray); font-size: 0.92rem; margin: 0; }

/* ---------- Branches ---------- */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .branch-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px) { .branch-grid { grid-template-columns: repeat(2, 1fr); } }

.branch-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--blue);
  box-shadow: var(--shadow);
}
.branch-item.head {
  border-left-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}
.branch-item.head span { display: block; font-size: 0.72rem; font-weight: 600; color: #cfd6f2; letter-spacing: 1px; margin-top: 4px; }

/* ---------- About page ---------- */
.about-flex {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}
.about-flex .about-media { flex: 1 1 340px; }
.about-flex .about-copy { flex: 1 1 420px; }
.about-media {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.stat-row { display: flex; gap: 30px; margin-top: 24px; flex-wrap: wrap; }
.stat { text-align: center; }
.stat .num { font-size: 2rem; font-weight: 800; color: var(--red); }
.stat .label { font-size: 0.85rem; color: var(--gray); font-weight: 600; }

/* ---------- Process steps ---------- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.process-step { text-align: center; }
.process-step .step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.3rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  box-shadow: 0 6px 16px rgba(226, 33, 28, 0.3);
}
.process-step h3 { color: var(--blue); margin: 0 0 8px; font-size: 1.05rem; }
.process-step p { color: var(--gray); font-size: 0.9rem; margin: 0; }

@media (max-width: 900px) { .process-steps { grid-template-columns: 1fr 1fr; row-gap: 34px; } }
@media (max-width: 560px) { .process-steps { grid-template-columns: 1fr; } }

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  font-weight: 500;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 20px;
  text-align: center;
}

/* ---------- Services table ---------- */
.route-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  overflow: hidden;
}
.route-table th, .route-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.route-table th {
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
}
.route-table tr:last-child td { border-bottom: none; }
.route-table tr:nth-child(even) td { background: var(--light-gray); }

/* ---------- Image gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(to top, rgba(10,20,40,0.85), transparent);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
@media (max-width: 900px) { .gallery-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .gallery-grid { grid-template-columns: 1fr; } }

/* ---------- Clients scroller (above footer, Owl Carousel) ---------- */
.clients-strip {
  padding: 56px 0 60px;
  background: var(--white);
}
.clients-carousel .owl-stage { display: flex; align-items: center; }
.client-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 10px;
}
.client-logo-item img {
  height: 64px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.client-logo-item img:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.client-logo-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray);
  white-space: nowrap;
}

/* ---------- Contact strip (above footer) ---------- */
.contact-strip {
  background: linear-gradient(100deg, var(--blue) 0%, #24398f 55%, var(--red) 140%);
  padding: 38px 0;
}
.contact-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-strip-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-left: 26px;
  border-left: 1px solid rgba(255,255,255,0.2);
}
.contact-strip-item:first-child { border-left: none; padding-left: 0; }
.csi-icon {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.csi-icon .ic { font-size: 20px; }
.contact-strip-item .csi-label {
  display: block;
  color: #cdd3f5;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 3px;
}
.contact-strip-item a,
.contact-strip-item .csi-value {
  color: var(--white);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}
.contact-strip-item a:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .contact-strip-grid { grid-template-columns: 1fr 1fr; row-gap: 24px; }
  .contact-strip-item:nth-child(3) { border-left: none; padding-left: 0; }
}
@media (max-width: 560px) {
  .contact-strip-grid { grid-template-columns: 1fr; }
  .contact-strip-item { border-left: none; padding-left: 0; }
}

/* ---------- Forms ---------- */
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 36px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.88rem; color: var(--dark); }
.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--light-gray);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-note { font-size: 0.82rem; color: var(--gray); margin-top: 14px; }
.form-error {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fdeceb;
  color: var(--red);
  font-weight: 600;
  font-size: 0.9rem;
}
.form-error.show { display: block; }

/* ---------- Thank-you page ---------- */
.thanks-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(226, 33, 28, 0.3);
}
.thanks-icon .ic { font-size: 34px; }
.next-steps { display: flex; flex-direction: column; gap: 22px; }
.next-item { display: flex; align-items: flex-start; gap: 20px; }
.next-item .step-num {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(226, 33, 28, 0.3);
}
.next-item p { margin: 0; padding-top: 10px; color: var(--gray); }

/* ---------- Contact info list ---------- */
.info-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.info-list .ico {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--light-gray);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}
.info-list strong { display: block; color: var(--blue); margin-bottom: 2px; }
.info-list span, .info-list a { color: var(--gray); font-size: 0.94rem; }

.map-frame {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  height: 360px;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; }

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--dark);
  color: #c7cadb;
  padding-top: 50px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 34px;
  padding-bottom: 34px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-grid h4 {
  color: var(--white);
  margin: 0 0 18px;
  font-size: 1rem;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 12px;
}
.footer-grid h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 3px;
  background: var(--red);
  border-radius: 2px;
}
.footer-grid p, .footer-grid li { font-size: 0.88rem; margin-bottom: 12px; color: #b7bad0; }
.footer-grid a:hover { color: var(--white); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 38px; height: 38px; }
.footer-logo .l1 { color: var(--red); font-weight: 800; }
.footer-logo .l2 { color: #8ea0e6; font-weight: 800; }

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.footer-contact-list .ic { color: var(--red); margin-top: 3px; }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #dfe1f0;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.footer-social a:hover { background: var(--red); color: var(--white); transform: translateY(-3px); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #8a8dab;
}
.footer-bottom a { color: #b7bad0; }

.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 6px 18px rgba(226,33,28,0.4);
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 90;
}
.back-to-top.show { opacity: 1; pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px); }

.whatsapp-float {
  position: fixed;
  left: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 6px 18px rgba(37,211,102,0.45);
  z-index: 90;
}

/* ---------- Mobile nav ---------- */
@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  nav.main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    display: none;
    flex-direction: column;
  }
  nav.main-nav.open { display: flex; }
  nav.main-nav ul { flex-direction: column; padding: 10px; gap: 2px; }
  nav.main-nav a { padding: 12px 16px; }
  .about-flex { flex-direction: column; }
}
