@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  /* Colors */
  --primary: #006950;
  --primary-light: #258367;
  --primary-bg-tint: #9BF4D233;
  --primary-bg-tint-hover: rgba(0, 105, 80, 0.14);
  --page-bg: #f5f5f5;
  --white: #ffffff;
  --dark: #0C1B33;
  --text-dark: #2c2c2c;
  --text-muted: #5a5a5a;
  --text-light: #6c757d;
  --border-light: #e8e8e8;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.07);
  --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.1);
  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.04);
  --shadow-card-hover: 0 6px 24px rgba(0, 0, 0, 0.08);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-pill: 50px;

  /* Spacing */
  --navbar-height: 72px;
  --section-py: 80px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
}

/* ============================================
   GLOBAL RESET & BASE
   ============================================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body, button, input, select, textarea {
  font-family: 'Cairo', sans-serif;
}

body {
  background-color: var(--page-bg);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.container {
  max-width: var(--container-max);
}

/* ============================================
   NAVBAR
   ============================================ */
#mainNavbar {
  background-color: var(--white);
  min-height: var(--navbar-height);
  border-bottom: none;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.08), 0px 0px 4px 0px rgba(0, 0, 0, 0.04);
  padding-top: 0;
  padding-bottom: 0;
  z-index: 1050;
  transition: box-shadow var(--transition-base);
}

#mainNavbar.scrolled {
  box-shadow: var(--shadow-sm);
}

#mainNavbar .container {
  min-height: var(--navbar-height);
  display: flex;
  align-items: center;
}

/* Logo */
.navbar-brand {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}

.nav-logo-img {
  /* height: 40px; */
  width: auto;
  object-fit: contain;
}

/* Nav Links */
.nav-links-center {
  gap: 4px;
}

.nav-links-center .nav-link {
  color: #231F20;
  font-size: 15px;
  font-weight: 500;
  padding: 8px 18px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.nav-links-center .nav-link:hover {
  color: var(--primary);
}

.nav-links-center .nav-link.active {
  color: #2E8A6E;
  font-weight: 700;
}

/* Dropdown */
.nav-link-dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-dropdown-icon {
  font-size: 10px;
  transition: transform var(--transition-fast);
}

.nav-item.dropdown .dropdown-menu {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px 0;
  min-width: 260px;
}

.nav-item.dropdown .dropdown-item {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 20px;
  transition: all var(--transition-fast);
}

.nav-item.dropdown .dropdown-item:hover {
  color: #2E8A6E;
  background-color: rgba(46, 138, 110, 0.06);
}
.dropdown-item.active, .dropdown-item:active {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #2e8a6e
}

/* Navbar Actions */
.navbar-actions {
  gap: 12px;
}

/* Unified Nav Action Button - Same style for both */
.btn-nav-action {
  background: transparent;
  color: #2E8A6E;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid #2E8A6E;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-nav-action:hover {
  background-color: #2E8A6E;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46, 138, 110, 0.3);
}

.btn-nav-action:focus-visible {
  box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.2);
}

/* Filled Button - تحقق من أهليتك */
.btn-nav-filled {
  background-color: #2E8A6E;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 24px;
  border-radius: var(--radius-lg);
  border: 1.5px solid #2E8A6E;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.btn-nav-filled:hover {
  background-color: transparent;
  border-color: #2E8A6E;
  color: #2E8A6E;
  transform: translateY(-1px);
}

.btn-nav-filled:focus-visible {
  box-shadow: 0 0 0 3px rgba(46, 138, 110, 0.3);
}

/* Toggler */
.navbar-toggler {
  border: 1px solid var(--border-light);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(0, 105, 80, 0.15);
  border-color: var(--primary);
}

.navbar-toggler-icon {
  width: 22px;
  height: 22px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  background-color: #F5F7F7;
  padding: 20px 0 0;
  overflow: hidden;
  position: relative;
}

.hero-row {
  min-height: 520px;
}

