/* ============================================================
   SECTION 2A — Premium Unit Configurations
   ============================================================ */

#section-2a {
  padding: 20px 20px;
  background: var(--secondary-col);
  position: relative;
}

.sec2a-con {
  max-width: 1320px;
  margin: 0 auto;
}

/* ===== HEADER ===== */
.sec2a-header {
  display: flex;
  flex-direction: column;
  text-align: center;
  margin-bottom: 35px;
  align-items: center;
}

.sec2a-title {
  font-size: 2.8rem;
  font-weight: bold;
  color: var(--primary-green);
  font-family: var(--font1);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.sec2a-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  color: var(--primary-green);
  font-family: var(--font2);
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: 0.6;
}

.sec2a-subtitle::before,
.sec2a-subtitle::after {
  content: "";
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary-green);
  opacity: 0.4;
}

/* ===== CARDS GRID ===== */
.sec2a-cards-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0;
}

/* ===== BASE CARD ===== */
.sec2a-card {
  background: var(--primary-green);
  border-radius: 16px;
  padding: 0 0 32px;
  border: 1px solid rgba(50, 78, 66, 0.12);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow:
    0 2px 12px rgba(50, 78, 66, 0.1),
    0 8px 32px rgba(50, 78, 66, 0.12);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

/* Thin accent line overlaid on top of video */
.sec2a-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--secondary-green),
    transparent
  );
  z-index: 2;
}

.sec2a-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 4px 16px rgba(50, 78, 66, 0.14),
    0 24px 56px rgba(50, 78, 66, 0.2);
}

/* ===== CARD VIDEO ===== */
.card-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  flex-shrink: 0;
}

.card-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.sec2a-card:hover .card-video video {
  transform: scale(1.05);
}

/* ===== CARD HEADER ===== */
.card-header {
  padding: 20px 28px 16px;
  border-bottom: 1px solid rgba(249, 247, 242, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.unit-type {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-col);
  font-family: var(--font1);
  margin-bottom: 12px;
  letter-spacing: -0.2px;
  display: block;
}

.unit-badge {
  display: inline-block;
  background: rgba(249, 247, 242, 0.1);
  color: var(--secondary-col);
  padding: 4px 12px;
  border-radius: 3px;
  font-size: 0.65rem;
  font-weight: 700;
  border: 1px solid rgba(249, 247, 242, 0.2);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font2);
}

/* ===== CARD BODY ===== */
.card-body {
  flex: 1;
  padding: 26px 28px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  font-family: var(--font1);
}

.unit-detail {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}

.detail-label {
  font-size: 0.65rem;
  color: rgba(249, 247, 242, 0.45);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-family: var(--font2);
}

.detail-value {
  font-size: 1.05rem;
  color: var(--secondary-col);
  font-weight: 600;
  font-family: var(--font2);
}

.detail-value.price {
  font-size: 1.7rem;
  color: var(--secondary-col);
  font-weight: 800;
  letter-spacing: -0.5px;
  font-family: var(--font1);
}

/* ===== CARD FOOTER ===== */
.card-footer {
  margin-top: auto;
  padding: 30px 28px 0;
}

.know-more-btn {
  width: 100%;
  padding: 13px 24px;
  background: transparent;
  color: var(--secondary-col);
  border: 1.5px solid rgba(249, 247, 242, 0.4);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    color 0.22s ease,
    transform 0.22s ease;
  font-family: var(--font2);
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.know-more-btn:hover {
  background: var(--secondary-col);
  border-color: var(--secondary-col);
  color: var(--primary-green);
  transform: translateY(-1px);
}

.know-more-btn:active {
  transform: translateY(0);
}

/* ===== ULTRA LUXE CARD (last) — charcoal for distinction ===== */
.sec2a-card:last-child {
  background: var(--primary-green);
  box-shadow:
    0 2px 12px rgba(45, 45, 45, 0.15),
    0 8px 32px rgba(45, 45, 45, 0.2);
}

.sec2a-card:last-child:hover {
  box-shadow:
    0 4px 16px rgba(45, 45, 45, 0.2),
    0 24px 56px rgba(45, 45, 45, 0.28);
}

.sec2a-card:last-child .card-header {
  border-bottom-color: rgba(249, 247, 242, 0.08);
}

.sec2a-card:last-child .know-more-btn:hover {
  color: var(--fourth-col);
}

/* ============================================================
   CURRENCY CONVERTER — NRI page only
   ============================================================ */

.nri-currency-converter {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: var(--fourth-col);
  border-radius: 15px;
  padding: 5px;
  width: 50%;
}

.nri-cc-label {
  font-size: 0.68rem;
  font-family: var(--font2);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  font-size: large;
  color: var(--secondary-green);
}

.nri-cc-wrap {
  position: relative;
}

.nri-cc-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--primary-green);
  border: 1px solid var(--primary-green);
  border-radius: 8px;
  cursor: pointer;
  color: var(--secondary-col);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
  min-width: 240px;
  justify-content: space-between;
}

