/* ============================================================
   D-Fin Solutions — Main Stylesheet
   style.css
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Poppins:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --bg-primary:      #050b1a;
  --bg-secondary:    #040810;
  --bg-card:         rgba(255,255,255,0.04);
  --bg-card-hover:   rgba(255,255,255,0.07);

  --gold-start:      #c8962a;
  --gold-mid:        #e8b84b;
  --gold-light:      #f5d079;
  --gold-gradient:   linear-gradient(135deg, #c8962a 0%, #e8b84b 40%, #f5d079 60%, #c8962a 100%);
  --gold-text-grad:  linear-gradient(135deg, #c8962a 0%, #e8b84b 40%, #f5d079 100%);

  --text-white:      #f0f4f8;
  --text-muted:      rgba(240,244,248,0.55);
  --text-faint:      rgba(240,244,248,0.28);

  --border-subtle:   rgba(255,255,255,0.08);
  --border-gold:     rgba(200,150,42,0.35);

  --shadow-gold:     0 0 28px rgba(200,150,42,0.22), 0 0 56px rgba(200,150,42,0.10);
  --shadow-card:     0 4px 32px rgba(0,0,0,0.5);

  --radius-sm:       8px;
  --radius-md:       12px;
  --radius-lg:       18px;
  --radius-xl:       24px;
  --radius-full:     9999px;

  --transition:      0.25s ease;
  --transition-slow: 0.45s ease;

  --navbar-height:   72px;
  --font-display:    'Poppins', sans-serif;
  --font-body:       'Inter', sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-body);
}

input, textarea, select {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

/* ---------- Utility Classes ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--dark {
  background-color: var(--bg-secondary);
}

.section--primary {
  background-color: var(--bg-primary);
}

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.section-title .gold {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.text-center { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn--gold {
  background: var(--gold-gradient);
  color: #050b1a;
  box-shadow: var(--shadow-gold);
}

.btn--gold:hover {
  opacity: 0.88;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 36px rgba(200,150,42,0.35), 0 0 60px rgba(200,150,42,0.15);
}

.btn--outline {
  background: var(--bg-card);
  color: var(--text-white);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(12px);
}

.btn--outline:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.15);
}

.btn--sm {
  padding: 9px 18px;
  font-size: 13px;
}

.btn--full {
  width: 100%;
  justify-content: center;
}

/* ---------- Cards (Glassmorphism) ---------- */
.card {
  background: var(--bg-card);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  border-color: var(--border-gold);
}

.card--glow {
  box-shadow: var(--shadow-gold);
}

/* ---------- Gold Text ---------- */
.gold-text {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ---------- Section Divider ---------- */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,42,0.3), transparent);
  margin: 0;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-height);
  transition: background var(--transition-slow), border-color var(--transition-slow), box-shadow var(--transition-slow);
}

.navbar.scrolled {
  background: rgba(5,11,26,0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-mark {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 14px;
  color: #050b1a;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text__main {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--text-white);
}

.logo-text__sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(232,184,75,0.65);
  margin-top: 2px;
}

/* Nav Links */
.navbar__links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar__links a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,244,248,0.7);
  transition: background var(--transition), color var(--transition);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--text-white);
  background: rgba(255,255,255,0.06);
}

.navbar__links a.active {
  color: var(--gold-mid);
  background: rgba(232,184,75,0.1);
}

/* Nav Actions */
.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--radius-sm);
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--navbar-height);
  left: 0;
  right: 0;
  background: rgba(5,11,26,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 16px 24px 24px;
  z-index: 999;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 500;
  color: rgba(240,244,248,0.7);
  transition: background var(--transition), color var(--transition);
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: rgba(255,255,255,0.06);
  color: var(--text-white);
}

.mobile-menu .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: var(--navbar-height);
  overflow: hidden;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(200,150,42,0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 82% 22%, rgba(30,60,120,0.28) 0%, transparent 50%),
    linear-gradient(135deg, #040912 0%, #0a1220 55%, #060d1c 100%);
}

.hero__glow-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,184,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__glow-2 {
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30,60,120,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 80px 0;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  background: var(--bg-card);
  border: 1px solid rgba(232,184,75,0.2);
  font-size: 12px;
  font-weight: 500;
  color: var(--gold-mid);
  backdrop-filter: blur(12px);
  margin-bottom: 32px;
}

.hero__badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-mid);
}

.hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 40px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Cards */
.hero__cards {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card {
  padding: 22px 24px;
}

.hero-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-card__icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #050b1a;
  flex-shrink: 0;
}

.hero-card__title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.hero-card__sub {
  font-size: 12px;
  color: var(--gold-mid);
}

