/* Food Savers Pakistan - modern static website theme */
:root {
  --fs-orange: #f36f21;
  --fs-orange-dark: #d9570f;
  --fs-gold: #ffb340;
  --fs-charcoal: #1f2326;
  --fs-ink: #111417;
  --fs-muted: #6b7280;
  --fs-light: #f6f7f9;
  --fs-soft: #fff3ea;
  --fs-white: #ffffff;
  --fs-border: rgba(31, 35, 38, 0.11);
  --fs-shadow: 0 22px 55px rgba(17, 20, 23, 0.12);
  --fs-shadow-soft: 0 14px 32px rgba(17, 20, 23, 0.08);
  --fs-gradient: linear-gradient(135deg, #f36f21 0%, #ffb340 100%);
  --fs-gradient-dark: linear-gradient(135deg, #1f2326 0%, #34302b 100%);
  --fs-radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--fs-charcoal);
  font-family: "Inter", Arial, sans-serif;
  background: var(--fs-white);
  line-height: 1.7;
  overflow-x: hidden;
}

body.loaded {
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.navbar-brand,
.btn {
  font-family: "Plus Jakarta Sans", "Inter", Arial, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--fs-ink);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.12;
}

p {
  color: var(--fs-muted);
  margin-bottom: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

img {
  max-width: 100%;
}

section {
  position: relative;
}

.section-padding {
  padding: 110px 0;
}

.section-padding-sm {
  padding: 80px 0;
}

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

.bg-cream {
  background:
    radial-gradient(circle at top left, rgba(243, 111, 33, 0.12), transparent 35%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 100%);
}

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

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  color: var(--fs-orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.section-kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--fs-gradient);
  border-radius: 999px;
}

.section-title {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

.section-lead {
  max-width: 690px;
  font-size: 1.05rem;
}

.center-title {
  text-align: center;
}

.center-title .section-kicker::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--fs-gradient);
  border-radius: 999px;
}

.center-title .section-kicker::before {
  display: none;
}

.center-title .section-title,
.center-title .section-lead {
  margin-left: auto;
  margin-right: auto;
}

.btn {
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 800;
  font-size: 0.94rem;
  letter-spacing: 0;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn i {
  margin-right: 8px;
}

.btn-primary {
  color: var(--fs-white);
  background: var(--fs-gradient);
  border: 0;
  box-shadow: 0 14px 30px rgba(243, 111, 33, 0.28);
}

.btn-primary:hover,
.btn-primary:focus {
  color: var(--fs-white);
  transform: translateY(-3px);
  box-shadow: 0 20px 42px rgba(243, 111, 33, 0.34);
}

.btn-outline-light,
.btn-outline-dark {
  border-width: 1.5px;
}

.btn-outline-dark:hover,
.btn-outline-light:hover {
  transform: translateY(-3px);
}

.btn-glass {
  color: var(--fs-white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(16px);
}

.btn-glass:hover {
  color: var(--fs-white);
  background: rgba(255, 255, 255, 0.22);
}

/* Preloader */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background: var(--fs-white);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-mark {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
}

.loader-mark::before,
.loader-mark::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid rgba(243, 111, 33, 0.16);
  border-top-color: var(--fs-orange);
  animation: spin 1s linear infinite;
}

.loader-mark::after {
  inset: 14px;
  border-top-color: var(--fs-charcoal);
  animation-direction: reverse;
}

.loader-mark img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Header */
.topbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1031;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar a:hover {
  color: var(--fs-gold);
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 22px;
}

.topbar-item i {
  color: var(--fs-gold);
}

.site-navbar {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 1030;
  padding: 16px 0;
  transition: all 0.3s ease;
}

.site-navbar.nav-scrolled,
.inner-page .site-navbar {
  top: 0;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 32px rgba(17, 20, 23, 0.08);
  backdrop-filter: blur(18px);
}

.inner-page .topbar {
  display: none;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--fs-white);
  font-size: 1.08rem;
  font-weight: 900;
}

.site-navbar.nav-scrolled .navbar-brand,
.inner-page .navbar-brand {
  color: var(--fs-ink);
}

.brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--fs-white);
  padding: 3px;
  box-shadow: 0 10px 22px rgba(17, 20, 23, 0.12);
}