.nri-cc-trigger:hover,
.nri-cc-trigger.open {
  border-color: var(--secondary-green);
  box-shadow:
    0 0 0 3px rgba(59, 178, 74, 0.18),
    0 4px 16px rgba(50, 78, 66, 0.2);
}

.nri-cc-trigger-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.nri-cc-trigger.open .nri-cc-chevron {
  transform: rotate(180deg);
}

.nri-cc-globe {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  color: var(--secondary-col);
}

.nri-cc-code {
  font-size: 0.88rem;
  font-family: var(--font1);
  font-weight: 700;
  color: var(--secondary-col);
  letter-spacing: 1px;
  flex-shrink: 0;
}

.nri-cc-sep {
  font-size: 0.8rem;
  color: var(--secondary-col);
  opacity: 0.3;
  flex-shrink: 0;
}

.nri-cc-name {
  font-size: 0.78rem;
  font-family: var(--font3);
  color: var(--secondary-col);
  opacity: 0.65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.nri-cc-chevron {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--secondary-col);
  opacity: 0.7;
  transition: transform 0.22s ease;
}

.nri-cc-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 330px;
  background: var(--secondary-col);
  border: 1px solid rgba(50, 78, 66, 0.14);
  border-top: 2px solid var(--secondary-green);
  border-radius: 12px;
  box-shadow:
    0 4px 24px rgba(50, 78, 66, 0.14),
    0 24px 64px rgba(50, 78, 66, 0.16);
  z-index: 500;
  overflow: hidden;
  display: none;
}

.nri-cc-dropdown.open {
  display: block;
  animation: nriCcFadeIn 0.17s ease;
}

@keyframes nriCcFadeIn {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.nri-cc-search-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(50, 78, 66, 0.1);
}

.nri-cc-search-icon {
  width: 14px;
  height: 14px;
  color: var(--primary-green);
  opacity: 0.38;
  flex-shrink: 0;
}

.nri-cc-search {
  flex: 1;
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.82rem;
  font-family: var(--font3);
  color: var(--primary-green);
  caret-color: var(--secondary-green);
}

.nri-cc-search::placeholder {
  color: var(--primary-green);
  opacity: 0.32;
}

.nri-cc-list {
  list-style: none;
  max-height: 256px;
  overflow-y: auto;
  padding: 6px 0;
  margin: 0;
  scrollbar-width: thin;
  scrollbar-color: rgba(50, 78, 66, 0.18) transparent;
}

.nri-cc-list::-webkit-scrollbar {
  width: 3px;
}

.nri-cc-list::-webkit-scrollbar-thumb {
  background: rgba(59, 178, 74, 0.25);
  border-radius: 2px;
}

.nri-cc-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.12s ease;
}

.nri-cc-item:hover {
  background: rgba(50, 78, 66, 0.07);
}

.nri-cc-item.active {
  background: var(--primary-green);
}

.nri-cc-item.active .nri-cc-item-code {
  color: var(--secondary-col);
}

.nri-cc-item.active .nri-cc-item-name {
  color: var(--secondary-col);
  opacity: 0.65;
}

.nri-cc-item.active .nri-cc-item-rate--base {
  color: var(--secondary-col);
  opacity: 0.35;
}

.nri-cc-item-code {
  font-size: 0.78rem;
  font-family: var(--font1);
  font-weight: 700;
  color: var(--primary-green);
  min-width: 36px;
  flex-shrink: 0;
  letter-spacing: 0.5px;
}

.nri-cc-item-name {
  font-size: 0.75rem;
  font-family: var(--font3);
  color: var(--primary-green);
  opacity: 0.58;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}

.nri-cc-item-rate {
  font-size: 0.72rem;
  font-family: var(--font2);
  color: var(--secondary-green);
  flex-shrink: 0;
  letter-spacing: 0.2px;
  text-align: right;
  min-width: 36px;
}

.nri-cc-item-rate--base {
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary-green);
  opacity: 0.32;
}

