:root {
  --bg: #4a0000;
  --card: #4a0000;
  --text: #f6e6c3;
  --gold: #ffcc66;
  --gold2: #b8841a;
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}
body {
  background: radial-gradient(circle at top, #4a0000, #4a0000);
  color: var(--text);
}

.container {
  width: 92%;
  max-width: 1440px;
  margin: auto;
}

/* header{
  position:sticky;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(18,6,5,0.6);
  backdrop-filter:blur(10px);
  transition:all .3s ease;
} */
/* ── HEADER ── */
header {
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  background-color: #4a0000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.3));
  display: block;
}

.menu {
  display: flex;
  gap: 28px;
  align-items: center;
}

.menu a {
  color: #ddd;
  text-decoration: none;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.3px;
  transition: 0.2s;
}

.menu a:hover {
  color: #c9a84c;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  padding: 0 8px;
}

.call-btn {
  background: #c9a84c;
  border: none;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 14px;
  color: #0d1117;
  cursor: pointer;
  transition: 0.2s;
  white-space: nowrap;
}

.call-btn:hover {
  background: #b8922f;
  transform: scale(0.97);
}

/* ── RESPONSIVE ── */

/* Tablets & small laptops */
@media (max-width: 820px) {
  .menu {
    gap: 18px;
  }
  .menu a {
    font-size: 14px;
  }
}

/* Mobile devices */
@media (max-width: 700px) {
  .menu-toggle {
    display: block;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    gap: 12px;
    padding: 16px 0 8px;
  }

  .menu.active {
    display: flex;
  }

  .menu a {
    font-size: 16px;
    padding: 6px 0;
    width: 100%;
  }

  .nav {
    gap: 8px;
  }

  .call-btn {
    padding: 8px 18px;
    font-size: 13px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  header {
    padding: 10px 0;
  }

  .logo img {
    height: 34px;
  }

  .menu-toggle {
    font-size: 24px;
  }

  #pny-ticker {
    display: none;
  }

  .call-btn {
    padding: 6px 14px;
    font-size: 12px;
  }

  .menu a {
    font-size: 14px;
  }

  .why-grid {
    flex-direction: column;
  }

  .mv-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-actions .btn {
    min-width: 120px !important;
  }

  .hero-card {
    padding: 20px !important;
  }
}

/* Extra small phones */
@media (max-width: 380px) {
  .logo img {
    height: 28px;
  }

  .call-btn {
    padding: 5px 10px;
    font-size: 10px;
    display: none;
  }

  .menu-toggle {
    font-size: 20px;
  }
}

/* PREMIUM HERO PANEL */
.hero-card {
  position: relative;
  padding: 80px 40px;
  border-radius: 30px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(255, 204, 102, 0.25),
      transparent 60%
    ),
    linear-gradient(145deg, #5a160d, #4a0000);
  box-shadow:
    inset 0 0 0 1px rgba(255, 204, 102, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 280px;
}
.hero-text {
  max-width: 800px;
  margin: auto;
}
.hero-text h1 {
  font-size: 44px;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}
.hero-text p {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 30px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
.hero-actions .btn {
  min-width: 280px;
  padding: 18px 28px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  transition: 0.25s ease;
  border: none;
}
.hero-actions .btn-primary {
  background: linear-gradient(180deg, #ffd77a, #b8841a);
  color: #1a0b05;
}
.hero-actions .btn-secondary {
  background: #4a2c25;
  color: #fff;
}
.hero-actions .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.form-box {
  margin-top: 40px;
  background: var(--card);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid rgba(255, 204, 102, 0.3);
}
.form-row {
  display: flex;
  gap: 20px;
  margin-top: 15px;
}
.input {
  flex: 1;
  padding: 14px;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 102, 0.3);
  background: #1b0d0a;
  color: #fff;
}
.center {
  text-align: center;
}
.section {
  margin-top: 70px;
}
.badge {
  background: var(--card);
  padding: 22px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.3);
  text-align: center;
  width: 320px;
  margin: 40px auto;
}
.badge h3 {
  margin-bottom: 8px;
}
.badge .rate {
  font-size: 26px;
  color: var(--gold);
  font-weight: 600;
}

/* CALCULATOR */
/* .calculator {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  background: var(--card);
  padding: 35px;
  border-radius: 20px;
  border: 1px solid rgba(255, 204, 102, 0.3);
} */
/* .calc-box {
  background: #1b0d0a;
  padding: 25px;
  border-radius: 16px;
}
.calc-box .input {
  width: 100%;
  margin-top: 10px;
}
.calc-box .btn {
  width: 100%;
  padding: 12px 20px;
  border-radius: 12px;
  margin-top: 15px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  border: none;
} */
/* .karat-buttons{display:flex;gap:10px;margin-top:15px;flex-wrap:wrap} */
/* .karat-buttons button{background:#2b1410;color:#fff;border:1px solid rgba(255,204,102,.3);padding:8px 14px;border-radius:10px;cursor:pointer} */
/* .karat-buttons button.active{background:linear-gradient(90deg,var(--gold),var(--gold2));color:#000} */
/* .result {
  font-size: 28px;
  margin-top: 15px;
  color: var(--gold);
} */
@media (max-width: 900px) {
  .calculator {
    grid-template-columns: 1fr;
  }
  .form-row {
    flex-direction: column;
  }
}

/* Scroll highlight effect */
@keyframes formGlow {
  0% {
    box-shadow: 0 0 0 rgba(255, 204, 102, 0);
  }
  30% {
    box-shadow: 0 0 0 6px rgba(255, 204, 102, 0.35);
  }
  60% {
    box-shadow: 0 0 0 12px rgba(255, 204, 102, 0.18);
  }
  100% {
    box-shadow: 0 0 0 rgba(255, 204, 102, 0);
  }
}

.form-focus {
  animation: formGlow 2s ease;
  border-color: var(--gold) !important;
}

.focus-highlight {
  animation: highlightPulse 2s ease;
  box-shadow: 0 0 0px rgba(255, 204, 102, 0);
}

@keyframes highlightPulse {
  0% {
    box-shadow: 0 0 0px rgba(255, 204, 102, 0);
  }
  30% {
    box-shadow: 0 0 40px rgba(255, 204, 102, 0.9);
  }
  60% {
    box-shadow: 0 0 18px rgba(255, 204, 102, 0.6);
  }
  100% {
    box-shadow: 0 0 0px rgba(255, 204, 102, 0);
  }
}
.karat-selector {
  display: flex;
  gap: 10px;
  margin-top: 5px;
  flex-wrap: wrap;
  justify-content: center;
}

.karat {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 204, 102, 0.4);
  background: #2b1410;
  color: #fff;
  cursor: pointer;
  transition: 0.25s;
}

.karat:hover {
  transform: translateY(-2px);
}

.karat.active {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  font-weight: 600;
}

.live-karat-price {
  margin-top: 12px;
  font-size: 18px;
  color: var(--gold);
  font-weight: 500;

  justify-self: center;
}
.locked {
  background: #120705 !important;
  border: 1px dashed rgba(255, 204, 102, 0.5);
  color: var(--gold);
  font-weight: 600;
  text-align: center;
  cursor: not-allowed;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float img {
  width: 34px;
  height: 34px;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}
.menu a {
  color: var(--text);
  text-decoration: none;
  cursor: pointer;
}

.menu a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.logo:hover {
  text-decoration: none;
  color: var(--gold);
}

.input-error {
  border: 2px solid #ff4d4d !important;
  box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
}

.input-success {
  border: 2px solid #3bd16f !important;
  box-shadow: 0 0 10px rgba(59, 209, 111, 0.4);
}

.menu a.active {
  color: #c9a84c;
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease;
  z-index: 2000;
}

/* Popup Visible */
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

/* Popup Box */
.popup-box {
  background: linear-gradient(145deg, #2b1410, #1b0d0a);
  border: 1px solid rgba(255, 204, 102, 0.4);
  padding: 35px 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  animation: popupSlide 0.4s ease;
}

/* Title */
.popup-box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* Text */
.popup-box p {
  color: #eee;
  font-size: 15px;
  margin-bottom: 20px;
}

/* Button */
.popup-box button {
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  border: none;
  padding: 10px 26px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

/* Animation */
@keyframes popupSlide {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.logo img {
  height: 130px;
  width: auto;
  display: block;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  transition: 0.25s;
}

.logo img:hover {
  transform: scale(1.05);
}

/* Shift loan css */

/*career css*/

.careers {
  margin-top: 30px;
}

.section-title {
  color: var(--gold);
  margin-bottom: 20px;
}

.career-intro {
  max-width: 900px;
  margin: auto;
  text-align: center;
  opacity: 0.9;
  margin-bottom: 40px;
}

.career-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.career-card {
  background: var(--card);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
  transition: 0.3s;
}

.career-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.career-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.career-card h4 {
  margin-top: 15px;
  font-size: 14px;
  color: #ddd;
}

.career-card ul {
  padding-left: 18px;
  opacity: 0.9;
}

.apply-box {
  margin-top: 60px;
  text-align: center;
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
}

.apply-email {
  color: var(--gold);
  font-size: 18px;
  font-weight: 600;
  margin-top: 10px;
}

/*career part 2  */

.career-list {
  max-width: 1000px;
  margin: auto;
}

.career-item {
  border: 1px solid rgba(255, 204, 102, 0.25);
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
  background: var(--card);
}

.career-header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  color: var(--gold);
  font-size: 18px;
  padding: 18px 22px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Right side font colour in career page */
.career-header span {
  font-size: 13px;
  /* color:#ccc; */
}

.career-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0s ease;
  padding: 0 22px;
}

.career-content p,
.career-content ul {
  opacity: 0.9;
}

.career-content ul {
  padding-left: 18px;
  margin-bottom: 15px;
}

.career-item.active .career-content {
  max-height: 500px;
  padding: 20px 22px;
}

.career-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

/* right side info */

.career-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* arrow */

.arrow {
  color: var(--gold);
  font-size: 14px;
  transition: transform 0.35s ease;
}

/* rotate arrow when open */

.career-item.active .arrow {
  transform: rotate(180deg);
}

/* smoother accordion animation */

.career-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 0 22px;
}

/* expanded state */

.career-item.active .career-content {
  max-height: 800px;
  padding: 20px 22px;
}

/* subtle gold highlight */

.career-item.active {
  border-color: rgba(255, 204, 102, 0.55);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.career-header:hover {
  background: rgba(255, 204, 102, 0.04);
}

.career-item.active .career-header {
  color: #ffd77a;
}

/* ABOUT */

.about-text {
  max-width: 900px;
  margin: auto;
  margin-bottom: 20px;
  text-align: center;
  opacity: 0.9;
}

.about-tagline {
  text-align: center;
  margin-top: 25px;
  color: var(--gold);
  font-weight: 600;
  font-size: 18px;
}

/* Mission Vision */

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: auto;
}

.mv-card {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
  transition: 0.3s;
}

.mv-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.mv-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* WHY US */

.why-grid {
  display: grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr)) !important;
  /* grid-template-columns: repeat(6, 1fr); */
  gap: 25px;
  margin-top: 40px;
  /* display: flex; */
}

.why-card {
  background: var(--card);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.why-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

/* FAQ */

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

.faq-item {
  border-bottom: 1px solid rgba(255, 204, 102, 0.2);
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--gold);
  font-size: 18px;
  cursor: pointer;
}
.faq-question:hover {
  transform: translateY(-2px);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  opacity: 0.9;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  margin-top: 10px;
}

.why-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

/* about 2 */

.about-hero {
  padding: 80px 0;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% -30%,
      rgba(255, 204, 102, 0.25),
      transparent 60%
    ),
    linear-gradient(145deg, #4a140d, #4a0000);

  border-bottom: 1px solid rgba(255, 204, 102, 0.15);
}

.about-hero h1 {
  font-size: 40px;
  color: var(--gold);
  margin-bottom: 20px;
}

.about-hero p {
  max-width: 800px;
  margin: auto;
  font-size: 18px;
  opacity: 0.9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
}

.stat h2 {
  color: var(--gold);
  font-size: 34px;
  margin-bottom: 8px;
}

.security-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.security-card {
  background: var(--card);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
  transition: 0.3s;
}

.security-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
}