.hero-content-col {
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 20px 0 0;
  max-width: 100%;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--primary-bg-tint);
  color: var(--primary);
  font-size: 14px;
  font-weight: 700;
  padding: 1px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}

.hero-badge i {
  font-size: 16px;
}

/* Title */
.hero-title {
  font-size: 48px;
  font-weight: 700;
  line-height: 60px;
  color: #191C1D;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
  white-space: nowrap;
}

/* Description */
.hero-description {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  margin-bottom: 32px;
  /* max-width: 460px; */
}

/* CTA Button */
.hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 36px;
  border-radius: var(--radius-md);
  border: none;
  box-shadow: 0 4px 18px rgba(0, 105, 80, 0.35);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.hero-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 105, 80, 0.4);
}

.hero-btn:focus-visible {
  box-shadow: 0 0 0 4px rgba(0, 105, 80, 0.25);
}

.hero-btn i {
  font-size: 18px;
  transition: transform var(--transition-fast);
}

.hero-btn:hover i {
  transform: translateX(-4px);
}

/* Feature Row */
.hero-features {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-feature-item i {
  font-size: 17px;
  color: var(--primary);
}

/* Hero Image */
.hero-image-col {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  transform: scale(1.09);
  transform-origin: bottom center;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

/* ============================================
   HOW IT WORKS SECTION
   ============================================ */
.how-it-works-section {
  padding: var(--section-py) 0;
  background-color: #F3F4F5;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
}

.section-subtitle {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--text-muted);
  /* max-width: 560px; */
  max-width: 631px;

  margin: 0 auto;
}

/* Step Cards */
.step-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  /* text-align: center; */
  height: 100%;
  border: 1px solid transparent;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
}

.step-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
  border-color: rgba(0, 105, 80, 0.1);
}

.step-icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background-color: #0069501A;
  border-radius: var(--radius-md);
  margin-bottom: 22px;
  transition: background-color var(--transition-fast);
}

.step-card:hover .step-icon-box {
  background-color: var(--primary-bg-tint-hover);
}

.step-icon-box i {
  font-size: 22px;
  color: var(--primary);
}

.step-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}

.step-card-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: var(--section-py) 0;
  background-color: var(--page-bg);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-light);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-light);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 22px 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  cursor: pointer;
  transition: color var(--transition-fast);
  text-align: right;
  gap: 16px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-icon {
  font-size: 14px;
  color: var(--text-muted);
  transition: transform var(--transition-base);
  flex-shrink: 0;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 8px 22px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER SECTION
   ============================================ */
.cta-banner-section {
  padding: 80px 0;
  background-color: #2E3132;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
}

.cta-banner-content {
  display: flex;
  align-items: center;
  gap: 35px;
  flex: 1;
}

.cta-banner-stat {
  font-size: 135px;
  font-weight: 800;
  color: #485652;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  letter-spacing: -2px;
}

.cta-banner-title {
  font-size: 26px;
  font-weight: 700;
  color: #9BF4D2;
  margin-bottom: 8px;
  white-space: normal;
}

.cta-banner-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0;
}