.nri-cc-loading,
.nri-cc-no-results {
  padding: 18px 16px;
  text-align: center;
  font-size: 0.78rem;
  font-family: var(--font3);
  color: var(--primary-green);
  opacity: 0.42;
  font-style: italic;
}

.nri-cc-rate {
  display: block;
  min-height: 16px;
  font-size: medium;
  font-family: var(--font3);
  color: var(--secondary-green);
  letter-spacing: 0.5px;
  text-align: center;
}

.detail-value.price.nri-price-loading {
  opacity: 0.35;
  transition: opacity 0.15s ease;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

@media (max-width: 1199px) {
  #section-2a {
    padding: 80px 20px;
  }

  .sec2a-cards-container {
    gap: 16px;
  }

  .sec2a-title {
    font-size: 2.4rem;
  }

  .card-header {
    padding: 18px 22px 14px;
  }

  .card-body {
    padding: 22px 22px 0;
    gap: 20px;
  }

  .card-footer {
    padding: 24px 22px 0;
  }

  .unit-type {
    font-size: 1.3rem;
  }

  .detail-value.price {
    font-size: 1.5rem;
  }
}

@media (max-width: 899px) {
  #section-2a {
    padding: 60px 15px;
  }

  .sec2a-header {
    margin-bottom: 52px;
  }

  .sec2a-title {
    font-size: 2rem;
  }

  .sec2a-cards-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .unit-type {
    font-size: 1.2rem;
  }

  .detail-value.price {
    font-size: 1.4rem;
  }

  .know-more-btn {
    font-size: 0.72rem;
    padding: 11px 20px;
  }
}

@media (max-width: 767px) {
  #section-2a {
    padding: 50px 12px;
  }

  .sec2a-header {
    margin-bottom: 40px;
  }

  .sec2a-title {
    font-size: 1.7rem;
  }

  .sec2a-cards-container {
    gap: 14px;
  }

  .card-header {
    padding: 22px 18px 16px;
  }

  .card-body {
    padding: 18px 18px 0;
    gap: 18px;
  }

  .card-footer {
    padding: 22px 18px 0;
  }

  .unit-type {
    font-size: 1.1rem;
  }

  .detail-label {
    font-size: 0.62rem;
  }

  .detail-value.price {
    font-size: 1.25rem;
  }

  .unit-badge {
    font-size: 0.6rem;
    padding: 3px 10px;
  }

  .nri-cc-trigger {
    min-width: 210px;
    padding: 10px 16px;
  }

  .nri-cc-name {
    max-width: 110px;
  }

  .nri-cc-dropdown {
    width: 280px;
  }
}

@media (max-width: 599px) {
  #section-2a {
    padding: 40px 10px;
  }

  .sec2a-header {
    margin-bottom: 32px;
  }

  .sec2a-title {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .sec2a-card {
    padding-bottom: 26px;
    border-radius: 12px;
  }

  .card-header {
    padding: 20px 16px 14px;
  }

  .card-body {
    padding: 16px 16px 0;
    gap: 16px;
  }

  .card-footer {
    padding: 20px 16px 0;
  }

  .unit-type {
    font-size: 1rem;
  }

  .detail-value.price {
    font-size: 1.15rem;
  }

  .know-more-btn {
    font-size: 0.7rem;
    padding: 10px 16px;
    letter-spacing: 2px;
  }

  .nri-cc-trigger {
    min-width: 190px;
  }

  .nri-cc-name {
    max-width: 90px;
  }

  .nri-cc-dropdown {
    width: 260px;
  }
}

@media (max-width: 374px) {
  #section-2a {
    padding: 32px 8px;
  }

  .sec2a-title {
    font-size: 1.3rem;
  }

  .sec2a-card {
    border-radius: 10px;
  }

  .unit-type {
    font-size: 0.95rem;
  }

  .detail-value.price {
    font-size: 1.05rem;
  }

  .nri-cc-trigger {
    min-width: 170px;
    padding: 9px 14px;
    gap: 8px;
  }

  .nri-cc-code {
    font-size: 0.82rem;
  }

  .nri-cc-name {
    max-width: 75px;
    font-size: 0.72rem;
  }
}

/* ============================================================
   EMI CALCULATOR — NRI page only
   ============================================================ */

