/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                          BODY SECTION                                              ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

main:focus {
  outline: none !important;
}

:root {
  --iso-accent: #59c2ae;
  --iso-accent-2: #3ea18f;
  --iso-muted: #273537;
  --card-surface: #ffffff;
  --shadow: rgba(20, 40, 50, 0.08);
  --radius: 14px;
  --soft: 0.22s;
  --footer-bg: linear-gradient(180deg, #061016 0%, #062026 60%);
  --accent: #37c6b2;
  --accent-2: #3ea18f;
  --muted: #a8b5b3;
  --phase-accent: #cc990f;
  --phase-accent-2: #3ea18f;
  --phase-card-bg: rgba(255, 255, 255, 0.3);
  --phase-bg: #f2f4f7;
  --phase-glass: rgba(255, 255, 255, 0.6);
  --phase-section-bg: #e0f7fa;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     HEADINGS AND TITLES                                            ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: #2e7d32;
}

.section-divider {
  width: 60px;
  border-top: 4px solid #66bb6a;
  margin: 1rem auto;
}

.section-subtitle {
  font-size: 1rem;
  color: #4a4a4a;
  max-width: 600px;
  margin: 0 auto;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     HEADER SECTION                                                 ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.header-container {
  position: relative;
  width: 100%;
  height: 70vh;
  background: url("../utilities/images/msc back.jpg") no-repeat center
    center/cover;
}

.header-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(10px);
  mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    rgba(0, 0, 0, 1) 0%,
    rgba(0, 0, 0, 0) 100%
  );
}

/* Large Tablets & Small Laptops (1024px and below) */
@media screen and (max-width: 1024px) {
  .header-container {
    height: 60vh;
    background-position: center;
  }
}

/* Tablets (768px and below) */
@media screen and (max-width: 768px) {
  .header-container {
    height: 60vh;
    background-size: cover;
  }
}

/* Small Mobile (360px and below) */
@media screen and (max-width: 660px) {
  .header-container {
    height: 65vh;
    background-size: cover;
  }
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  padding-bottom: 0.5rem;
}

.top-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 5rem;
  position: relative;
}

.logo {
  flex-grow: 1;
}

.logo img {
  width: 28rem; /* Adjusted for better fit */
  transition: transform 0.3s ease-in-out;
}

.logo img:hover {
  transform: scale(1.05); /* Subtle hover zoom */
}