.brand-subtitle {
  display: block;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-navbar.nav-scrolled .brand-subtitle,
.inner-page .brand-subtitle {
  color: var(--fs-muted);
}

.navbar-nav {
  align-items: center;
  gap: 4px;
}

.navbar .nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  padding: 10px 13px !important;
  font-weight: 800;
  font-size: 0.93rem;
}

.site-navbar.nav-scrolled .nav-link,
.inner-page .navbar .nav-link {
  color: var(--fs-charcoal);
}

.navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 5px;
  height: 2px;
  background: var(--fs-gradient);
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.navbar .nav-link:hover::after,
.navbar .nav-link.active::after {
  transform: scaleX(1);
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--fs-gold);
}

.site-navbar.nav-scrolled .nav-link:hover,
.site-navbar.nav-scrolled .nav-link.active,
.inner-page .navbar .nav-link:hover,
.inner-page .navbar .nav-link.active {
  color: var(--fs-orange-dark);
}

.navbar-toggler {
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: var(--fs-white);
  box-shadow: var(--fs-shadow-soft);
}

.navbar-toggler:focus {
  box-shadow: var(--fs-shadow-soft);
}

/* Hero and page banners */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 170px 0 95px;
  color: var(--fs-white);
  background:
    linear-gradient(105deg, rgba(17, 20, 23, 0.9) 0%, rgba(17, 20, 23, 0.62) 44%, rgba(243, 111, 33, 0.46) 100%),
    url("../images/cover.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding: 9px 14px;
  color: var(--fs-white);
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  backdrop-filter: blur(16px);
  font-weight: 800;
  font-size: 0.88rem;
}

.hero-title {
  max-width: 840px;
  color: var(--fs-white);
  font-size: clamp(2.8rem, 7vw, 6.5rem);
  line-height: 0.98;
  margin-bottom: 24px;
}

.hero-title span {
  color: var(--fs-gold);
}

.hero-text {
  max-width: 690px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.03rem, 2vw, 1.25rem);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  z-index: 2;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--fs-radius);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.hero-panel img {
  width: 100%;
  border-radius: var(--fs-radius);
  background: rgba(255, 255, 255, 0.92);
}

.hero-fact {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-fact:first-of-type {
  border-top: 0;
}

.hero-fact i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border-radius: 50%;
}

.hero-fact strong {
  display: block;
  color: var(--fs-white);
  font-size: 1.25rem;
  line-height: 1;
}

.hero-fact span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.88rem;
}

.page-hero {
  min-height: 440px;
  display: flex;
  align-items: end;
  padding: 150px 0 70px;
  color: var(--fs-white);
  background:
    linear-gradient(105deg, rgba(17, 20, 23, 0.9), rgba(17, 20, 23, 0.58), rgba(243, 111, 33, 0.42)),
    url("../images/cover.png") center / cover no-repeat;
}

.page-hero h1 {
  color: var(--fs-white);
  font-size: clamp(2.4rem, 6vw, 4.7rem);
  margin-bottom: 12px;
}

.breadcrumb-modern {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.breadcrumb-modern a {
  color: var(--fs-gold);
}

/* Cards and common components */
.glass-card,
.feature-card,
.impact-card,
.news-card,
.team-card,
.partner-card,
.achievement-card,
.faq-card,
.contact-card,
.form-shell {
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--fs-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.feature-card:hover,
.impact-card:hover,
.news-card:hover,
.team-card:hover,
.partner-card:hover,
.achievement-card:hover,
.contact-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--fs-shadow);
  border-color: rgba(243, 111, 33, 0.25);
}

.icon-bubble {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border-radius: 50%;
  font-size: 1.45rem;
  box-shadow: 0 16px 30px rgba(243, 111, 33, 0.25);
}

.feature-card {
  height: 100%;
  padding: 34px;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -52px;
  bottom: -58px;
  background: rgba(243, 111, 33, 0.08);
  border-radius: 50%;
}

.feature-card h3 {
  margin: 25px 0 12px;
  font-size: 1.35rem;
}

.image-stack {
  position: relative;
  min-height: 520px;
}

.image-stack .main-image {
  position: absolute;
  inset: 0 12% 12% 0;
  overflow: hidden;
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow);
}

.image-stack .main-image img,
.image-tile img,
.gallery-item img,
.news-card img,
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-stack .floating-logo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  min-width: 210px;
  padding: 20px;
  background: var(--fs-white);
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow);
}