.emi-calc {
  margin-top: 25px;
  background: var(--primary-green);
  border-radius: 20px;
  padding: 25px 30px;
  border: 1px solid rgba(249, 247, 242, 0.06);
  box-shadow:
    0 2px 12px rgba(50, 78, 66, 0.1),
    0 8px 40px rgba(50, 78, 66, 0.14);
}

.emi-calc-header {
  text-align: center;
  margin-bottom: 40px;
}

.emi-calc-subtitle {
  display: block;
  font-size: 1.5rem;
  font-family: var(--font1);
  color: var(--secondary-green);
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 10px;
}

.emi-calc-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary-col);
  font-family: var(--font3);
  letter-spacing: -0.3px;
}

/* ===== TWO-COLUMN LAYOUT ===== */

.emi-calc-body {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 44px;
  align-items: start;
}

/* ===== INPUTS ===== */

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

.emi-field:last-child {
  margin-bottom: 0;
}

.emi-field-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 14px;
}

.emi-field-label {
  font-size: 0.65rem;
  font-family: var(--font2);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--secondary-col);
  opacity: 0.45;
}

.emi-field-val {
  font-size: 0.95rem;
  font-family: var(--font1);
  font-weight: 700;
  color: var(--secondary-col);
  letter-spacing: -0.2px;
}

/* Preset buttons */
.emi-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.emi-preset {
  padding: 7px 15px;
  border-radius: 7px;
  border: 1px solid rgba(249, 247, 242, 0.2);
  background: transparent;
  color: var(--secondary-col);
  font-size: 0.68rem;
  font-family: var(--font2);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  cursor: pointer;
  opacity: 0.6;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
}

.emi-preset:hover {
  border-color: rgba(249, 247, 242, 0.55);
  opacity: 0.9;
}

.emi-preset.active {
  background: var(--secondary-col);
  border-color: var(--secondary-col);
  color: var(--primary-green);
  opacity: 1;
}

/* Range slider — cross-browser */
.emi-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  border-radius: 4px;
  background: linear-gradient(
    to right,
    var(--secondary-green) 0%,
    var(--secondary-green) var(--rv, 0%),
    rgba(249, 247, 242, 0.14) var(--rv, 0%),
    rgba(249, 247, 242, 0.14) 100%
  );
  outline: none;
  cursor: pointer;
  display: block;
}

.emi-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-col);
  border: 3px solid var(--secondary-green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
}

.emi-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.emi-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--secondary-col);
  border: 3px solid var(--secondary-green);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  transition: transform 0.15s ease;
}

.emi-range::-moz-range-thumb:hover {
  transform: scale(1.2);
}

.emi-range::-moz-range-track {
  height: 4px;
  border-radius: 4px;
  background: rgba(249, 247, 242, 0.14);
}

.emi-range::-moz-range-progress {
  height: 4px;
  border-radius: 4px;
  background: var(--secondary-green);
}

.emi-range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  font-size: 0.6rem;
  font-family: var(--font2);
  color: var(--secondary-col);
  opacity: 0.28;
  letter-spacing: 1px;
}

/* Tenure buttons */
.emi-tenure-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.emi-tenure-btn {
  flex: 1;
  min-width: 54px;
  padding: 9px 6px;
  border-radius: 8px;
  border: 1px solid rgba(249, 247, 242, 0.18);
  background: transparent;
  color: var(--secondary-col);
  font-size: 0.7rem;
  font-family: var(--font2);
  font-weight: 600;
  cursor: pointer;
  opacity: 0.55;
  text-align: center;
  transition:
    background 0.18s ease,
    border-color 0.18s ease,
    color 0.18s ease,
    opacity 0.18s ease;
}

.emi-tenure-btn:hover {
  border-color: rgba(249, 247, 242, 0.5);
  opacity: 0.9;
}

.emi-tenure-btn.active {
  background: var(--secondary-green);
  border-color: var(--secondary-green);
  color: var(--secondary-col);
  opacity: 1;
}

/* ===== OUTPUT PANEL ===== */

.emi-output-col {
  background: rgba(249, 247, 242, 0.05);
  border-radius: 16px;
  padding: 32px 28px;
  border: 1px solid rgba(249, 247, 242, 0.08);
  position: sticky;
  top: 88px;
}

.emi-monthly {
  text-align: center;
  margin-bottom: 26px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(249, 247, 242, 0.08);
}

.emi-monthly-label {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font2);
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--secondary-col);
  opacity: 0.4;
  margin-bottom: 10px;
}

