/* GDS Ottawa — Premium Footer (shared) */
.gds-footer {
  --blue: #0066cc;
  --blue-dark: #004999;
  --blue-deep: #0a1628;
  --navy: #0d1b2e;
  --orange: #ff6600;
  --orange-warm: #ff8533;
  --green: #25D366;
  --gold: #ffd700;
  --white: #ffffff;
  --gray-400: rgba(255,255,255,0.45);
  --gray-600: rgba(255,255,255,0.65);
  --gray-800: rgba(255,255,255,0.85);
  background: linear-gradient(180deg, var(--blue-deep) 0%, #060e1a 100%);
  color: var(--gray-600);
  font-family: 'Open Sans', system-ui, sans-serif;
  position: relative;
  overflow: hidden;
}
.gds-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 90%, rgba(0,102,204,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(255,102,0,0.04) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M20 20h20v20H20z'/%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.gds-footer-accent {
  height: 5px;
  background: linear-gradient(90deg, var(--blue), var(--blue-dark), var(--blue));
}
.gds-footer-cta {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 30px 0;
}
.gds-footer-cta-card {
  background: linear-gradient(135deg, #003d7a, #004999);
  border-radius: 20px;
  padding: 40px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 15px 50px rgba(0,102,204,0.35);
  border: 1px solid rgba(255,255,255,0.18);
  position: relative;
  overflow: hidden;
}
.gds-footer-cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(255,102,0,0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.gds-footer-cta-text { position: relative; z-index: 1; }
.gds-footer-cta-text h3 {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}
.gds-footer-cta-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}
.gds-footer-cta-buttons {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.gds-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  transition: all 0.3s;
  white-space: nowrap;
  border: 2px solid transparent;
}
.gds-footer-cta-btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(255,102,0,0.4);
}
.gds-footer-cta-btn-orange:hover { background: var(--orange-warm); transform: translateY(-3px); box-shadow: 0 10px 30px rgba(255,102,0,0.5); }
.gds-footer-cta-btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.35);
}
.gds-footer-cta-btn-outline:hover { background: var(--white); color: var(--blue); transform: translateY(-3px); }
.gds-footer-cta-btn:focus-visible { outline: 2px solid rgba(255,255,255,0.9); outline-offset: 3px; }
.gds-footer-main {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 30px 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 40px;
}
.gds-footer-brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.gds-footer-brand-logo img {
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
}
.gds-footer-brand-name {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}
.gds-footer-brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 2px;
  display: block;
}
.gds-footer-brand-desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--gray-600);
  margin-bottom: 20px;
}
.gds-footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.gds-footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.1rem;
  color: var(--gray-600);
  transition: all 0.3s;
}
.gds-footer-social a:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(255,102,0,0.3);
}
.gds-footer-social a svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
  flex-shrink: 0;
}
.gds-footer-heading {
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.gds-footer-heading::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), transparent);
  opacity: 0.3;
}
.gds-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gds-footer-links li { margin-bottom: 2px; }
.gds-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 0;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.25s;
  position: relative;
}
.gds-footer-links a::before {
  content: '';
  width: 0;
  height: 2px;
  background: var(--orange);
  position: absolute;
  bottom: 2px;
  left: 0;
  transition: width 0.3s;
}
.gds-footer-links a:hover { color: var(--white); transform: translateX(4px); }
.gds-footer-links a:hover::before { width: 100%; }
.gds-footer-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.gds-footer-areas-grid a { font-size: 0.82rem; }
.gds-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.gds-footer-contact-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.gds-footer-contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gray-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 2px;
  opacity: 0.9;
}
.gds-footer-contact-value {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gray-600);
  line-height: 1.4;
}
.gds-footer-contact-value a {
  color: var(--gray-600);
  text-decoration: none;
  transition: color 0.25s;
}
.gds-footer-contact-value a:hover { color: var(--orange); }
.gds-footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.gds-footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gray-600);
  white-space: nowrap;
}
.gds-footer-badge-icon { font-size: 1rem; }
.gds-footer-badge-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}
.gds-footer-bottom {
  position: relative;
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.gds-footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 22px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.gds-footer-copyright {
  font-size: 0.8rem;
  color: var(--gray-400);
}
.gds-footer-copyright a {
  color: var(--gray-600);
  text-decoration: none;
}
.gds-footer-copyright a:hover { color: var(--orange); }
.gds-footer-bottom-links {
  display: flex;
  gap: 20px;
}
.gds-footer-bottom-links a {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-decoration: none;
  transition: color 0.25s;
}
.gds-footer-bottom-links a:hover { color: var(--white); }
.gds-footer-top-btn {
  position: fixed;
  bottom: 80px;
  right: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.3rem;
  box-shadow: 0 4px 20px rgba(0,102,204,0.4);
  transition: all 0.3s;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.gds-footer-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.gds-footer-top-btn:hover {
  background: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(255,102,0,0.4);
}
@media (max-width: 960px) {
  .gds-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .gds-footer-cta-card {
    flex-direction: column;
    text-align: center;
  }
  .gds-footer-cta-buttons { justify-content: center; }
}
@media (max-width: 640px) {
  .gds-footer-main {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 40px 20px 30px;
  }
  .gds-footer-cta { padding: 30px 16px 0; }
  .gds-footer-cta-card { padding: 28px 22px; }
  .gds-footer-cta-buttons { flex-direction: column; width: 100%; }
  .gds-footer-cta-btn { width: 100%; justify-content: center; }
  .gds-footer-areas-grid { grid-template-columns: 1fr 1fr; }
  .gds-footer-bottom-inner { flex-direction: column; text-align: center; }
  .gds-footer-bottom-links { justify-content: center; }
  .gds-footer-badges { justify-content: center; }
}