.hero-card__amount {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card__meta {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.hero-card__rate-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.hero-card__rate {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-card__tag {
  font-size: 14px;
  color: #4ade80;
  padding-bottom: 6px;
}

.progress-bar {
  height: 8px;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-top: 12px;
}

.progress-bar__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
}

.hero-card__growth {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.growth-value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #4ade80;
}

.growth-icon {
  font-size: 32px;
  opacity: 0.5;
  color: #4ade80;
}

/* ============================================================
   TRUSTED PARTNERS TICKER
   ============================================================ */
.trusted {
  padding: 32px 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: var(--bg-secondary);
}

.trusted__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 20px;
}

.trusted__logos {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 36px;
}

.trusted__item {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-faint);
  letter-spacing: 1px;
  transition: color var(--transition);
}

.trusted__item:hover {
  color: rgba(232,184,75,0.55);
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  font-size: 36px;
  line-height: 1;
}

.service-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  font-family: var(--font-display);
  transition: color var(--transition);
}

.service-card:hover .service-card__title {
  color: var(--gold-mid);
}

.service-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(232,184,75,0.65);
  transition: color var(--transition);
}

.service-card:hover .service-card__link {
  color: var(--gold-mid);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-top: 0;
}

.why__features {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.why-feature {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.why-feature__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #050b1a;
  flex-shrink: 0;
  margin-top: 2px;
}

.why-feature__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.why-feature__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

.rates-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.rate-card {
  padding: 24px;
}

.rate-card__label {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.rate-card__value {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.rate-card__tenure {
  font-size: 11px;
  color: var(--text-faint);
}

.rate-card__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,42,0.3), transparent);
  margin: 12px 0;
}

.rate-card__amount {
  font-size: 12px;
  color: rgba(232,184,75,0.65);
  font-weight: 500;
}

/* ============================================================
   PROCESS TIMELINE
   ============================================================ */
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.process-step {
  padding: 32px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.process-step__number {
  font-family: var(--font-display);
  font-size: 72px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  position: absolute;
  top: -16px;
  right: -8px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.process-step__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.process-step__title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
}

.process-step__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   STATS COUNTER
   ============================================================ */
.stats {
  padding: 80px 0;
}

.stats__inner {
  border-radius: var(--radius-xl);
  padding: 64px 48px;
  box-shadow: var(--shadow-gold);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}

.stat-item {
  text-align: center;
}

.stat-item__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1;
}

.stat-item__label {
  font-size: 14px;
  color: var(--text-muted);
  letter-spacing: 0.5px;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.testimonial-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.testimonial-card__stars i {
  font-size: 13px;
  color: var(--gold-mid);
}

.testimonial-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__author-name {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-white);
}

.testimonial-card__author-role {
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 2px;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 820px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open {
  border-color: rgba(232,184,75,0.2);
}

.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-item__question {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-white);
}

.faq-item__icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.faq-item__icon i {
  font-size: 11px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.faq-item.open .faq-item__icon {
  background: var(--gold-gradient);
  border-color: transparent;
  transform: rotate(180deg);
}

.faq-item.open .faq-item__icon i {
  color: #050b1a;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-item__answer {
  max-height: 200px;
}

.faq-item__answer-inner {
  padding: 0 24px 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  border-radius: var(--radius-xl);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.cta-banner__glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(232,184,75,0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner__sub {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 36px;
  position: relative;
  z-index: 1;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #040810;
  border-top: 1px solid var(--border-subtle);
  padding: 72px 0 0;
  position: relative;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}

.footer__brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 20px 0 24px;
  max-width: 260px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 14px;
  transition: color var(--transition), border-color var(--transition), background var(--transition);
}

.social-btn:hover {
  color: var(--gold-mid);
  border-color: rgba(232,184,75,0.3);
  background: rgba(232,184,75,0.06);
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 20px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__links a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--gold-mid);
}

.footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer__contact-icon {
  width: 20px;
  height: 20px;
  color: var(--gold-mid);
  font-size: 14px;
  margin-top: 1px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__contact-text {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer__contact-text a {
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__contact-text a:hover {
  color: var(--gold-mid);
}

.footer__bottom {
  border-top: 1px solid var(--border-subtle);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer__copyright {
  font-size: 13px;
  color: var(--text-faint);
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  font-size: 13px;
  color: var(--text-faint);
  transition: color var(--transition);
}

.footer__legal a:hover {
  color: rgba(232,184,75,0.65);
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: white;
  box-shadow: 0 4px 24px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  padding: calc(var(--navbar-height) + 80px) 0 96px;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(200,150,42,0.07) 0%, transparent 50%),
    radial-gradient(ellipse at 82% 22%, rgba(30,60,120,0.25) 0%, transparent 50%),
    linear-gradient(135deg, #040912 0%, #0a1220 55%, #060d1c 100%);
}

.page-hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.page-hero__title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.1;
  margin-bottom: 20px;
}

.page-hero__sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 580px;
  line-height: 1.7;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.mission-card {
  padding: 40px;
}

.mission-card__icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #050b1a;
  margin-bottom: 24px;
}

.mission-card__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 16px;
}

.mission-card__text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
}

.team__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.team-card {
  padding: 40px 32px;
  text-align: center;
}

.team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  color: #050b1a;
  box-shadow: var(--shadow-gold);
}

