:root {
  --bg: #ffffff;
  --bg-soft: #f8fafc;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-strong: rgba(0, 0, 0, 0.06);
  --text: #0f172a;
  --muted: #475569;
  --accent: #ff4d43;
  /* R 255, G 77, B 67 */
  --accent-2: #ff6f67;
  --accent-3: #cc3e35;
  --accent-4: #e6453c;
  --border: rgba(0, 0, 0, 0.08);
  --shadow: 0 30px 80px rgba(15, 23, 42, 0.06);
  --glow: rgba(255, 77, 67, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 77, 67, 0.04), transparent 24%),
    radial-gradient(circle at 90% 0%, rgba(230, 69, 60, 0.03), transparent 26%),
    radial-gradient(circle at 50% 100%, rgba(255, 77, 67, 0.03), transparent 24%),
    #ffffff;
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
}

body::before {
  width: 460px;
  height: 460px;
  top: -160px;
  right: -110px;
  background: radial-gradient(circle, rgba(255, 77, 67, 0.06), transparent 72%);
  filter: blur(16px);
  animation: blobDrift 11s ease-in-out infinite alternate;
}

body::after {
  width: 380px;
  height: 380px;
  bottom: -130px;
  left: -100px;
  background: radial-gradient(circle, rgba(230, 69, 60, 0.04), transparent 72%);
  filter: blur(16px);
  animation: blobDrift 13s ease-in-out infinite alternate-reverse;
}

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

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

.container,
.hero,
.section,
.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
}

main {
  padding-top: 5.5rem;
}

header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

header.header-scrolled {
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
}

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

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 999px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 48px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-line {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.28em;
  color: var(--text);
}

.brand-accent {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-top: 0.22rem;
}

.nav-links {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-links a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 77, 67, 0.08) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 0.45s ease;
}

.nav-links a:hover::before,
.nav-links a.active::before {
  transform: translateX(120%);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: rgba(255, 77, 67, 0.06);
  box-shadow: inset 0 0 0 1px rgba(255, 77, 67, 0.12), 0 10px 24px rgba(255, 77, 67, 0.06);
  transform: translateY(-1px);
}

.nav-cta {
  background: linear-gradient(135deg, var(--accent), var(--accent-4));
  color: #ffffff !important;
  box-shadow: 0 12px 24px rgba(255, 77, 67, 0.2);
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  padding: 5rem 0 4rem;
  align-items: center;
}

.hero-content h1,
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.05;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 800;
  font-size: 0.78rem;
  margin-bottom: 0.8rem;
}

.hero p,
.card p,
.service-card p,
.contact-info p,
.policy-page p,
.policy-page li,
.showcase-copy p,
.process-card p,
.feature-card p {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  margin: 1.4rem 0 1.2rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-4));
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(255, 77, 67, 0.24);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: rgba(0, 0, 0, 0.03);
}

.hero-tags {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-tags span,
.hero-badges span {
  background: rgba(0, 0, 0, 0.03);
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  font-size: 0.92rem;
}

.hero-badges {
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.4rem;
}

.hero-stats div {
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 0.9rem;
}

.hero-stats strong {
  display: block;
  font-size: 1.1rem;
  color: var(--accent);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-cred {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.hero-cred div {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px solid var(--border);
}

.hero-cred strong,
.about-strip strong,
.contact-introline strong {
  display: block;
  color: var(--text);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.hero-cred span,
.about-strip span,
.contact-introline span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  position: relative;
  padding: 1rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(255, 77, 67, 0.06), rgba(230, 69, 60, 0.04));
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-style: preserve-3d;
  backdrop-filter: blur(24px) saturate(180%);
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: -40% 20% auto auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 77, 67, 0.15), transparent 70%);
  animation: pulseGlow 5s ease-in-out infinite alternate;
}

.hero-panel img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.hero-panel-card {
  position: absolute;
  bottom: 1.8rem;
  left: 1.8rem;
  right: 1.8rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  z-index: 2;
}

.hero-panel-card div {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  padding: 1rem;
  backdrop-filter: blur(10px);
}

.hero-panel-card strong {
  display: block;
  font-size: 1.2rem;
  color: var(--accent);
}

.hero-panel-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section {
  padding: 2rem 0 4rem;
}

.alt-section {
  padding-top: 1rem;
}

.about-grid,
.services-grid,
.contact-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 1.2rem;
}

.about-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-strip,
.service-band,
.contact-introline {
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(0, 0, 0, 0.02);
  border-radius: 16px;
  padding: 1rem 1.15rem;
  display: grid;
  gap: 0.9rem;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
}