.image-stack .floating-logo img {
  border-radius: var(--fs-radius);
}

.check-list {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.check-list li {
  display: flex;
  gap: 12px;
  color: var(--fs-charcoal);
  font-weight: 700;
}

.check-list i {
  margin-top: 5px;
  color: var(--fs-orange);
}

.framed-image {
  overflow: hidden;
  border-radius: var(--fs-radius);
  border: 1px solid var(--fs-border);
  box-shadow: var(--fs-shadow);
  background: var(--fs-white);
}

.framed-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.awareness-card {
  padding: 28px;
  border-left: 4px solid var(--fs-orange);
  background: var(--fs-white);
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow-soft);
}

.awareness-card strong {
  color: var(--fs-orange-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
}

.sdg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.sdg-card {
  height: 100%;
  padding: 24px;
  overflow: hidden;
  border-radius: var(--fs-radius);
  border: 1px solid var(--fs-border);
  background: var(--fs-white);
  box-shadow: var(--fs-shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.sdg-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--fs-shadow);
}

.sdg-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  color: var(--fs-white);
  background: var(--fs-gradient-dark);
  border-radius: 50%;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 900;
}

.sdg-card:nth-child(1) .sdg-number {
  background: #e5243b;
}

.sdg-card:nth-child(2) .sdg-number {
  background: #dda63a;
}

.sdg-card:nth-child(3) .sdg-number {
  background: #fd9d24;
}

.sdg-card:nth-child(4) .sdg-number {
  background: #bf8b2e;
}

.sdg-card:nth-child(5) .sdg-number {
  background: #3f7e44;
}

.sdg-card:nth-child(6) .sdg-number {
  background: #19486a;
}

.stats-band {
  color: var(--fs-white);
  background:
    linear-gradient(135deg, rgba(17, 20, 23, 0.94), rgba(31, 35, 38, 0.84)),
    url("../images/cover.png") center / cover no-repeat fixed;
}

.stat-item {
  padding: 28px 18px;
  text-align: center;
}

.stat-item i {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  color: var(--fs-gold);
  background: rgba(255, 255, 255, 0.11);
  border-radius: 50%;
}

.stat-number {
  display: block;
  color: var(--fs-white);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 700;
}

.impact-card {
  height: 100%;
  padding: 26px;
}

.impact-card .metric {
  display: block;
  color: var(--fs-orange-dark);
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  grid-auto-rows: 185px;
  gap: 18px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow-soft);
}

.gallery-item:nth-child(1) {
  grid-row: span 2;
}

.gallery-item:nth-child(4) {
  grid-column: span 2;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 20%, rgba(17, 20, 23, 0.72));
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item img {
  transition: transform 0.45s ease;
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: var(--fs-white);
  font-weight: 800;
  transform: translateY(14px);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.gallery-item:hover::after,
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.testimonial-card {
  min-height: 300px;
  padding: 34px;
  border-radius: var(--fs-radius);
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  box-shadow: var(--fs-shadow-soft);
}

.testimonial-card .quote {
  color: var(--fs-charcoal);
  font-size: 1.05rem;
}

.avatar {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border-radius: 50%;
  font-weight: 900;
}

.swiper-pagination-bullet-active {
  background: var(--fs-orange);
}

.news-card {
  height: 100%;
  overflow: hidden;
  background: var(--fs-white);
}

.news-card .news-image {
  height: 220px;
  overflow: hidden;
}

.news-card .news-body {
  padding: 26px;
}

.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 12px;
  color: var(--fs-muted);
  font-size: 0.86rem;
  font-weight: 700;
}

.news-meta i {
  color: var(--fs-orange);
}

.cta-section {
  color: var(--fs-white);
  background:
    linear-gradient(135deg, rgba(243, 111, 33, 0.95), rgba(31, 35, 38, 0.94)),
    url("../images/cover.png") center / cover no-repeat;
}

.cta-section h2,
.cta-section p {
  color: var(--fs-white);
}

/* Inner page components */
.timeline {
  position: relative;
  display: grid;
  gap: 24px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 20px;
  width: 2px;
  background: linear-gradient(var(--fs-orange), rgba(243, 111, 33, 0.12));
}

.timeline-item {
  position: relative;
  padding-left: 64px;
}

.timeline-dot {
  position: absolute;
  top: 5px;
  left: 5px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border: 5px solid var(--fs-white);
  border-radius: 50%;
  box-shadow: var(--fs-shadow-soft);
}

