/* Home mid-page refresh — Events through Patients Speak only */

/* ═══ INFO CARDS (Events / Registration) ═══ */
.info-cards-section {
  background: transparent;
  background-image: url(../images/our_pricing_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 18px 28px;
  border-bottom: none;
}
.info-cards-grid {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
/* Center when only 1 or 2 registration/event cards */
.info-cards-grid.is-centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.info-cards-grid.is-centered .info-card {
  flex: 0 1 calc((100% - 16px) / 2);
  max-width: 380px;
  width: 100%;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.07);
  padding: 18px 20px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  gap: 16px;
  transition: box-shadow 0.25s, transform 0.25s;
}
.info-card:hover {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.11);
  transform: translateY(-2px);
}
.card-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #e8f8f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.card-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.card-text-group {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
  min-width: 0;
}
.info-card h3 {
  font-size: 12px;
  font-weight: 700;
  color: #1a5ca8;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  line-height: 1.4;
  margin: 0;
}
.card-btn {
  display: inline-block;
  background: #00a896;
  color: #fff !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 7px 18px;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
  align-self: flex-start;
  border: none;
  cursor: pointer;
}
.card-btn:hover {
  background: #008f7e;
  transform: translateY(-1px);
  color: #fff !important;
}

/* ═══ ABOUT US ═══ */
.about-section {
  background: #fff;
  padding: 64px 40px;
}
.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 60px;
  align-items: center;
}
.about-image-col {
  display: flex;
  flex-direction: column;
}
.about-img-frame {
  flex: none;
  width: 360px;
  height: 450px;
  min-height: 450px;
  max-height: 450px;
  background: linear-gradient(160deg, #e8f0fe 0%, #dbeafe 50%, #c7d9f8 100%);
  border-radius: 24px;
  border: 2.5px solid #93c5fd;
  position: relative;
  overflow: hidden;
}
.about-img-frame img.about-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 1;
}
.about-img-frame img.about-overlay-img {
  position: absolute;
  right: 16px;
  bottom: 70px;
  width: 42%;
  height: auto;
  max-height: 160px;
  object-fit: cover;
  border-radius: 12px;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  z-index: 2;
}
.about-img-badge {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border-radius: 8px;
  padding: 9px 16px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.13);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 3;
}
.about-img-badge .badge-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00a896;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0, 168, 150, 0.2);
}
.about-img-badge .badge-label {
  font-size: 11px;
  font-weight: 700;
  color: #1a5ca8;
}
.about-img-badge .badge-sub {
  font-size: 10px;
  color: #888;
}
.about-content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.about-content-col .about-cms-content h1,
.about-content-col .about-cms-content h2,
.about-content-col .about-cms-content h3,
.about-content-col .about-cms-content h4 {
  color: #111;
  font-weight: 800;
  line-height: 1.35;
}
.about-content-col .about-cms-content p {
  font-size: 14px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 12px;
}

/* 2×3 about stats grid (used on home-producation About Us) */
.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.home_about .about-stats-grid {
  margin-top: 20px;
}
.about-stat-card {
  background: #fff;
  border: 1px solid #eaedf0;
  border-radius: 12px;
  padding: 18px 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, transform 0.2s;
}
.about-stat-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.09);
  transform: translateY(-2px);
}
.stat-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.stat-icon-box svg {
  width: 26px;
  height: 26px;
}
.ic-blue { background: #e3f0ff; }
.ic-teal { background: #e0f7f5; }
.ic-red { background: #fee8e8; }
.ic-orange { background: #fff3e0; }
.ic-purple { background: #f3e5f5; }
.ic-green { background: #e8f5e9; }
.stat-text {
  flex: 1;
  min-width: 0;
}
.stat-text .stat-num {
  font-size: 24px;
  font-weight: 800;
  color: #1a5ca8;
  line-height: 1.2;
  letter-spacing: -0.02em;
  word-break: break-word;
}
.stat-text .stat-label {
  font-size: 15px;
  font-weight: 700;
  color: #222;
  margin: 4px 0 6px;
  line-height: 1.3;
}
.stat-text .stat-desc {
  font-size: 12px;
  font-weight: 400;
  color: #666;
  line-height: 1.5;
}
@media (max-width: 1100px) {
  .about-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-text .stat-num {
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-text .stat-num {
    font-size: 22px;
  }
  .stat-text .stat-label {
    font-size: 15px;
  }
  .stat-text .stat-desc {
    font-size: 12px;
  }
}

/* ═══ ACHIEVEMENTS & CERTIFICATIONS ═══ */
.achievements-section {
  background: #fff;
  padding: 64px 40px;
  border-top: none;
}
.achievements-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.achievements-header {
  text-align: center;
  margin-bottom: 48px;
}
.ach-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 10px;
}
.achievements-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}
.ach-underline {
  width: 52px;
  height: 3px;
  background: #1a5ca8;
  border-radius: 2px;
  margin: 0 auto 18px;
}
.achievements-header p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}
.cert-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
}
.cert-grid .cert-card {
  flex: 0 1 calc((100% - 44px) / 3);
  width: calc((100% - 44px) / 3);
  max-width: calc((100% - 44px) / 3);
  box-sizing: border-box;
}
.cert-card {
  background: #fafbfd;
  border: 1px solid #eaedf2;
  border-radius: 14px;
  padding: 28px 22px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.cert-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a5ca8, #00a896);
  border-radius: 14px 14px 0 0;
}
.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(26, 92, 168, 0.12);
  background: #fff;
}
.cert-card .cert-img-wrap {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eaedf2;
  padding: 12px;
}
.cert-card .cert-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cert-title {
  font-size: 16px;
  font-weight: 800;
  color: #1a5ca8;
  margin: 0;
  line-height: 1.3;
}
.cert-desc {
  font-size: 12.5px;
  color: #666;
  line-height: 1.7;
  margin-top: 8px;
}

/* Achievements stats strip */
.ach-stats-strip {
  background: linear-gradient(135deg, #0d47a1 0%, #1565c0 50%, #1976d2 100%);
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 48px;
}
.ach-stat {
  text-align: center;
  flex: 1;
  min-width: 120px;
}
.ach-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #ffd54f;
  line-height: 1;
  margin-bottom: 6px;
}
.ach-stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.3px;
}
.ach-stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .ach-stats-strip {
    padding: 24px 16px;
    gap: 16px;
  }
  .ach-stat-divider {
    display: none;
  }
  .ach-stat-num {
    font-size: 22px;
  }
}