.story-band {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

.story-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 1.2rem;
  align-items: center;
  padding: 1rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.story-row img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.story-row span {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 800;
}

.story-row h3 {
  margin: 0.35rem 0 0.4rem;
  font-size: 1.35rem;
}

.story-row p {
  margin: 0;
  color: var(--muted);
}

.about-strip {
  margin-top: 1.4rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-band {
  margin-top: 1.35rem;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.service-band span {
  text-align: center;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.6rem 0.75rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.capability-grid div {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.capability-grid strong {
  display: block;
  color: var(--text);
  margin-bottom: 0.3rem;
}

.capability-grid p {
  margin: 0;
  color: var(--muted);
}

.contact-introline {
  margin-bottom: 0.35rem;
}

.contact-belt {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.contact-belt span {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.04);
  color: var(--text);
  font-size: 0.88rem;
}

.testimonial-stream {
  display: grid;
  gap: 1rem;
}

.testimonial-line {
  padding: 1rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.testimonial-line p {
  margin: 0 0 0.6rem;
}

.testimonial-line strong {
  color: var(--accent);
}

.final-cta {
  padding-bottom: 5rem;
}

.final-cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 1.4rem;
  text-align: center;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(0, 0, 0, 0.02);
}

.final-cta-inner h2 {
  margin-bottom: 0.7rem;
}

.final-cta-inner p {
  color: var(--muted);
  margin: 0 auto 1rem;
  max-width: 760px;
}

.card,
.service-card,
.contact-form,
.contact-info,
.policy-card,
.showcase-card,
.process-card,
.feature-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  backdrop-filter: blur(12px) saturate(130%);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card::before,
.service-card::before,
.contact-form::before,
.contact-info::before,
.policy-card::before,
.showcase-card::before,
.process-card::before,
.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.02), transparent 35%, transparent 70%, rgba(0, 0, 0, 0.01));
  pointer-events: none;
  transform: translateZ(2px);
}

.card,
.service-card,
.contact-info,
.policy-card,
.process-card {
  padding: 1rem;
}

.showcase-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.showcase-card {
  overflow: hidden;
}

.showcase-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.showcase-card:hover img {
  transform: scale(1.06);
}

.showcase-copy {
  padding: 0.9rem 1rem 1rem;
}

.showcase-copy h3 {
  margin: 0 0 0.25rem;
  font-size: 1.05rem;
}

.showcase-copy p {
  font-size: 0.85rem;
  line-height: 1.45;
}

.services-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.8rem;
  border: 1px solid var(--border);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover img {
  transform: scale(1.06);
}

.card-icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(53, 217, 255, 0.15), rgba(245, 130, 32, 0.15));
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--accent);
}

.card-icon {
  width: 22px;
  height: 22px;
}

.process-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.process-card span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.testimonial-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  align-items: start;
}

.contact-form {
  padding: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  position: relative;
  overflow: hidden;
  width: 100%;
}

.contact-form .btn-primary {
  align-self: flex-start;
}

.contact-form::before {
  content: '';
  position: absolute;
  inset: -40% auto auto -20%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 77, 67, 0.12), transparent 70%);
  animation: pulseGlow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  font: inherit;
  background: rgba(0, 0, 0, 0.02);
  color: var(--text);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 77, 67, 0.4);
  box-shadow: 0 0 0 3px rgba(255, 77, 67, 0.1);
  transform: translateY(-1px);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #64748b;
}

footer {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 3.5rem 0 2.4rem;
  color: var(--muted);
  margin-top: 2rem;
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  top: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.footer-shell {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 2.5rem 0 2rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  position: relative;
  overflow: hidden;
}

.footer-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 20%, rgba(255, 77, 67, 0.04), transparent 28%), radial-gradient(circle at 85% 10%, rgba(230, 69, 60, 0.03), transparent 24%);
}

.footer-column h4 {
  color: var(--text);
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0 0 1.9rem;
}

/* Contact List Styles */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.15rem 0;
}

.icon-wrapper {
  color: var(--accent);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.2rem;
}

.footer-icon {
  width: 24px;
  height: 24px;
}

.contact-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  line-height: 1.5;
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-text strong {
  color: var(--text);
  font-weight: 600;
}

/* Connect List Styles */
.footer-connect {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.social-links {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.social-links a {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.social-links a:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 77, 67, 0.3);
}

.social-links a svg {
  width: 20px;
  height: 20px;
}

/* Map Card Styles */
.map-card-container {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 0;
}

.map-card-header {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 1rem 1.25rem;
  background: rgba(0, 0, 0, 0.01);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.map-heading-icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
}

.map-iframe-wrapper {
  position: relative;
  width: 100%;
  height: 280px;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.directions-btn {
  position: absolute;
  bottom: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-4) 100%);
  border-radius: 30px;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(255, 77, 67, 0.3);
  transition: all 0.3s ease;
  z-index: 10;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.directions-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 77, 67, 0.4);
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 100%);
}