.security-card h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.branch-box {
  background: var(--card);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
  max-width: 600px;
  margin: auto;
  text-align: center;
}

.branch-box h3 {
  color: var(--gold);
  margin-bottom: 10px;
}

.section::after {
  content: "";
  display: block;
  width: 120px;
  height: 2px;
  margin: 60px auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

/* Contact page */

.contact-page {
  padding: 5px 20px;

  background:
    radial-gradient(
      circle at 50% -20%,
      rgba(255, 204, 102, 0.25),
      transparent 60%
    ),
    linear-gradient(145deg, #4a0000, #4a0000);

  font-family: Arial;
}

.contact-page h2 {
  text-align: center;

  font-size: 38px;

  color: #7a5a00;

  margin-bottom: 10px;
}

.subtitle {
  text-align: center;

  color: #555;

  margin-bottom: 40px;
  color: var(--gold);
}

.contact-wrapper {
  max-width: 1100px;

  margin: auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 40px;
}

.contact-details h3 {
  color: #b68d40;

  margin-top: 20px;

  animation: fadeIn 1s ease;
}

.contact-form form {
  display: flex;

  flex-direction: column;

  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;

  border-radius: 10px;

  border: 1px solid #ddd;
}

.contact-form button {
  background: #b68d40;

  color: white;

  border: none;

  padding: 12px;

  border-radius: 6px;

  font-size: 16px;

  cursor: pointer;

  transition: 0.3s;
}

.contact-form button:hover {
  background: #9c7a33;
}

/* Floating Buttons */

.whatsapp-btn {
  position: fixed;

  bottom: 90px;

  right: 20px;

  background: #25d366;

  color: white;

  font-size: 24px;

  padding: 14px 16px;

  border-radius: 50%;

  text-decoration: none;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.contact-page h2 {
  font-size: 44px;
  letter-spacing: 0.5px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 14px;
}

/* Animation */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.whatsapp-float_cnt {
  position: fixed;
  bottom: 50px;
  right: 25px;
  width: 65px;
  height: 65px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
  z-index: 999;
  transition: 0.3s;
}

.whatsapp-float_cnt img {
  width: 34px;
  height: 34px;
}

.whatsapp-float_cnt:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Calculator */

/* =========================================
   NEW CALCULATOR (AURAFIN UI - PNY COLORS)
========================================= */

.calc-section {
  margin-top: 70px;
}

.section-tag {
  text-align: center;
  color: var(--gold);
  margin-bottom: 10px;
  font-size: 14px;
  letter-spacing: 1px;
}

.calc-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .calc-wrap {
    grid-template-columns: 1fr;
  }
}

/* Rate bar */
.rate-status-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 204, 102, 0.05);
  border: 1px solid rgba(255, 204, 102, 0.2);
  padding: 10px 14px;
  border-radius: 10px;
  margin-bottom: 15px;
  font-size: 13px;
}

