
/* =========================================================
   fragCihan Unified Footer
   ========================================================= */

.fc-site-footer {
  padding: 4rem 1rem 2rem;
}

.fc-site-footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 2.75rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.fc-site-footer-top {
  display: grid;
  gap: 2rem;
  padding: 2rem;
}

.fc-site-footer-brand {
  min-width: 0;
}

.fc-site-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: #1d1d1f;
  text-decoration: none;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.fc-site-footer-dot {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 999px;
  background: #0071e3;
  box-shadow: 0 0 0 0.42rem rgba(0, 113, 227, 0.12);
}

.fc-site-footer-copy {
  max-width: 34rem;
  margin-top: 1.2rem;
  color: #6e6e73;
  font-size: 0.98rem;
  line-height: 1.75;
}

.fc-site-footer-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.fc-site-footer-cta {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0 1.25rem;
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration: none;
  transition:
    transform 600ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-site-footer-cta-primary {
  background: #0071e3;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 113, 227, 0.22);
}

.fc-site-footer-cta-secondary {
  background: #f5f5f7;
  color: #1d1d1f;
}

.fc-site-footer-cta:hover {
  transform: translateY(-2px) scale(1.015);
}

.fc-site-footer-grid {
  display: grid;
  gap: 1.35rem;
  padding: 0 2rem 2rem;
}

.fc-site-footer-col {
  min-width: 0;
  border-radius: 1.7rem;
  background: #f5f5f7;
  padding: 1.35rem;
}

.fc-site-footer-title {
  color: #86868b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.fc-site-footer-links {
  display: grid;
  gap: 0.78rem;
  margin-top: 1rem;
}

.fc-site-footer-links a {
  color: #1d1d1f;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
  transition:
    color 450ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-site-footer-links a:hover {
  color: #0071e3;
  transform: translateX(3px);
}

.fc-site-footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.2rem;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  padding: 1.2rem 2rem;
  color: #86868b;
  font-size: 0.84rem;
  line-height: 1.6;
}

.fc-site-footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
}

.fc-site-footer-legal a {
  color: inherit;
  text-decoration: none;
  transition: color 450ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-site-footer-legal a:hover {
  color: #0071e3;
}

@media (min-width: 768px) {
  .fc-site-footer-top {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    padding: 2.5rem;
  }

  .fc-site-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 2.5rem 2.5rem;
  }

  .fc-site-footer-bottom {
    padding: 1.3rem 2.5rem;
  }
}

@media (min-width: 1024px) {
  .fc-site-footer {
    padding: 5rem 2rem 2.5rem;
  }

  .fc-site-footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .fc-site-footer {
    padding: 3rem 1rem 1.5rem;
  }

  .fc-site-footer-inner {
    border-radius: 2rem;
  }

  .fc-site-footer-top {
    padding: 1.25rem;
  }

  .fc-site-footer-grid {
    padding: 0 1.25rem 1.25rem;
  }

  .fc-site-footer-col {
    border-radius: 1.35rem;
    padding: 1.15rem;
  }

  .fc-site-footer-bottom {
    padding: 1.1rem 1.25rem;
  }

  .fc-site-footer-cta {
    width: 100%;
  }
}

/* Dark mode */
html[data-theme="dark"] .fc-site-footer-inner {
  background: rgba(17, 18, 20, 0.88) !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.42) !important;
}

html[data-theme="dark"] .fc-site-footer-logo,
html[data-theme="dark"] .fc-site-footer-links a {
  color: #f5f5f7 !important;
}

html[data-theme="dark"] .fc-site-footer-copy,
html[data-theme="dark"] .fc-site-footer-bottom {
  color: #a1a1a6 !important;
}

html[data-theme="dark"] .fc-site-footer-col,
html[data-theme="dark"] .fc-site-footer-cta-secondary {
  background: rgba(255, 255, 255, 0.075) !important;
  color: #f5f5f7 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
}

html[data-theme="dark"] .fc-site-footer-title {
  color: #86868b !important;
}

html[data-theme="dark"] .fc-site-footer-bottom {
  border-top-color: rgba(255, 255, 255, 0.10) !important;
}

html[data-theme="dark"] .fc-site-footer-links a:hover,
html[data-theme="dark"] .fc-site-footer-legal a:hover {
  color: #2997ff !important;
}


/* Footer Social Icons */
.fc-site-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.2rem;
}

.fc-site-footer-social-link {
  position: relative;
  display: inline-grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  overflow: hidden;
  border-radius: 999px;
  color: #1d1d1f;
  background: rgba(245, 245, 247, 0.88);
  border: 1px solid rgba(0, 0, 0, 0.055);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  text-decoration: none;
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    color 650ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 650ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-site-footer-social-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.88), transparent 35%),
    linear-gradient(135deg, rgba(0, 113, 227, 0.18), rgba(242, 183, 89, 0.18));
  transition: opacity 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.fc-site-footer-social-link svg {
  position: relative;
  z-index: 1;
  width: 1.18rem;
  height: 1.18rem;
  fill: currentColor;
}

.fc-site-footer-social-link:hover {
  transform: translateY(-3px) scale(1.045);
  color: #0071e3;
  background: #ffffff;
  box-shadow:
    0 20px 48px rgba(0, 113, 227, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.fc-site-footer-social-link:hover::before {
  opacity: 1;
}

.fc-site-footer-social-link[data-social="instagram"]:hover {
  color: #d62976;
}

.fc-site-footer-social-link[data-social="google"]:hover {
  color: #4285f4;
}

.fc-site-footer-social-link[data-social="facebook"]:hover {
  color: #1877f2;
}

.fc-site-footer-social-link[data-social="linkedin"]:hover {
  color: #0a66c2;
}

.fc-site-footer-social-note {
  margin-top: 0.75rem;
  color: #86868b;
  font-size: 0.78rem;
  line-height: 1.5;
}

html[data-theme="dark"] .fc-site-footer-social-link {
  color: #f5f5f7;
  background: rgba(255, 255, 255, 0.075);
  border-color: rgba(255, 255, 255, 0.10);
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.075);
}

html[data-theme="dark"] .fc-site-footer-social-link:hover {
  background: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 22px 58px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
}

html[data-theme="dark"] .fc-site-footer-social-note {
  color: #86868b;
}

@media (max-width: 640px) {
  .fc-site-footer-social {
    gap: 0.55rem;
  }

  .fc-site-footer-social-link {
    width: 2.75rem;
    height: 2.75rem;
  }
}


/* Subtle city links below the premium footer grid — intentionally quiet, not a SEO-link wall. */
.fc-footer-region-strip {
  margin-top: 2.25rem;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.95rem;
  align-items: center;
  color: #86868b;
  font-size: 0.82rem;
  line-height: 1.6;
}
.fc-footer-region-strip span {
  font-weight: 700;
  color: #6e6e73;
}
.fc-footer-region-strip a {
  color: #86868b;
  text-decoration: none;
  transition: color .25s ease, transform .25s ease;
}
.fc-footer-region-strip a:hover {
  color: #0071e3;
  transform: translateY(-1px);
}
html[data-theme="dark"] .fc-footer-region-strip {
  border-top-color: rgba(255, 255, 255, 0.08);
  color: rgba(245, 245, 247, 0.56);
}
html[data-theme="dark"] .fc-footer-region-strip span {
  color: rgba(245, 245, 247, 0.72);
}
html[data-theme="dark"] .fc-footer-region-strip a {
  color: rgba(245, 245, 247, 0.58);
}
html[data-theme="dark"] .fc-footer-region-strip a:hover {
  color: #2997ff;
}