.btn-icon {
  width: 12px;
  height: 12px;
  transform: rotate(45deg);
}

/* Footer Bottom */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 0;
  padding-top: 1.6rem;
  margin-top: 2rem;
  font-size: 0.9rem;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 100vw;
  top: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
}

.footer-bottom .copyright {
  margin: 0;
  color: var(--muted);
}

.bottom-links {
  display: flex;
  gap: 1.5rem;
}

.bottom-links a {
  color: var(--muted);
  transition: color 0.3s ease;
}

.bottom-links a:hover {
  color: var(--accent);
}

.location-card {
  padding: 0;
}

.location-hero {
  display: grid;
  gap: 1.1rem;
}

.location-hero-copy {
  max-width: 760px;
  padding: 0.25rem 0 0.4rem;
}

.location-hero-copy h1,
.location-intro h1 {
  margin: 0 0 0.7rem;
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
}

.location-shell {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 1.6rem;
  align-items: stretch;
  padding: 2rem;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #ffffff;
  box-shadow: 0 14px 38px rgba(15, 23, 42, 0.05);
}

.location-details {
  padding: 1.4rem;
  border-radius: 20px;
  background: transparent;
  border: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-map-panel {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.04);
}

.location-map iframe {
  width: 100%;
  min-height: 320px;
  border: 0;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.04);
}

.fade-up,
.fade-in {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  animation-delay: var(--delay, 0s);
}

.fade-up.is-visible,
.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.card:hover,
.service-card:hover,
.showcase-card:hover,
.feature-card:hover,
.contact-form:hover,
.contact-info:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.06);
}

section[id],
.policy-page {
  scroll-margin-top: 100px;
}

@keyframes float {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(0, 18px, 0) scale(1.06);
  }
}

@keyframes blobDrift {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }

  to {
    transform: translate3d(20px, 20px, 0) scale(1.06);
  }
}

@keyframes pulseGlow {
  from {
    transform: scale(0.95) translate(0, 0);
    opacity: 0.55;
  }

  to {
    transform: scale(1.1) translate(-10px, 14px);
    opacity: 0.95;
  }
}

.section-glow {
  position: relative;
  padding: 3.5rem 3rem 4.5rem;
  background: rgba(0, 0, 0, 0.01);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 32px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.section-glow::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 77, 67, 0.04), transparent 30%, rgba(230, 69, 60, 0.03));
  border-radius: 32px;
  pointer-events: none;
}

@media (max-width: 640px) {
  .section-glow {
    padding: 2.5rem 1.5rem;
  }
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

@media (max-width: 1100px) {
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.feature-card {
  padding: 1rem;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow: 0 8px 22px rgba(4, 7, 18, 0.18);
  backdrop-filter: blur(12px);
}

.feature-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.feature-card .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 0.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 77, 67, 0.12), rgba(230, 69, 60, 0.12));
  color: var(--accent);
  font-weight: 800;
}

@media (max-width: 1024px) {

  .about-grid,
  .services-grid,
  .showcase-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero,
  .contact-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.2rem;
  }

  .hero-panel-card {
    position: static;
    margin-top: 1rem;
  }

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-cred,
  .about-strip,
  .service-band,
  .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-band {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .story-row {
    grid-template-columns: 1fr;
  }

  .story-row img {
    height: 220px;
  }
}

@media (max-width: 640px) {

  .about-grid,
  .services-grid,
  .showcase-grid,
  .process-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-cred,
  .about-strip,
  .service-band,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .service-band span {
    text-align: left;
  }
}

@media (max-width: 820px) {
  .menu-toggle {
    display: block;
  }

  .location-shell {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.8rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    width: min(260px, 90vw);
    z-index: 40;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    padding: 1.5rem;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.8rem;
  }

  .hero-panel img {
    min-height: 340px;
  }
}

.policy-page {
  padding: 3rem 0 4rem;
}

.policy-card h1 {
  margin-top: 0;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
}