.timeline-content {
  padding: 24px;
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow-soft);
}

.video-card {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--fs-white);
  background:
    linear-gradient(rgba(17, 20, 23, 0.56), rgba(17, 20, 23, 0.72)),
    url("../images/cover.png") center / cover no-repeat;
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow);
}

.play-button {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border-radius: 50%;
  box-shadow: 0 20px 42px rgba(243, 111, 33, 0.35);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}

.team-card {
  overflow: hidden;
  text-align: center;
  background: var(--fs-white);
}

.team-card .team-avatar {
  width: 100%;
  aspect-ratio: 1.25;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(243, 111, 33, 0.12), rgba(255, 179, 64, 0.12)),
    var(--fs-light);
}

.team-card .team-avatar img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  border-radius: 50%;
}

.team-card .team-avatar img.team-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

.team-card .team-avatar i {
  color: var(--fs-orange);
  font-size: 4.5rem;
}

.team-card .team-body {
  padding: 24px;
}

.partner-card {
  min-height: 170px;
  display: grid;
  place-items: center;
  padding: 24px;
  text-align: center;
  background: var(--fs-white);
}

.partner-mark {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: var(--fs-white);
  background: var(--fs-gradient-dark);
  border-radius: 50%;
  font-weight: 900;
  font-size: 1.25rem;
}

.achievement-card {
  overflow: hidden;
  background: var(--fs-white);
}

.achievement-header {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 22px 0;
}

.achievement-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--fs-border);
}

.achievement-body {
  padding: 18px 22px 22px;
}

.achievement-media {
  height: 230px;
  overflow: hidden;
  margin-top: 18px;
  border-radius: var(--fs-radius);
}

.social-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  margin-top: 18px;
  border-top: 1px solid var(--fs-border);
  color: var(--fs-muted);
  font-weight: 800;
  font-size: 0.9rem;
}

.media-card {
  overflow: hidden;
  border-radius: var(--fs-radius);
  background: var(--fs-white);
  border: 1px solid var(--fs-border);
  box-shadow: var(--fs-shadow-soft);
}

.media-card .media-image {
  height: 230px;
}

.media-card .media-body {
  padding: 24px;
}

.form-shell {
  padding: 34px;
  background: var(--fs-white);
}

.form-control,
.form-select {
  min-height: 54px;
  border: 1px solid var(--fs-border);
  border-radius: var(--fs-radius);
  color: var(--fs-charcoal);
  background-color: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(243, 111, 33, 0.55);
  box-shadow: 0 0 0 0.25rem rgba(243, 111, 33, 0.12);
}

textarea.form-control {
  min-height: 145px;
}

.contact-card {
  height: 100%;
  padding: 28px;
  background: var(--fs-white);
}

.map-embed {
  overflow: hidden;
  min-height: 430px;
  border-radius: var(--fs-radius);
  box-shadow: var(--fs-shadow-soft);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  border: 0;
}

.faq-card {
  padding: 24px;
  background: var(--fs-white);
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.75);
  background: var(--fs-ink);
}

.footer-main {
  padding: 90px 0 55px;
}

.footer-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  padding: 5px;
  background: var(--fs-white);
  border-radius: 50%;
}

.footer-title {
  color: var(--fs-white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.footer-links {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-links a:hover {
  color: var(--fs-gold);
  padding-left: 4px;
}

.footer-contact {
  display: grid;
  gap: 13px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-contact li {
  display: flex;
  gap: 12px;
}

.footer-contact i {
  margin-top: 5px;
  color: var(--fs-gold);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.social-links a:hover {
  color: var(--fs-white);
  background: var(--fs-orange);
  transform: translateY(-3px);
}

.newsletter-form {
  display: flex;
  overflow: hidden;
  border-radius: 999px;
  background: var(--fs-white);
}

.newsletter-form input {
  min-width: 0;
  flex: 1;
  border: 0;
  padding: 0 18px;
  outline: 0;
}

.newsletter-form button {
  border-radius: 999px;
  margin: 5px;
  padding: 10px 16px;
}

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.scroll-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1020;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--fs-white);
  background: var(--fs-gradient);
  border: 0;
  border-radius: 50%;
  box-shadow: var(--fs-shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(15px);
  transition: all 0.25s ease;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
}