.team-card__name {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 4px;
}

.team-card__role {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 16px;
}

.team-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 56px auto 0;
}

.timeline__line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(200,150,42,0.35), transparent);
  transform: translateX(-50%);
}

.timeline__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  align-items: center;
  gap: 32px;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-item__content {
  flex: 1;
  display: flex;
}

.timeline-item:nth-child(odd) .timeline-item__content {
  justify-content: flex-end;
}

.timeline-item:nth-child(even) .timeline-item__content {
  justify-content: flex-start;
}

.timeline-item__box {
  max-width: 300px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
}

.timeline-item__year {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
  color: #050b1a;
  flex-shrink: 0;
  box-shadow: var(--shadow-gold);
  position: relative;
  z-index: 1;
}

.timeline-item__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.services-full__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.service-full-card {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
}

.service-full-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.service-full-card__icon {
  font-size: 40px;
  line-height: 1;
}

.service-full-card__title {
  font-size: 19px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  transition: color var(--transition);
}

.service-full-card:hover .service-full-card__title {
  color: var(--gold-mid);
}

.service-full-card__desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}

.service-full-card__features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-full-card__feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.service-full-card__feature::before {
  content: '';
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-mid);
  flex-shrink: 0;
}

.service-full-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 8px;
}

.service-full-card__rate {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-mid);
}

/* ============================================================
   LOANS PAGE
   ============================================================ */
.loan-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.loan-tab {
  padding: 10px 22px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: var(--transition);
}

.loan-tab.active,
.loan-tab:hover {
  background: var(--gold-gradient);
  color: #050b1a;
  border-color: transparent;
  font-weight: 600;
  box-shadow: var(--shadow-gold);
}

.loan-panel {
  display: none;
}

.loan-panel.active {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.loan-detail-card {
  padding: 36px;
}

.loan-detail-card__title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 24px;
}

.loan-detail-card__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.loan-detail-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
}

.loan-detail-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-gradient);
  flex-shrink: 0;
}

.loan-detail-card__meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

.loan-meta-item__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.loan-meta-item__value {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loan-doc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--text-muted);
}

.loan-doc-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #050b1a;
  flex-shrink: 0;
}

/* Rates Table */
.rates-table {
  width: 100%;
  border-collapse: collapse;
}

.rates-table th {
  padding: 14px 20px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border-subtle);
}

.rates-table td {
  padding: 16px 20px;
  font-size: 14px;
  color: var(--text-muted);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rates-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.rates-table .rate-highlight {
  color: var(--gold-mid);
  font-weight: 600;
}

/* EMI Calculator */
.emi-calculator {
  padding: 48px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-gold);
}

.emi-calc__title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}

.emi-calc__title-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #050b1a;
}

.emi-calc__title-text {
  font-size: 22px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
}

.emi-field {
  margin-bottom: 32px;
}

.emi-field__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.emi-field__label {
  font-size: 14px;
  color: var(--text-muted);
}

.emi-field__value {
  font-size: 14px;
  font-weight: 600;
  color: var(--gold-mid);
}

.emi-field__range {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
  margin-top: 6px;
}

input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: rgba(255,255,255,0.1);
  outline: none;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  box-shadow: 0 0 8px rgba(200,150,42,0.5);
}

input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold-gradient);
  cursor: pointer;
  border: none;
  box-shadow: 0 0 8px rgba(200,150,42,0.5);
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(to right, var(--gold-mid) 0%, var(--gold-mid) var(--progress,50%), rgba(255,255,255,0.1) var(--progress,50%));
}

.emi-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(200,150,42,0.3), transparent);
  margin: 32px 0;
}

