/* ===========================================================
   Orbit Core Pvt Ltd — Master Stylesheet
   Theme inspired by company logo: warm orange + steel grey
   =========================================================== */

:root {
  --orange: #F5A623;
  --orange-dark: #D88A0E;
  --orange-light: #FCD9A0;
  --grey-900: #2A2A2A;
  --grey-700: #4A4A4A;
  --grey-600: #5C5C5C;
  --grey-400: #8A8A8A;
  --grey-200: #E6E6E6;
  --grey-100: #F4F4F4;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 6px 18px rgba(0,0,0,0.08);
  --shadow-lg: 0 14px 40px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.25s ease;
  --container: 1200px;
  --font-body: 'Inter', 'Segoe UI', Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Inter', 'Segoe UI', Roboto, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--grey-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }
ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--grey-900);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); letter-spacing: -0.015em; margin-bottom: 0.6em; }
h3 { font-size: 1.35rem; margin-bottom: 0.5em; }
h4 { font-size: 1.1rem; margin-bottom: 0.4em; }
p { margin-bottom: 1em; color: var(--grey-700); }

.text-orange { color: var(--orange); }
.text-grey { color: var(--grey-600); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 90px 0; }
section.tight { padding: 60px 0; }
.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}
.section-title .eyebrow {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title p { color: var(--grey-600); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(245,166,35,0.35);
}
.btn-primary:hover {
  background: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(245,166,35,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--grey-900);
  border-color: var(--grey-900);
}
.btn-outline:hover {
  background: var(--grey-900);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--orange);
  border-color: var(--orange);
}
.btn-ghost:hover {
  background: var(--orange);
  color: var(--white);
}

/* ---------- Header / Navigation ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--grey-200);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--grey-900);
}
.logo img {
  height: 54px;
  width: auto;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text .brand { font-size: 1.05rem; letter-spacing: 0.02em; }
.logo-text .tagline { font-size: 0.7rem; color: var(--grey-400); font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a {
  color: var(--grey-700);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 6px 0;
}
.nav a:hover, .nav a.active { color: var(--orange); }
.nav a.active:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}
.nav .btn {
  padding: 10px 22px;
  font-size: 0.9rem;
}
.nav a.btn-primary,
.nav a.btn-primary:hover,
.nav a.btn-primary.active {
  color: var(--white);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--grey-900);
  margin: 5px 0;
  transition: var(--transition);
}

@media (max-width: 980px) {
  .nav {
    position: fixed;
    top: 78px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    gap: 0;
    padding: 20px 24px 30px;
    border-bottom: 1px solid var(--grey-200);
    transform: translateY(-110%);
    transition: transform 0.3s ease;
    align-items: stretch;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 0; border-bottom: 1px solid var(--grey-100); }
  .nav .btn { margin-top: 14px; align-self: flex-start; }
  .menu-toggle { display: block; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 100px 0 110px;
  background: linear-gradient(135deg, #FFF5E2 0%, #FFFFFF 55%, #F4F4F4 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(245,166,35,0.18), transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -160px;
  width: 460px; height: 460px;
  background: radial-gradient(circle, rgba(92,92,92,0.10), transparent 70%);
  border-radius: 50%;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero h1 .accent { color: var(--orange); }
.hero p.lead {
  font-size: 1.15rem;
  color: var(--grey-700);
  margin-bottom: 32px;
  max-width: 580px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta {
  display: flex; gap: 32px;
  margin-top: 48px; flex-wrap: wrap;
}
.hero-meta .stat {
  border-left: 3px solid var(--orange);
  padding-left: 14px;
}
.hero-meta .num {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--grey-900);
}
.hero-meta .label {
  font-size: 0.82rem;
  color: var(--grey-600);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb {
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #FFFFFF, #F4F4F4 55%, #E6E6E6);
  box-shadow: var(--shadow-lg);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-orb img {
  max-width: 72%;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.08));
}
.hero-orb::before {
  content: '';
  position: absolute;
  inset: -25px;
  border: 2px dashed rgba(245,166,35,0.5);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 880px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-cta, .hero-meta { justify-content: center; }
  .hero-meta .stat { border: 0; padding: 0; text-align: center; }
  .hero-orb { width: 320px; height: 320px; }
  .hero p.lead { margin-left: auto; margin-right: auto; }
}

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  position: relative;
  background: linear-gradient(135deg, var(--grey-900) 0%, #3a3a3a 60%, var(--grey-700) 100%);
  color: var(--white);
  padding: 110px 0 90px;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 65%);
  border-radius: 50%;
}
.page-banner .container { position: relative; z-index: 2; }
.page-banner .eyebrow {
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: 14px;
}
.page-banner h1 { color: var(--white); margin-bottom: 16px; }
.page-banner p {
  color: rgba(255,255,255,0.78);
  max-width: 720px;
  font-size: 1.08rem;
}
.breadcrumbs {
  margin-top: 22px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}
.breadcrumbs a { color: rgba(255,255,255,0.85); }
.breadcrumbs a:hover { color: var(--orange); }
.breadcrumbs span { margin: 0 8px; color: rgba(255,255,255,0.4); }

/* ---------- Cards / Service grid ---------- */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}
.card .icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 1.4rem;
  box-shadow: 0 6px 14px rgba(245,166,35,0.32);
}
.card .icon.icon-img {
  background: var(--grey-100);
  box-shadow: none;
  padding: 10px;
}
.card .icon.icon-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.card .icon.grey {
  background: linear-gradient(135deg, var(--grey-700) 0%, var(--grey-900) 100%);
  box-shadow: 0 6px 14px rgba(0,0,0,0.18);
}
.card h3 { color: var(--grey-900); }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--orange-dark);
}
.card .card-link::after { content: '→'; transition: transform var(--transition); }
.card .card-link:hover::after { transform: translateX(4px); }