.cta-banner-btn {
  background-color: var(--white);
  color: var(--dark);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 48px;
  border-radius: var(--radius-sm);
  border: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.cta-banner-btn:hover {
  background-color: #f0f0f0;
  color: var(--dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* ============================================
   MORTGAGE CALCULATOR SECTION
   ============================================ */
.calculator-section {
  padding: var(--section-py) 0;
  background-color: var(--page-bg);
}

.calculator-card {
  background-color: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* Tabs */
.calc-tabs {
  display: flex;
  background-color: #F3F4F5;
  padding: 10px 12px;
  gap: 6px;
  border-bottom: none;
}

.calc-tab {
  flex: 1;
  padding: 14px 16px;
  background: none;
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

.calc-tab:hover {
  color: var(--primary);
}

.calc-tab.active {
  color: var(--primary);
  background-color: var(--white);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.calc-tab.active::after {
  display: none;
}

/* Calculator Body */
.calc-body {
  display: flex;
  gap: 0;
  padding: 40px;
}

.calc-inputs {
  flex: 0 0 57%;
  padding-left: 40px;
  /* border-left: 1px solid var(--border-light); */
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc-results {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 24px;
}

/* Input Groups */
.calc-input-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.calc-input-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

.calc-input-value {
  font-size: 16px;
  font-weight: 800;
  color: var(--primary);
}

/* Range Slider */
.calc-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  background: var(--border-light);
  border-radius: 3px;
  outline: none;
  direction: rtl;
}

.calc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 105, 80, 0.25);
  transition: transform var(--transition-fast);
}

.calc-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.calc-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 105, 80, 0.25);
}

.calc-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 12px;
  color: var(--text-light);
}

/* Period Buttons */
.calc-period-btns {
  display: flex;
  gap: 12px;
}

.calc-period-btn {
  flex: 1;
  padding: 10px 8px;
  background: none;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.calc-period-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
}

.calc-period-btn.active {
  background-color: rgba(0, 105, 80, 0.08);
  border-color: var(--primary);
  color: var(--primary);
  font-weight: 700;
}

/* Results */
.calc-result-main {
  margin-bottom: 8px;
}

.calc-result-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  display: block;
  margin-bottom: 8px;
}

.calc-result-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
}

.calc-currency {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.calc-amount {
  font-size: 48px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -1px;
  line-height: 1;
}

.calc-result-details {
  display: flex;
  width: 100%;
  justify-content: center;
  padding-top: 24px;
  border-top: 1px solid var(--border-light);
  margin-top: 8px;
}

.calc-result-detail {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc-result-detail:first-child {
  border-left: 1px solid var(--border-light);
}

.calc-detail-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}

.calc-detail-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
}

/* Savings Note */
.calc-savings-note {
  background: linear-gradient(135deg, rgba(0, 105, 80, 0.06) 0%, rgba(155, 244, 210, 0.12) 100%);
  border: 1px solid rgba(0, 105, 80, 0.15);
  border-radius: var(--radius-md);
  padding: 14px 20px;
  width: 100%;
  text-align: center;
  margin-top: 4px;
}

.calc-savings-note p {
  font-size: 13px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0;
  line-height: 1.85;
}

.calc-savings-note .savings-amount {
  font-weight: 800;
  font-size: 15px;
}

.calc-savings-note .savings-icon {
  margin-left: 4px;
  font-size: 14px;
}

/* Submit button wrapper (centered below both columns) */
.calc-submit-wrapper {
  display: flex;
  justify-content: center;
  padding: 24px 40px 32px;
}

.calc-submit-wrapper .calc-submit-btn {
  padding: 16px 80px;
  font-size: 17px;
}

/* Interest Type Toggle */
.calc-interest-toggle {
  display: flex;
  background-color: var(--page-bg);
  border-radius: var(--radius-pill);
  padding: 4px;
  gap: 0;
  width: 100%;
}

.calc-toggle-btn {
  flex: 1;
  padding: 10px 16px;
  background: none;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.calc-toggle-btn:hover {
  color: var(--primary);
}

.calc-toggle-btn.active {
  background-color: var(--white);
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* Bottom Section: Hint only */
.calc-bottom-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 40px 28px;
  border-top: 1px solid var(--border-light);
  background-color: #F3F4F5;
}

.calc-hint {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 0;
  max-width: 720px;
  text-align: center;
}

.calc-submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
  font-size: 16px;
  font-weight: 700;
  padding: 14px 48px;
  border-radius: var(--radius-md);
  border: none;
  text-align: center;
  box-shadow: 0 4px 16px rgba(0, 105, 80, 0.3);
  transition: all var(--transition-base);
  white-space: nowrap;
}

.calc-submit-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 105, 80, 0.4);
}

