/* ============================================================
   FOOTER.CSS — Sarhad Shauryathon
   Dark navy footer · Gold accents · Material Symbols icons
   ============================================================ */

:root {
  --sk-navy:    #0F1A2E;
  --sk-navy2:   #182236;
  --sk-navy3:   #0A1322;

  --sk-gold:    #F0B429;
  --sk-gold2:   #D99F1C;
  --sk-orange:  #E84C1E;
  --sk-orange2: #C73D12;

  --sk-line:    rgba(255, 255, 255, 0.10);
  --sk-soft:    rgba(255, 255, 255, 0.06);

  --sk-radius:  18px;
  --sk-radius2: 14px;
}

.container {
  width: min(1200px, calc(100% - 40px));
  margin-inline: auto;
}

/* ============================================================
   FOOTER WRAPPER
   ============================================================ */
.sk-footer {
  font-family: 'Outfit', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: #fff;
  background: var(--sk-navy);
  margin-top: 0;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.sk-footer-cta {
  position: relative;
  padding: 78px 0 60px;
  background: var(--sk-navy);
  border-bottom: 1px solid var(--sk-line);
  overflow: hidden;
}

/* Subtle gold accent line at top */
.sk-footer-cta::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--sk-gold) 30%, var(--sk-orange) 70%, transparent);
}

.sk-footer-cta__inner { text-align: center; position: relative; z-index: 1; }

.sk-footer-cta__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sk-gold);
  margin-bottom: 14px;
  padding: 4px 14px;
  border-radius: 999px;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.30);
}

.sk-footer-cta__title {
  margin: 0 auto 14px;
  max-width: 860px;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
}

.sk-footer-cta__sub {
  margin: 0 auto 32px;
  max-width: 760px;
  font-size: 16px;
  line-height: 1.80;
  color: rgba(255, 255, 255, 0.72);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.sk-footer-cta__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin: 0 0 38px;
}

.sk-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: var(--sk-radius2);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.15px;
  transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease, color 0.16s ease;
  user-select: none;
}
.sk-btn:hover { text-decoration: none; }
.sk-btn__icon {
  width: 22px; height: 22px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

/* Primary — orange gradient (kept per design system) */
.sk-btn--primary {
  background: linear-gradient(135deg, var(--sk-orange), #ff6b3d);
  color: #fff;
  border: 1.5px solid transparent;
  box-shadow: 0 6px 20px rgba(232, 76, 30, 0.40);
}
.sk-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(232, 76, 30, 0.55);
  background: linear-gradient(135deg, var(--sk-orange2), var(--sk-orange));
  color: #fff;
}

/* Outline — works on dark bg */
.sk-btn--outline {
  color: #fff;
  background: transparent;
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}
.sk-btn--outline:hover {
  transform: translateY(-2px);
  border-color: var(--sk-gold);
  background: rgba(240, 180, 41, 0.08);
  color: var(--sk-gold);
}

/* ============================================================
   INFO CARDS
   ============================================================ */
.sk-footer-cta__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}

.sk-mini-card {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 18px 20px;
  border-radius: var(--sk-radius);
  border: 1px solid var(--sk-line);
  background: var(--sk-navy2);
  min-height: 86px;
  transition: border-color .18s ease, transform .18s ease;
}
.sk-mini-card:hover {
  border-color: rgba(240, 180, 41, 0.35);
  transform: translateY(-2px);
}

.sk-mini-card__icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(240, 180, 41, 0.12);
  border: 1px solid rgba(240, 180, 41, 0.25);
  color: var(--sk-gold);
}
.sk-mini-card__icon .material-symbols-rounded {
  font-size: 22px;
  font-variation-settings: 'FILL' 0, 'wght' 500;
}
.sk-mini-card__meta { text-align: left; }
.sk-mini-card__label {
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 3px;
}
.sk-mini-card__value {
  font-weight: 800;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
}

/* ============================================================
   MAIN FOOTER LINKS
   ============================================================ */
.sk-footer-main {
  padding: 56px 0 36px;
  background: var(--sk-navy3);
  border-top: 1px solid var(--sk-line);
}

.sk-footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 36px;
  align-items: start;
}

.sk-footer-col {}

.sk-footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 15px;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
}
.sk-footer-brand small {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--sk-gold);
  font-weight: 700;
  margin-top: 4px;
}
.sk-footer-brand-logo {
  width: 46px; height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  padding: 4px;
  border: 1px solid var(--sk-line);
}

.sk-footer-title {
  position: relative;
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 18px;
  color: var(--sk-gold);
  padding-bottom: 10px;
}
.sk-footer-title::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px;
  height: 2px;
  background: var(--sk-gold);
  border-radius: 999px;
}

.sk-footer-muted {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.75;
  margin: 0 0 10px;
  font-size: 14px;
}
.sk-footer-muted .material-symbols-rounded {
  font-size: 18px;
  color: var(--sk-gold);
  margin-top: 2px;
  flex: 0 0 auto;
}

.sk-footer-links {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 10px;
}
.sk-footer-links a,
.sk-footer-contact a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.15s ease, padding-left 0.15s ease;
  display: inline-block;
}
.sk-footer-links a::before {
  content: "›";
  display: inline-block;
  margin-right: 6px;
  color: var(--sk-gold);
  opacity: 0.55;
  transition: opacity .15s ease, transform .15s ease;
}
.sk-footer-links a:hover {
  color: var(--sk-gold);
  text-decoration: none;
  padding-left: 4px;
}
.sk-footer-links a:hover::before { opacity: 1; transform: translateX(2px); }
.sk-footer-contact a:hover { color: var(--sk-gold); }

/* ============================================================
   SOCIAL ICONS
   ============================================================ */
.sk-footer-social {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.sk-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
  transition: transform .18s ease, color .25s ease;
  background: none;
  border: 0;
  padding: 0;
  line-height: 0;
}
.sk-social svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}
.sk-social:hover {
  transform: translateY(-2px);
  text-decoration: none;
}
.sk-social:focus-visible {
  outline: 2px solid var(--sk-gold);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Brand color on hover (icon glyph only) */
.sk-social--ig:hover { color: #E1306C; }
.sk-social--fb:hover { color: #1877F2; }
.sk-social--yt:hover { color: #FF0000; }
.sk-social--wa:hover { color: #25D366; }

/* ============================================================
   FOOTER BOTTOM
   ============================================================ */
.sk-footer-bottom {
  border-top: 1px solid var(--sk-line);
  background: var(--sk-navy3);
  padding: 16px 0;
}
.sk-footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
}
.sk-footer-powered {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.55);
}
.sk-footer-powered a {
  color: var(--sk-gold);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: color .15s ease;
}
.sk-footer-powered a:hover { color: #fff; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .sk-footer-grid          { grid-template-columns: 1fr 1fr; gap: 28px; }
  .sk-footer-cta           { padding: 60px 0 46px; }
  .sk-footer-cta__cards    { grid-template-columns: 1fr; max-width: 560px; }
}

@media (max-width: 640px) {
  .sk-footer-grid          { grid-template-columns: 1fr; gap: 26px; }
  .sk-footer-bottom__inner { justify-content: center; text-align: center; }
}

@media (max-width: 520px) {
  .container                { width: calc(100% - 28px); }
  .sk-footer-cta__sub       { font-size: 15px; }
  .sk-btn                   { width: 100%; justify-content: center; }
  .sk-mini-card             { padding: 16px; }
}