/* Feature list */
.feature-list { padding-left: 0; }
.feature-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  color: var(--grey-700);
}
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 22px; height: 22px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ---------- Split section (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split .badge {
  display: inline-block;
  background: var(--orange-light);
  color: var(--orange-dark);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.split-visual {
  background: linear-gradient(135deg, var(--grey-100) 0%, #fff 100%);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  box-shadow: var(--shadow-md);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
}
.split-visual.dark {
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-700) 100%);
  color: var(--white);
}

/* ---------- Stats strip ---------- */
.stats-strip {
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-700) 100%);
  color: var(--white);
  padding: 60px 0;
}
.stats-strip .grid-4 { gap: 30px; }
.stat-block {
  text-align: center;
  padding: 0 12px;
}
.stat-block .num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.stat-block .label {
  color: rgba(255,255,255,0.78);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 60px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 50px rgba(245,166,35,0.30);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 8px; }
.cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 0; }
.cta-banner .btn {
  background: var(--white);
  color: var(--orange-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,0.18);
}
.cta-banner .btn:hover { background: var(--grey-900); color: var(--white); }
@media (max-width: 760px) { .cta-banner { flex-direction: column; text-align: center; padding: 40px 28px; } }

/* ---------- Logo cloud (cloud partners) ---------- */
.partner-strip {
  background: #fff;
  padding: 56px 0;
  text-align: center;
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}
.partner-label {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--grey-400);
  margin-bottom: 36px;
}
.partner-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 0 56px;
}
.partner-card img {
  width: 130px;
  height: 48px;
  object-fit: contain;
  display: block;
}
.partner-card span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--grey-400);
  letter-spacing: 0.02em;
}
.partner-divider {
  width: 1px;
  height: 64px;
  background: var(--grey-200);
  flex-shrink: 0;
}
@media (max-width: 640px) {
  .partner-divider { display: none; }
  .partner-card { padding: 20px 32px; }
}

/* ---------- Founders / team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 880px) { .team-grid { grid-template-columns: 1fr; } }
.team-card {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--orange-light);
}
.avatar {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-dark) 100%);
  color: var(--white);
  font-size: 2.4rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  box-shadow: 0 8px 22px rgba(245,166,35,0.32);
  border: 4px solid var(--white);
  outline: 2px solid var(--grey-200);
  overflow: hidden;
}
.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.team-card h3 { margin-bottom: 4px; }
.role {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  display: block;
}
.social-row {
  display: flex; justify-content: center; gap: 12px;
  margin-top: 18px;
}
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--grey-100);
  display: flex; align-items: center; justify-content: center;
  color: var(--grey-700);
  font-size: 0.95rem;
  transition: all var(--transition);
}
.social-row a:hover { background: var(--orange); color: var(--white); }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 50px;
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  background: linear-gradient(135deg, var(--grey-900) 0%, var(--grey-700) 100%);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  position: relative;
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  bottom: -80px; right: -80px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(245,166,35,0.35), transparent 70%);
  border-radius: 50%;
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.78); }
.info-block {
  display: flex; gap: 16px;
  align-items: flex-start;
  margin-top: 26px;
  position: relative;
  z-index: 2;
}
.info-block .icon-circle {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(245,166,35,0.18);
  color: var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.05rem;
}
.info-block .label {
  color: rgba(255,255,255,0.6);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.info-block .value {
  color: var(--white);
  font-weight: 500;
  line-height: 1.4;
}
.info-block .value a { color: var(--white); }
.info-block .value a:hover { color: var(--orange); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--grey-700);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.96rem;
  color: var(--grey-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(245,166,35,0.15);
}
.field textarea { min-height: 130px; resize: vertical; }
.form-msg {
  margin-top: 18px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}
.form-msg.success {
  background: #E6F7E9;
  color: #1F7A33;
  border: 1px solid #BFE6C5;
  display: block;
}
.form-msg.error {
  background: #FDECEA;
  color: #B3261E;
  border: 1px solid #F5C1BD;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--grey-900);
  color: rgba(255,255,255,0.78);
  padding: 70px 0 24px;
  font-size: 0.93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 {
  color: var(--white);
  font-size: 0.98rem;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.site-footer a { color: rgba(255,255,255,0.72); }
.site-footer a:hover { color: var(--orange); }
.footer-col ul li { margin-bottom: 9px; }
.footer-brand p { color: rgba(255,255,255,0.62); font-size: 0.92rem; }
.footer-brand .logo { color: var(--white); margin-bottom: 18px; }
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: rgba(255,255,255,0.5); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}
.footer-bottom .social-row a {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.78);
}
.footer-bottom .social-row a:hover { background: var(--orange); color: var(--white); }

/* ---------- Small helpers ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 12px; }
.mt-2 { margin-top: 24px; }
.mt-3 { margin-top: 36px; }
.mt-4 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.bg-light { background: var(--grey-100); }
.bg-white { background: var(--white); }

/* ---------- Map embed ---------- */
.map-wrap {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--grey-200);
  box-shadow: var(--shadow-sm);
}
.map-wrap iframe { width: 100%; height: 360px; border: 0; display: block; }

/* ---------- Accordion / FAQ ---------- */
.accordion-item {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: all var(--transition);
}
.accordion-item.active { border-color: var(--orange); }
.accordion-q {
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 20px 24px;
  font-family: inherit;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--grey-900);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.accordion-q::after { content: '+'; color: var(--orange); font-size: 1.4rem; }
.accordion-item.active .accordion-q::after { content: '−'; }
.accordion-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 24px;
  color: var(--grey-700);
  transition: all 0.35s ease;
}
.accordion-item.active .accordion-a { max-height: 320px; padding: 0 24px 22px; }