/* ============================================
   BANK PARTNERS SECTION
   ============================================ */
.partners-section {
  padding: var(--section-py) 0;
  background-color: var(--white);
}

.partners-logos-container {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 32px;
  /* Fading edges for a nice effect */
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partners-logos-track {
  display: flex;
  width: max-content;
  animation: scrollLogos 30s linear infinite;
}

.partners-logos-track:hover {
  animation-play-state: paused;
}

.partners-logos-group {
  display: flex;
  align-items: center;
  gap: 80px;
  padding-inline-end: 80px;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-fast);
}

.partner-logo-item:hover {
  transform: scale(1.05);
}

.partner-logo {
  height: 70px;
  width: auto;
  object-fit: contain;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(50%);
  }
}

/* ============================================
   ELIGIBILITY CTA SECTION
   ============================================ */
.eligibility-section {
  padding: 80px 0;
  background-color: var(--white);
}

.eligibility-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background-image: url('../imgs/Modern-office-tower.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eligibility-overlay {
  position: absolute;
  inset: 0;
  background: rgba(43, 50, 52, 0.85);
  z-index: 1;
}

.eligibility-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0px;
  max-width: 700px;
  margin: 0 auto;
}

.eligibility-title {
  font-size: 34px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.3px;
  line-height: 1.5;
}

.eligibility-title span {
  color: var(--primary);
}

.eligibility-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.85;
  color: #9BF4D2;
  margin-bottom: 36px;
}

.eligibility-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background:#006950;
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 16px 56px;
  border-radius: var(--radius-md);
  border: none;

  transition: all var(--transition-base);
  white-space: nowrap;
}

.eligibility-btn:hover {
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 105, 80, 0.5);
}

.eligibility-features {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
}

.eligibility-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
}

.eligibility-feature-item i {
  font-size: 16px;
  color: #9BF4D2;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--border-light);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo-img {
  /* height: 36px; */
  width: auto;
  object-fit: contain;

}

.footer-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.footer-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition-fast);
  white-space: nowrap;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-copyright p {
  font-size: 13px;
  font-weight: 400;
  color: var(--text-light);
  margin-bottom: 0;
  line-height: 1.6;
}

/* ============================================
   RESPONSIVE - TABLET (max-width: 991px)
   ============================================ */