/* ═══ HEALTH PACKAGES ═══ */
.packages-section {
  background: #fff;
  background-image: url(../images/our_pricing_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 64px 40px;
  border-top: none;
}
.packages-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.packages-header {
  text-align: center;
  margin-bottom: 44px;
}
.pkg-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 10px;
}
.packages-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  line-height: 1.3;
  margin-bottom: 10px;
}
.packages-header h2 span {
  color: #1a5ca8;
}
.pkg-underline {
  width: 52px;
  height: 3px;
  background: #1a5ca8;
  border-radius: 2px;
  margin: 0 auto 16px;
}
.packages-header p {
  font-size: 14px;
  color: #555;
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.pkg-card {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eaedf2;
  border-top: 3px solid var(--accent, #1565c0);
  padding: 18px 12px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.pkg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}
.pkg-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: #e3f0ff;
}
.pkg-icon-wrap svg {
  width: 26px;
  height: 26px;
}
.pkg-price {
  font-size: 17px;
  font-weight: 800;
  color: var(--accent, #1565c0);
  line-height: 1;
}
.pkg-name {
  font-size: 11px;
  font-weight: 600;
  color: #333;
  line-height: 1.4;
  flex: 1;
}
.pkg-btn {
  display: inline-block;
  background: var(--accent, #1565c0);
  color: #fff !important;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
  white-space: nowrap;
  border: none;
}
.pkg-btn:hover {
  opacity: 0.85;
  color: #fff !important;
}
.pkg-cta-wrap {
  text-align: center;
  margin-top: 36px;
}
.pkg-view-all {
  display: inline-block;
  border: 2px solid #1a5ca8;
  color: #1a5ca8 !important;
  padding: 12px 36px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
}
.pkg-view-all:hover {
  background: #1a5ca8;
  color: #fff !important;
}

/* ═══ REVIEWS MARQUEE ═══ */
.reviews-section {
  background: #fff;
  padding: 64px 0 56px;
  overflow: hidden;
  border-top: none;
}
.reviews-header {
  text-align: center;
  padding: 0 40px;
  margin-bottom: 44px;
}
.rev-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #00a896;
  margin-bottom: 10px;
}
.reviews-header h2 {
  font-size: 30px;
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
}
.reviews-header h2 span {
  color: #1a5ca8;
}
.rev-underline {
  width: 52px;
  height: 3px;
  background: #1a5ca8;
  border-radius: 2px;
  margin: 0 auto 14px;
}
.reviews-header p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}
.marquee-wrap {
  overflow: hidden;
  width: 100%;
  margin-bottom: 20px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.marquee-wrap:last-child {
  margin-bottom: 0;
}
.marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding: 8px 0;
}
@keyframes marquee-ltr {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-ltr {
  animation: marquee-ltr 40s linear infinite;
}
.marquee-ltr:hover {
  animation-play-state: paused;
}
@keyframes marquee-rtl {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
.marquee-rtl {
  animation: marquee-rtl 40s linear infinite;
}
.marquee-rtl:hover {
  animation-play-state: paused;
}
.rev-card {
  flex-shrink: 0;
  width: 300px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 3px 16px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s, box-shadow 0.25s;
}
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.14);
}
.rev-google {
  background: #fff;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rev-card-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rev-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  background: #1565c0;
}
.rev-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rev-name {
  font-size: 13px;
  font-weight: 700;
  color: #111;
  line-height: 1.2;
}
.rev-stars {
  font-size: 13px;
  color: #f9a825;
  letter-spacing: 1px;
}
.rev-g-logo {
  margin-left: auto;
  flex-shrink: 0;
}
.rev-text {
  font-size: 12.5px;
  color: #444;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0;
}
.rev-video {
  background: #fff;
  display: flex;
  flex-direction: column;
  position: relative;
}
.rev-video-thumb {
  height: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.rev-video-thumb img.rev-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
}
.rev-play-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #1a5ca8;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  padding-left: 3px;
  border: none;
  cursor: pointer;
  position: relative;
  z-index: 2;
}
.rev-video-label {
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  z-index: 2;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.rev-video-info {
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.rev-video .form_video_card {
  border: none;
  margin: 0;
  box-shadow: none;
  position: relative;
  overflow: visible;
}
.rev-video .video_load {
  position: absolute;
  top: 75px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  color: #1a5ca8;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  pointer-events: auto;
}
.review-lightbox {
  z-index: 10050 !important;
}
.review-lightbox .video-wrapper {
  width: 100%;
  height: 100%;
}
.review-lightbox .review_video {
  width: min(900px, 90vw);
  height: min(506px, 50vw);
  max-width: 100%;
  margin: auto;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1100px) {
  .about-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-img-frame {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }
  .pkg-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  }
  .cert-grid .cert-card {
    flex: 0 1 calc((100% - 22px) / 2);
    width: calc((100% - 22px) / 2);
    max-width: calc((100% - 22px) / 2);
  }
}
@media (max-width: 768px) {
  .info-cards-section,
  .about-section,
  .achievements-section,
  .packages-section {
    padding-left: 16px;
    padding-right: 16px;
  }
  .info-cards-grid {
    grid-template-columns: 1fr;
  }
  .cert-grid .cert-card {
    flex: 0 1 100%;
    width: 100%;
    max-width: 100%;
  }
  .about-section,
  .achievements-section,
  .packages-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .achievements-header h2,
  .packages-header h2,
  .reviews-header h2 {
    font-size: 24px;
  }
  .reviews-header {
    padding: 0 16px;
  }
}

/* ═══════════════════════════════════════════
   FOOTER — structure from mockup; keep site background
═══════════════════════════════════════════ */
.site-footer {
  color: #222;
  font-family: 'Poppins', 'Work Sans', Arial, sans-serif;
}

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

.footer-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-logo {
  height: 52px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.footer-tagline {
  font-size: 12.5px !important;
  line-height: 1.6;
  color: #444 !important;
  flex: 1;
  min-width: 200px;
  margin-top: 0 !important;
  text-align: left;
}

.footer-top-phones {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12.5px;
  font-weight: 600;
  color: #1a5ca8;
  white-space: nowrap;
}

.footer-emerg {
  color: #d32f2f;
  font-weight: 700;
}

.footer-main {
  padding: 44px 40px 36px;
}

.footer-main-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #0d1b3e;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 24px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #1a5ca8;
  display: inline-block;
}

.footer-col h4:first-child {
  margin-top: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.footer-col ul li a {
  font-size: 12.5px;
  color: #333;
  text-decoration: none;
  transition: color 0.15s, padding-left 0.15s;
  display: block;
}

.footer-col ul li a:hover {
  color: #1a5ca8;
  padding-left: 4px;
}

.footer-socials {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 6px;
}

.soc-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s;
  flex-shrink: 0;
}

.soc-btn:hover {
  transform: scale(1.15);
  opacity: 0.9;
  color: #fff;
}

.soc-btn svg {
  width: 16px;
  height: 16px;
}

.soc-fb {
  background: #1877f2;
}

.soc-x {
  background: #000;
}

.soc-yt {
  background: #ff0000;
}

.soc-ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
}

.soc-li {
  background: #0a66c2;
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding: 16px 40px;
}

.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: #555;
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
}

.footer-bottom-links a {
  color: #555;
  text-decoration: none;
  font-size: 12px;
}

.footer-bottom-links a:hover {
  color: #1a5ca8;
}

@media (max-width: 992px) {
  .footer-main-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .footer-top-bar,
  .footer-main,
  .footer-bottom {
    padding-left: 16px;
    padding-right: 16px;
  }
  .footer-main-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-top-phones {
    white-space: normal;
  }
}