.policy-card h2 {
  color: var(--accent);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.policy-card ul {
  color: var(--muted);
  padding-left: 1.2rem;
}

.policy-card li+li {
  margin-top: 0.55rem;
}

/* FAQ Section */
.faq-container {
  max-width: 800px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item[open] {
  border-color: var(--accent);
  box-shadow: 0 10px 30px rgba(255, 77, 67, 0.05);
}

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
  outline: none;
  transition: color 0.25s ease;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--muted);
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item[open] summary::after {
  content: '−';
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-item summary:hover {
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-answer p {
  margin: 0;
}

.footer-spacer {
  visibility: hidden;
  margin: 0 0 1.9rem;
}

@media (max-width: 980px) {
  .footer-spacer {
    display: none;
  }

  .hero,
  .about-grid,
  .services-grid,
  .contact-grid,
  .footer-shell,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3rem;
  }

  .showcase-card-large {
    grid-row: span 1;
  }

  .showcase-card-large img {
    height: 220px;
  }

  .service-card-feature {
    grid-column: span 1;
  }
}

@media (max-width: 640px) {
  .navbar {
    padding: 0.8rem 0;
  }

  .menu-toggle {
    display: block;
    position: absolute;
    top: 1rem;
    right: 0;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 1rem;
    display: none;
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-line {
    font-size: 0.72rem;
  }

  .brand-accent {
    font-size: 0.96rem;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-panel-card {
    grid-template-columns: 1fr;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 1.4rem 0 2.6rem;
  }
}

@media (max-width: 980px) {
  .location-shell {
    grid-template-columns: 1fr;
    padding: 1.25rem;
  }

  .map-iframe-wrapper {
    height: 240px;
  }
}

/* Card interactive glow hover effects */
.card,
.service-card,
.showcase-card,
.feature-card,
.contact-form,
.contact-info,
.map-card-container,
.footer-shell {
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease;
}

.card::after,
.service-card::after,
.showcase-card::after,
.feature-card::after,
.contact-form::after,
.contact-info::after,
.map-card-container::after,
.footer-shell::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px circle at var(--mouse-x, 0) var(--mouse-y, 0), rgba(255, 77, 67, 0.08), transparent 45%);
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.card:hover::after,
.service-card:hover::after,
.showcase-card:hover::after,
.feature-card:hover::after,
.contact-form:hover::after,
.contact-info:hover::after,
.map-card-container:hover::after,
.footer-shell:hover::after {
  opacity: 1;
}

/* Beautiful dynamic text-reveal, fade-up, and scale-in animations */
.fade-up {
  opacity: 0;
  transform: translateY(35px) scale(0.98);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.fade-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stunning section headers animation */
.section-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.section-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.about-block:nth-child(1),
.service-card:nth-child(1),
.feature-item:nth-child(1) {
  --delay: 0s;
}

.about-block:nth-child(2),
.service-card:nth-child(2),
.feature-item:nth-child(2) {
  --delay: 0.12s;
}

.about-block:nth-child(3),
.service-card:nth-child(3),
.feature-item:nth-child(3) {
  --delay: 0.24s;
}

.service-card:nth-child(4),
.feature-item:nth-child(4) {
  --delay: 0.36s;
}

.hero-content.is-visible .hero-tags span,
.hero-content.is-visible .hero-badges span,
.hero-content.is-visible .hero-stats div,
.hero-content.is-visible .hero-cred div {
  animation: popIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-content.is-visible .hero-tags span:nth-child(2),
.hero-content.is-visible .hero-badges span:nth-child(2),
.hero-content.is-visible .hero-stats div:nth-child(2),
.hero-content.is-visible .hero-cred div:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-content.is-visible .hero-tags span:nth-child(3),
.hero-content.is-visible .hero-badges span:nth-child(3),
.hero-content.is-visible .hero-stats div:nth-child(3) {
  animation-delay: 0.24s;
}

.hero-content.is-visible .hero-tags span:nth-child(4) {
  animation-delay: 0.36s;
}

@keyframes popIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Floating badge animations */
.hero-panel-card {
  animation: badgeFloat 6s ease-in-out infinite alternate;
}

@keyframes badgeFloat {
  0% {
    transform: translateY(0px) rotate(0deg);
  }

  100% {
    transform: translateY(-8px) rotate(1deg);
  }
}

/* Normal Blocks (non-card elements) */
.about-block {
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.about-block h3 {
  font-size: 1.25rem;
  margin: 0.5rem 0 0.5rem;
  color: var(--text);
}

.about-block p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process steps as list elements */
.process-step {
  padding: 0.5rem 0;
  border-left: 2px solid rgba(0, 0, 0, 0.08);
  padding-left: 1.5rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.process-step:hover {
  border-left-color: var(--accent);
  transform: translateX(4px);
}

.process-step span {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.process-step h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Feature item */
.feature-item {
  padding: 0.5rem 0;
  transition: transform 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
}

.feature-item .feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 0.9rem;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(255, 77, 67, 0.12), rgba(230, 69, 60, 0.12));
  color: var(--accent);
  font-weight: 800;
  font-size: 1.1rem;
}

.feature-item h3 {
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
}

.feature-item p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.final-cta-inner .hero-actions {
  justify-content: center;
}