.emi-results {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.emi-result-item {
  padding: 18px;
  border-radius: var(--radius-md);
  text-align: center;
}

.emi-result-item__label {
  font-size: 11px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.emi-result-item__value {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.emi-result-item--emi .emi-result-item__value {
  background: var(--gold-text-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.emi-result-item--interest .emi-result-item__value {
  color: rgba(232,184,75,0.65);
}

.emi-result-item--total .emi-result-item__value {
  color: rgba(240,244,248,0.75);
}

.emi-progress {
  margin-bottom: 8px;
}

.emi-progress__labels {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 8px;
}

.emi-progress__bar {
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.emi-progress__fill {
  height: 100%;
  border-radius: var(--radius-full);
  background: var(--gold-gradient);
  transition: width 0.5s ease;
}

/* ============================================================
   BLOG PAGE
   ============================================================ */
.blog-categories {
  position: sticky;
  top: var(--navbar-height);
  z-index: 30;
  background: rgba(4,8,16,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
  padding: 14px 0;
}

.blog-categories__list {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 2px;
  -webkit-overflow-scrolling: touch;
}

.blog-categories__list::-webkit-scrollbar { display: none; }

.blog-cat-btn {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--border-subtle);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: var(--transition);
  flex-shrink: 0;
}

.blog-cat-btn.active {
  background: var(--gold-gradient);
  color: #050b1a;
  font-weight: 600;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.featured-article {
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-top: 56px;
  margin-bottom: 40px;
}

.featured-article__bar {
  height: 4px;
}

.featured-article__body {
  padding: 56px 64px;
}

.featured-article__tags {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.featured-badge {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: var(--gold-gradient);
  color: #050b1a;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-faint);
}

.article-meta i {
  font-size: 12px;
}

.featured-article__title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 16px;
  line-height: 1.25;
}

.featured-article__excerpt {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 640px;
  margin-bottom: 28px;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.article-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
}

.article-card__bar {
  height: 3px;
}

.article-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.article-card__cat {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  background: rgba(232,184,75,0.1);
  color: var(--gold-mid);
  margin-bottom: 14px;
}

.article-card__title {
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.article-card:hover .article-card__title {
  color: var(--gold-mid);
}

.article-card__excerpt {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.article-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-card__read-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold-mid);
  transition: color var(--transition);
}

.article-card:hover .article-card__read-link {
  color: var(--gold-light);
}

/* Newsletter */
.newsletter {
  padding: 64px 48px;
  border-radius: var(--radius-xl);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.newsletter__title {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 12px;
}

.newsletter__sub {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.newsletter__form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter__input {
  flex: 1;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
}

.newsletter__input::placeholder { color: var(--text-faint); }
.newsletter__input:focus { border-color: rgba(232,184,75,0.4); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact__grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 40px;
  align-items: start;
}

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  transition: border-color var(--transition);
}

.contact-info-card:hover {
  border-color: rgba(232,184,75,0.3);
}

.contact-info-card__icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #050b1a;
  flex-shrink: 0;
}

.contact-info-card__label {
  font-size: 11px;
  color: var(--text-faint);
  margin-bottom: 2px;
}

.contact-info-card__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-white);
  transition: color var(--transition);
}

.contact-info-card:hover .contact-info-card__value {
  color: var(--gold-mid);
}

.response-box {
  padding: 24px;
  border-radius: var(--radius-md);
  margin-top: 8px;
}

.response-box__title {
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 16px;
}

.response-box__rows {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.response-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
}

.response-row__method { color: var(--text-muted); }
.response-row__time { color: var(--gold-mid); font-weight: 500; }

/* Contact Form */
.contact-form {
  padding: 48px;
  border-radius: var(--radius-xl);
}

.contact-form__title {
  font-size: 26px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-field {
  margin-bottom: 20px;
}

.form-field label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-white);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  font-family: var(--font-body);
}

.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-faint); }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(232,184,75,0.4);
}

.form-select {
  cursor: pointer;
  background-color: #0a1220;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 42px;
}

.form-select option { background: #0a1220; color: var(--text-white); }

.form-textarea { resize: vertical; min-height: 130px; }

.form-error {
  display: block;
  font-size: 12px;
  color: #f87171;
  margin-top: 5px;
  display: none;
}

.form-field.invalid .form-error { display: block; }
.form-field.invalid .form-input,
.form-field.invalid .form-select,
.form-field.invalid .form-textarea { border-color: rgba(248,113,113,0.4); }

.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--text-faint);
  margin-top: 12px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 56px 32px;
}

.form-success.show { display: block; }

.form-success__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--gold-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 30px;
  color: #050b1a;
  box-shadow: var(--shadow-gold);
}

.form-success__title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text-white);
  margin-bottom: 12px;
}

.form-success__text {
  font-size: 15px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.map-placeholder {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.map-placeholder i {
  font-size: 36px;
  color: var(--gold-mid);
}

.map-placeholder__text {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text-white);
}

.map-placeholder__sub {
  font-size: 13px;
  color: var(--text-muted);
}

.logo{
  height:60px;
  width:auto;
  object-fit:contain;
  display:block;
}