.emi-monthly-amount {
  display: block;
  font-size: 2.6rem;
  font-family: var(--font1);
  font-weight: 700;
  color: var(--secondary-green);
  letter-spacing: -0.5px;
  line-height: 1.1;
  margin-bottom: 6px;
}

.emi-monthly-sub {
  display: block;
  font-size: 0.62rem;
  font-family: var(--font2);
  color: var(--secondary-col);
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Proportion bar */
.emi-bar {
  display: flex;
  height: 6px;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 22px;
  background: rgba(249, 247, 242, 0.1);
}

.emi-bar-p {
  height: 100%;
  background: var(--secondary-col);
  border-radius: 6px 0 0 6px;
  transition: width 0.4s ease;
  flex-shrink: 0;
}

.emi-bar-i {
  flex: 1;
  height: 100%;
  background: var(--secondary-green);
  border-radius: 0 6px 6px 0;
}

/* Breakdown rows */
.emi-bd-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(249, 247, 242, 0.07);
}

.emi-bd-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.emi-bd-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.emi-bd-dot-p {
  background: var(--secondary-col);
  opacity: 0.75;
}
.emi-bd-dot-i {
  background: var(--secondary-green);
}
.emi-bd-dot-t {
  background: rgba(249, 247, 242, 0.28);
}

.emi-bd-label {
  flex: 1;
  font-size: 0.68rem;
  font-family: var(--font2);
  color: var(--secondary-col);
  opacity: 0.5;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.emi-bd-val {
  font-size: 0.88rem;
  font-family: var(--font1);
  font-weight: 700;
  color: var(--secondary-col);
  text-align: right;
}

.emi-bd-total .emi-bd-label {
  opacity: 0.85;
}

.emi-bd-total .emi-bd-val {
  color: var(--secondary-green);
  font-size: 1rem;
}

.emi-disclaimer {
  margin-top: 20px;
  font-size: 0.58rem;
  font-family: var(--font3);
  color: var(--secondary-col);
  opacity: 0.25;
  text-align: center;
  letter-spacing: 0.4px;
  line-height: 1.5;
}

/* ============================================================
   EMI CALCULATOR — RESPONSIVE
   ============================================================ */

@media (max-width: 1199px) {
  .emi-calc {
    padding: 36px 38px;
  }

  .emi-calc-body {
    grid-template-columns: 1fr 300px;
    gap: 36px;
  }

  .emi-calc-title {
    font-size: 1.65rem;
  }

  .emi-monthly-amount {
    font-size: 2.2rem;
  }
}

@media (max-width: 899px) {
  .emi-calc {
    padding: 28px 24px;
    margin-top: 36px;
  }

  .emi-calc-body {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .emi-output-col {
    position: static;
  }

  .emi-calc-title {
    font-size: 1.5rem;
  }
}

@media (max-width: 767px) {
  .emi-calc {
    padding: 24px 20px;
    margin-top: 28px;
    border-radius: 16px;
  }

  .emi-calc-header {
    margin-bottom: 28px;
  }

  .emi-calc-title {
    font-size: 1.35rem;
  }

  .emi-monthly-amount {
    font-size: 2rem;
  }

  .emi-output-col {
    padding: 24px 20px;
  }

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

@media (max-width: 599px) {
  .emi-calc {
    padding: 20px 16px;
    margin-top: 24px;
    border-radius: 14px;
  }

  .emi-calc-header {
    margin-bottom: 24px;
  }

  .emi-calc-title {
    font-size: 1.2rem;
  }

  .emi-monthly-amount {
    font-size: 1.8rem;
  }

  .emi-presets {
    gap: 6px;
  }

  .emi-preset {
    font-size: 0.63rem;
    padding: 6px 10px;
    letter-spacing: 1px;
  }

  .emi-tenure-btns {
    gap: 6px;
  }

  .emi-tenure-btn {
    min-width: 44px;
    font-size: 0.66rem;
    padding: 8px 4px;
  }

  .emi-output-col {
    padding: 20px 16px;
    border-radius: 12px;
  }

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

@media (max-width: 374px) {
  .emi-calc {
    padding: 16px 12px;
    border-radius: 12px;
  }

  .emi-calc-title {
    font-size: 1.05rem;
  }

  .emi-monthly-amount {
    font-size: 1.6rem;
  }

  .emi-preset {
    font-size: 0.58rem;
    padding: 5px 8px;
  }

  .emi-tenure-btn {
    min-width: 38px;
    font-size: 0.62rem;
    padding: 7px 3px;
  }

  .emi-output-col {
    padding: 16px 12px;
  }
}