#rateDot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #facc15;
}

/* Rate cards */
.rate-cards {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.rate-card {
  flex: 1;
  background: var(--card);
  border: 1px solid rgba(255, 204, 102, 0.25);
  border-radius: 10px;
  padding: 12px;
  text-align: center;
}

.rate-card-karat {
  font-size: 12px;
  color: #aaa;
}

.rate-card-price {
  font-size: 18px;
  color: var(--gold);
  font-weight: 600;
}

.rate-card-sub {
  font-size: 11px;
  color: #888;
}

/* Input card */
.calc-card {
  background: var(--card);
  padding: 25px;
  border-radius: 16px;
  border: 1px solid rgba(255, 204, 102, 0.25);
}

.field {
  margin-bottom: 20px;
}

.field label {
  font-size: 12px;
  color: #aaa;
  margin-bottom: 8px;
  display: block;
}

/* Slider */
input[type="range"] {
  width: 100%;
}

.range-val {
  font-size: 20px;
  color: var(--gold);
  margin-top: 8px;
}

/* Select */
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: #1b0d0a;
  color: #fff;
  border: 1px solid rgba(255, 204, 102, 0.3);
}

/* Result card */
.result-card {
  background: linear-gradient(145deg, #4a0000);
  border: 1px solid rgba(255, 204, 102, 0.35);
  border-radius: 16px;
  padding: 25px;
}

.result-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 204, 102, 0.15);
}

.result-row:last-child {
  border-bottom: none;
}

.result-label {
  color: #c9a84c;
}

.result-value {
  font-weight: 600;
  color: #fff;
}

/* Highlight row */
.result-row.hl .result-value {
  font-size: 24px;
  color: var(--gold);
}

/* CTA */
.calc-cta {
  display: block;
  margin-top: 20px;
  text-align: center;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  color: #000;
  text-decoration: none;
  font-weight: 600;
}

.calc-disc {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
  text-align: center;
}

.arrow {
  transition: transform 0.3s ease;
  display: inline-block;
}

.faq-item.active .arrow {
  transform: rotate(180deg);
}

/* Ham */

.menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  color: var(--gold);
  cursor: pointer;
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .wrap2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

  .menu {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background: #1b0d0a;
    padding: 15px;
    border-radius: 10px;
  }

  .menu.active {
    display: flex;
  }

  .calc-card {
    width: 100%;
  }

  .nav {
    flex-wrap: wrap;
  }

  .rate-cards {
    flex-wrap: wrap;
  }

  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}

.ul-padding {
  padding-left: 10px;
}