.social-container {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.social-links {
  display: flex;
  gap: 1.2rem;
}

/* Common base style for all links */
.social-links a {
  font-size: 1.4rem;
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
  padding: 0.2rem 0.3rem;
}

/* Hover animation for all */
.social-links a:hover {
  transform: translateY(-2px);
}

/* WhatsApp (first child) */
.social-links a:first-child {
  color: #25d366;
}

/* LinkedIn (middle child) */
.social-links a:nth-child(2) {
  color: #0077b5;
}

/* Instagram (last child) */
.social-links a:last-child {
  color: #e4405f;
}

/* Optional hover color tweaks for subtle effect */
.social-links a:first-child:hover {
  color: #1ebe5d;
}

.social-links a:nth-child(2):hover {
  color: #0a66c2;
}

.social-links a:last-child:hover {
  color: #f56073;
}

.header-labels {
  display: flex;
  justify-content: flex-end;
  gap: 1.2rem;
  margin-top: 0.4rem;
}

.header-labels label {
  color: #333;
  font-size: 1rem;
  font-weight: 500;
  padding: 0.2rem 0.3rem;
  transition: color 0.4s ease-in-out;
}

.header-labels label:hover {
  color: #28b7e7;
  transform: translateY(-2px);
}

.flash-label {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  background: linear-gradient(90deg, #ff9800, #ffc107);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: 0 0 8px rgba(255, 193, 7, 0.7);
  animation: flashGlow 1.5s infinite alternate;
}

@keyframes flashGlow {
  0% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 14px rgba(255, 193, 7, 1);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 6px rgba(255, 193, 7, 0.5);
    transform: scale(1);
  }
}

.header-line {
  width: calc(100% - 10rem);
  margin: 0 auto;
}

.header-line hr {
  border: 0;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.navbar {
  background: transparent !important;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.7rem 0;
}

.navbar-collapse {
  display: flex;
  justify-content: center;
}

.navbar-nav .nav-link {
  color: #333;
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  margin: 0 1.2rem;
  transition: color 0.5s, transform 0.3s;
}

.navbar-nav .nav-link:hover {
  color: #28b7e7;
  text-decoration: underline;
  text-underline-offset: 8px;
  text-decoration-color: #28b7e7;
  text-decoration-thickness: 3px;
  transform: translateY(-2px);
}

.navbar-nav .dropdown-toggle::after {
  display: none;
}

.navbar-nav .dropdown-menu {
  min-width: 220px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(40, 183, 231, 0.08);
  border: none;
  margin-top: 0.7rem;
  background: #fff;
  padding: 0.5rem 0;
  transition: all 0.2s;
}

.navbar-nav .dropdown-item {
  color: #333;
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  transition: background 0.2s, color 0.2s;
}

.navbar-nav .dropdown-item:hover,
.navbar-nav .dropdown-item:focus {
  background: #e6f7fd;
  color: #28b7e7;
}

.navbar-nav .nav-link .fa-chevron-down {
  font-size: 0.8em;
  margin-left: 0.3em;
  transition: transform 0.3s;
}

.navbar-nav .dropdown.show .nav-link .fa-chevron-down {
  transform: rotate(180deg);
}

.heading-container {
  position: absolute;
  top: 54%;
  left: 30%;
  transform: translate(-50%, -50%);
  text-align: left;
  max-width: 700px;
}

.heading-container span {
  color: #74ffe6;
}

.heading-container h3 {
  color: white;
  font-size: 2.9rem;
  border-bottom: 1px solid #333;
  padding: 10px 0px;
}

.heading-container p {
  color: white;
}

.heading-container button {
  background: linear-gradient(135deg, #59c2ae, #34a598);
  border: none;
  border-radius: 8px;
  padding: 8px 16px;
  color: white;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  outline: none;
  position: relative;
  overflow: hidden;
}

.heading-container button:hover {
  background: linear-gradient(135deg, #34a598, #218374);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

.heading-container button:active {
  transform: scale(0.95);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.heading-container button::after {
  content: "";
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.heading-container button:hover::after {
  opacity: 1;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     BREADCRUMB SECTION                                             ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.breadcrumb-label {
  margin-left: 14%;
  font-size: 1rem;
  color: #59c2ae;
  margin-top: 2rem;
  font-weight: 500;
}

.breadcrumb-label span {
  color: grey;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     SERVICES SECTION                                               ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.container-wrap {
  max-width: 1300px;
  margin: 2.5rem auto;
  padding: 0 1rem;
}

.section-heading {
  display: flex;
  gap: 0.9rem;
  align-items: center;
  margin-bottom: 1.4rem;
}

.section-heading .marker {
  width: 10px;
  height: 44px;
  border-radius: 6px;
  background: linear-gradient(180deg, var(--iso-accent), var(--iso-accent-2));
  box-shadow: 0 10px 30px rgba(240, 180, 41, 0.12);
  flex: 0 0 10px;
}

.section-heading h1 {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #15292b;
}

.section-heading p {
  margin: 0;
  color: #516a6b;
  font-size: 0.95rem;
  margin-left: auto;
}

.iso-shell {
  border-radius: var(--radius);
  padding: 0.5rem;
  overflow: visible;
}

.iso-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 1rem;
  align-items: start;
}

.tab-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 0.4rem;
}

.tab-btn {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 1px solid #eef4f4;
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  cursor: pointer;
  transition: transform var(--soft), box-shadow var(--soft),
    border-color var(--soft), background var(--soft);
  font-weight: 700;
  color: #233f3d;
  position: relative;
  text-align: left;
}

.tab-btn .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    180deg,
    rgba(251, 192, 45, 0.95),
    rgba(224, 160, 0, 0.95)
  );
  color: #fff;
  font-size: 16px;
  flex: 0 0 40px;
  box-shadow: 0 8px 22px rgba(240, 180, 41, 0.12);
}

.tab-btn .label {
  flex: 1;
  font-size: 0.98rem;
}

.tab-btn .small {
  font-size: 0.79rem;
  color: #395b5a;
  display: block;
  margin-top: 4px;
  font-weight: 600;
}

.tab-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(18, 30, 34, 0.05);
  border-color: rgba(220, 220, 220, 0.6);
}

.tab-btn.active {
  background: linear-gradient(90deg, var(--iso-accent), var(--iso-accent-2));
  color: #fff;
  border: none;
  box-shadow: 0 18px 44px rgba(240, 180, 41, 0.12);
  transform: translateY(-2px);
}

.tab-btn.active::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  bottom: 8px;
  width: 6px;
  background: linear-gradient(180deg, #fff2d6, rgba(255, 255, 255, 0.05));
  border-radius: 4px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.tab-pane {
  border-radius: 12px;
  padding: 1.8rem;
  min-height: 360px;
  transition: opacity 0.28s ease, transform 0.28s ease;
  background: linear-gradient(180deg, var(--card-surface), #fbfcfd);
  box-shadow: 0 18px 48px rgba(18, 30, 34, 0.06);
  border-left: 6px solid var(--iso-accent);
  display: none;
}

.tab-pane.show {
  display: block;
}

.tab-pane .subhead {
  display: inline-block;
  font-size: 1.44rem;
  font-weight: 800;
  color: var(--iso-accent-2);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.tab-pane h4 {
  margin: 0 0 0.6rem 0;
  color: #112a28;
  font-size: 1.2rem;
  font-weight: 800;
}

.tab-pane .desc {
  color: #3f5a59;
  line-height: 1.65;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.panel-two-col {
  display: flex;
  gap: 1rem;
  margin-top: 0.9rem;
}

.overview-card,
.benefits-card {
  background: #fff;
  border-radius: 10px;
  padding: 1.05rem;
  border: 1px solid #eef4f4;
  flex: 1;
  box-shadow: 0 10px 28px rgba(18, 30, 34, 0.04);
}

.overview-card h6,
.benefits-card h6 {
  margin: 0 0 0.6rem 0;
  font-weight: 800;
  color: #173233;
  font-size: 0.98rem;
}

.overview-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.overview-list li {
  margin-bottom: 8px;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333;
}

.overview-list li i {
  color: #28a745;
}

.overview-card p {
  margin: 0;
  color: #465f5d;
  line-height: 1.6;
  font-size: 0.96rem;
}

.benefits-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.benefits-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-weight: 700;
  color: #2f5653;
}

.benefits-list li i {
  color: var(--iso-accent);
  margin-top: 4px;
  min-width: 18px;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.iso-cta {
  background: linear-gradient(90deg, #cc990f, #f0b429);
  color: #fff;
  border: none;
  padding: 0.68rem 1.1rem;
  border-radius: 10px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(240, 180, 41, 0.12);
}

.iso-ghost {
  background: transparent;
  border: 1px solid #dce7e6;
  color: #294d4b;
  padding: 0.6rem 0.95rem;
  border-radius: 10px;
  font-weight: 700;
}

.service-block {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), #fff);
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #eef4f4;
  box-shadow: 0 8px 24px rgba(18, 30, 34, 0.03);
  margin-bottom: 1.25rem;
}

.service-block + .service-block {
  border-left: 6px solid rgba(240, 180, 41, 0.06);
}

.service-block .subhead {
  margin-bottom: 0.35rem;
}

.service-block h4 {
  margin-bottom: 0.5rem;
  font-size: 1.08rem;
}

.service-block .desc {
  margin-bottom: 0.8rem;
  font-size: 0.96rem;
}

.service-block .panel-two-col {
  display: flex;
  gap: 0.9rem;
}

.service-block .cta-row {
  margin-top: 0.9rem;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     APPROACH SECTION                                               ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.phase-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.phase-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.phase-logo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: var(--phase-section-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.phase-logo i {
  font-size: 1.6rem;
  color: var(--phase-accent);
}

.phase-title-main {
  font-weight: 800;
  font-size: 1.4rem;
  color: #222;
}

.phase-subtitle {
  color: #555;
  font-size: 0.95rem;
}

.phase-flow {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  align-items: start;
  margin-top: 1.25rem;
}

.phase-card {
  min-height: 470px;
  padding: 1rem;
  border-radius: 12px;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: var(--phase-card-bg);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  overflow: visible;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.phase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.phase-card::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 22px solid transparent;
  border-bottom: 22px solid transparent;
  border-left: 28px solid rgba(0, 0, 0, 0.1);
  filter: drop-shadow(-4px 2px 4px rgba(0, 0, 0, 0.1));
}

.phase-flow > .phase-card:nth-child(7)::after,
.phase-card.last::after {
  display: none;
}

.phase-number {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: var(--iso-accent-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}

.phase-subtitle-card {
  font-weight: 700;
  margin: 0;
  font-size: 1rem;
  color: #111;
}

.phase-desc-card {
  margin: 0.45rem 0 0 0;
  color: #444;
  line-height: 1.45;
  font-size: 0.9rem;
}

.phase-meta {
  margin-top: 1rem;
  display: flex;
  justify-content: flex-start;
}

.phase-meta-box {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  padding: 0.6rem 1rem;
  min-width: 140px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  position: relative;
  overflow: hidden;
}

.phase-meta-box::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  opacity: 0.1;
  transform: rotate(25deg);
}

.phase-meta-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25);
  background: rgba(255, 255, 255, 0.25);
}

.phase-meta-box h6 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--phase-accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phase-meta-box p {
  margin: 0.3rem 0 0 0;
  font-size: 0.82rem;
  color: #222;
  font-weight: 500;
  line-height: 1.35;
  text-align: left;
}

.phase-chip {
  background: var(--phase-section-bg);
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: #333;
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 4px;
}

.phase-chip i {
  color: var(--phase-accent-2);
}

.phase-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1rem;
  color: #555;
  font-size: 0.92rem;
}

/* ╔════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╗ */
/* ║                                                     FOOTER SECTION                                                 ║ */
/* ╚════════════════════════════════════════════════════════════════════════════════════════════════════════════════════╝ */

.smc-footer {
  background: var(--footer-bg);
  color: #e9f6f4;
  padding: 60px 0 20px;
  font-family: "Poppins", sans-serif;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.35);
  margin-top: 3rem;
}

.footer-inner {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 26px;
}

.footer-col h5 {
  font-size: 1rem;
  color: #dff6f2;
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-logo {
  width: 80px;
  max-width: 100%;
  margin-bottom: 14px;
  transition: transform 0.3s ease;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.4));
}
.footer-logo:hover {
  transform: scale(1.05);
}

.footerAbout {
  color: #cde7e2;
  font-weight: 500;
  line-height: 1.6;
  font-size: 0.95rem;
  text-align: justify;
  margin: 0;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul li a {
  color: #cfeeea;
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.2s ease;
}
.footer-col ul li a:hover {
  color: var(--accent);
  margin-left: 4px;
}

.contact-block h6 {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #dff6f2;
}
.contact-block p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #dff6f2;
  transition: all 0.3s ease;
  text-decoration: none;
}
.social-btn:hover {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-5px);
  color: #fff;
}
.social-btn.whatsapp:hover {
  background: linear-gradient(135deg, #25d366, #1fae54);
}
.social-btn.instagram:hover {
  background: #f56073;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 32px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom .copyright {
  font-size: 0.9rem;
  color: #bfeee6;
}
.policy-links a {
  color: var(--muted);
  margin-left: 16px;
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}
.policy-links a:hover {
  color: var(--accent);
}