@media (max-width: 991.98px) {
  :root {
    --navbar-height: 64px;
  }

  /* Navbar Collapse */
  #navbarContent {
    background-color: var(--white);
    padding: 20px 0 16px;
    border-top: 1px solid var(--border-light);
    margin-top: 12px;
  }

  .nav-links-center {
    gap: 0;
    margin-bottom: 16px;
  }

  .nav-links-center .nav-link {
    padding: 10px 16px;
    font-size: 15px;
    border-radius: var(--radius-sm);
  }

  .nav-links-center .nav-link.active::after {
    display: none;
  }

  .nav-links-center .nav-link.active {
    background-color: var(--primary-bg-tint);
  }

  .navbar-actions {
    padding-top: 12px;
    border-top: 1px solid var(--border-light);
    width: 100%;
    justify-content: flex-start;
  }

  /* Hero */
  .hero-section {
    /* padding: 40px 0 0; */
  }

  .hero-row {
    min-height: auto;
  }

  .hero-content {
    max-width: 100%;
    padding: 10px 0 30px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-image-col {
    order: 2;
  }

  .hero-content-col {
    order: 1;
  }

  .hero-image {
    max-width: 480px;
  }

  /* How It Works */
  .section-title {
    font-size: 28px;
  }

  /* CTA Banner */
  .cta-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-banner-content {
    flex-direction: column;
  }

  .cta-banner-stat {
    font-size: 96px;
  }

  .cta-banner-title {
    white-space: normal;
  }

  /* Partners */
  .partners-logos-group {
    gap: 60px;
    padding-inline-end: 60px;
  }

  .partner-logo {
    height: 48px;
  }

  /* Calculator */
  .calc-body {
    flex-direction: column-reverse;
    padding: 32px;
  }

  .calc-inputs {
    flex: unset;
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid var(--border-light);
    padding-top: 32px;
  }

  .calc-results {
    flex: unset;
    width: 100%;
    padding-bottom: 32px;
  }

  .calc-tab {
    font-size: 14px;
    padding: 16px 12px;
  }

  /* Eligibility */
  .eligibility-section {
    padding: 60px 0;
  }

  .eligibility-content {
    padding: 60px 32px;
  }

  .eligibility-title {
    font-size: 30px;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .footer-links {
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (max-width: 767px)
   ============================================ */
@media (max-width: 767.98px) {
  .hero-section {
    padding: 30px 0 0;
  }

  .hero-title {
    font-size: 34px;
  }

  .hero-description {
    font-size: 15px;
  }

  .hero-btn {
    padding: 12px 28px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }

  .hero-features {
    gap: 16px;
    margin-top: 28px;
  }

  .hero-feature-item {
    font-size: 13px;
  }

  .hero-image {
    max-width: 100%;
    margin-top: 10px;
  }

  /* How It Works */
  .how-it-works-section {
    padding: 60px 0;
  }

  .section-title {
    font-size: 24px;
  }

  .section-subtitle {
    font-size: 14px;
  }

  .step-card {
    padding: 28px 22px;
  }

  /* FAQ */
  .faq-section {
    padding: 60px 0;
  }

  .faq-question {
    font-size: 15px;
    padding: 18px 4px;
  }

  /* CTA Banner */
  .cta-banner-section {
    padding: 40px 0;
  }

  .cta-banner-stat {
    font-size: 80px;
  }

  .cta-banner-title {
    font-size: 20px;
  }

  .cta-banner-btn {
    width: 100%;
    text-align: center;
  }

  /* Partners */
  .partners-section {
    padding: 60px 0;
  }

  .partners-logos-group {
    gap: 40px;
    padding-inline-end: 40px;
  }

  .partner-logo {
    height: 70px;
  }

  /* Calculator */
  .calculator-section {
    padding: 60px 0;
  }

  .calc-body {
    padding: 24px;
    gap: 24px;
  }

  .calc-amount {
    font-size: 36px;
  }

  .calc-period-btns {
    gap: 8px;
  }

  .calc-period-btn {
    padding: 8px 6px;
    font-size: 14px;
  }

  .calc-disclaimer {
    padding: 12px 20px 20px;
    font-size: 11px;
  }

  /* Eligibility */
  .eligibility-section {
    padding: 40px 0;
  }

  .eligibility-card {
    min-height: 340px;
  }

  .eligibility-content {
    padding: 48px 24px;
  }

  .eligibility-title {
    font-size: 26px;
  }

  .eligibility-desc {
    font-size: 14px;
  }

  .eligibility-btn {
    font-size: 16px;
    padding: 14px 40px;
    width: 100%;
  }

  .eligibility-features {
    gap: 20px;
  }

  /* Footer */
  .footer-links {
    gap: 16px;
  }

  .footer-link {
    font-size: 13px;
  }

  .footer-copyright p {
    font-size: 12px;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max-width: 575px)
   ============================================ */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 30px;
  }

  .hero-badge {
    font-size: 13px;
    padding: 6px 16px;
  }

  .hero-features {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .faq-question {
    font-size: 14px;
  }

  .cta-banner-stat {
    font-size: 64px;
  }

  /* Eligibility */
  .eligibility-title {
    font-size: 22px;
  }

  .eligibility-features {
    flex-direction: column;
    gap: 12px;
  }

  /* Calculator */
  .calc-tab {
    font-size: 12px;
    padding: 14px 8px;
  }

  .calc-result-details {
    flex-direction: column;
    gap: 12px;
  }

  .calc-submit-btn {
    font-size: 15px;
    padding: 12px 24px;
  }
}