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

:root {
  --bg-dark: #130E0A;
  --bg-body: #0d0d0d;
  --bg-card: #111;
  --gold: #c9a227;
  --gold-light: #e8c97a;
  --gold-dark: #9e7e1e;
  --gold-accent: #DAA520;
  --gold-secondary: #C5963A;
  --gold-gradient: linear-gradient(90deg, #B78831 0%, #F4E289 50%, #BA8C33 100%);
  --text-white: #fff;
  --text-muted: #999;
  --border-gold: rgba(201, 162, 39, 0.25);
  --border-gold-light: rgba(197, 150, 58, 0.3);
  --border-gold-dim: rgba(197, 150, 58, 0.2);
  --btn-gradient: linear-gradient(135deg, #5E182E 1%, #B7750B 48%, #5E182E 91%);
  --btn-gradient-hover: linear-gradient(135deg, #7A2A3E 1%, #D08E1A 48%, #7A2A3E 91%);
  --gold-hover: #FFD700;
}

/* === BASE === */
body {
  background: var(--bg-dark);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-white);
  overflow-x: hidden;
  margin: 0;
}

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

a:hover {
  color: var(--gold-light);
  text-decoration: none;
}

li,
ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

ul li::marker {
  content: none;
}

/* === HEADER BAR === */
.header-bar {
  background: var(--bg-dark);
  padding: 12px 0;
  border-bottom: 1px solid var(--border-gold);
}

.header-logo {
  display: flex;
  align-items: center;
  height: 60px;
}

.header-logo a,
.header-logo a:hover,
.header-logo a:focus,
.header-logo a:active {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
}

.header-logo img,
.header-logo img:hover,
.mobile-logo img,
.mobile-logo img:hover {
  height: 55px;
  width: auto;
  border: none;
  outline: none;
  box-shadow: none;
}

.header-app-icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0px;
  height: 60px;
  margin-top: 8px;
}

.app-icon-link img {
  border-radius: 50%;
  padding: 4px;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.app-icon-link img:hover {
  opacity: 1;
}

/* === MENU === */
.menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 18px 0;
  padding: 0;
  gap: 4px;
}

.menu li {
  position: relative;
}

.menu a {
  display: block;
  padding: 6px 6px;
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s;
}

.menu a:hover,
.menu .active a {
  color: var(--gold);
}

.menu a:focus,
.menu a:active,
.menu a:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.hamburger:focus,
.hamburger:active,
.hamburger:focus-visible {
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.mobile-nav-links li a:focus,
.mobile-nav-links li a:active,
.mobile-nav-links li a:focus-visible {
  outline: none;
  border: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.sidebar-close:focus,
.sidebar-close:active,
.sidebar-close:focus-visible {
  outline: none;
  box-shadow: none;
}

/* === MARQUEE === */
.marquee-bar {
  background: var(--gold-gradient);
  padding: 6px 0;
}

.marquee-text {
  font-weight: 600;
  font-size: 15px;
  color: #000;
}

/* === MOBILE NAV === */
.mobile-nav-wrapper {
  background: var(--bg-dark);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.5);
  position: sticky;
  top: 0;
  z-index: 1040;
  border-bottom: 1px solid var(--border-gold);
}

.mobile-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 15px;
}

.mobile-logo img {
  height: 45px;
  width: auto;
}

.hamburger {
  border: none !important;
  background: transparent !important;
  padding: 6px 8px;
  position: relative;
  width: 44px;
  height: 40px;
  cursor: pointer;
}

.ham-bar {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: 9px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.ham-bar--top {
  top: 10px;
}

.ham-bar--mid {
  top: 19px;
  opacity: 1;
}

.ham-bar--bot {
  top: 28px;
}

.hamburger.active .ham-bar--top {
  transform: translateY(9px) rotate(45deg);
  background-color: #fff;
}

.hamburger.active .ham-bar--mid {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active .ham-bar--bot {
  transform: translateY(-9px) rotate(-45deg);
  background-color: #fff;
}

.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1041;
  opacity: 0;
  transition: opacity 0.35s;
}

.mobile-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -280px;
  width: 270px;
  height: 100%;
  background: #111;
  z-index: 1042;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
  transition: right 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-sidebar.active {
  left: 0;
}

.mobile-sidebar-header {
  background: #1a1a1a;
  padding: 18px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--gold);
}

.sidebar-logo {
  height: 40px;
  width: auto;
}

.sidebar-close {
  background: none;
  border: none;
  cursor: pointer;
  width: 34px;
  height: 34px;
  position: relative;
  padding: 0;
}

.sidebar-close span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  position: absolute;
  left: 6px;
  transition: transform 0.3s;
}

.sidebar-close span:first-child {
  top: 16px;
  transform: rotate(45deg);
}

.sidebar-close span:last-child {
  top: 16px;
  transform: rotate(-45deg);
}

.mobile-nav-links {
  list-style: none;
  padding: 15px 0;
  margin: 0;
  flex: 1;
}

.mobile-nav-links li {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.35s, transform 0.35s;
}

.mobile-sidebar.active .mobile-nav-links li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(1) {
  transition-delay: .08s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(2) {
  transition-delay: .14s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(3) {
  transition-delay: .2s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(4) {
  transition-delay: .26s;
}

.mobile-sidebar.active .mobile-nav-links li:nth-child(5) {
  transition-delay: .32s;
}

.mobile-nav-links li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid #222;
  transition: background 0.2s, color 0.2s;
}

.mobile-nav-links li a:hover {
  background: #1a1a1a;
  color: var(--gold);
}

.mobile-nav-links li a i {
  width: 18px;
  text-align: center;
  color: var(--gold);
  font-size: 16px;
}

/* === MAIN CONTENT === */
.main-content {
  padding: 25px 0 10px;
}

/* === COMMODITY TABLE === */
.commodity-table-wrapper {
  margin-bottom: 20px;
}

.commodity-main-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 8px;
  margin-top: 0;
  margin-bottom: 0;
  text-align: center;
  table-layout: fixed;
  width: 100%;
}

.commodity-header-row {
  background: #130E0A;
  border-radius: 6px;
}

.commodity-th {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-top: 1px solid #ddc067 !important;
  border-bottom: 1px solid #ddc067 !important;
  border-left: none !important;
  border-right: none !important;
  text-align: center;
}

.commodity-th:first-child {
  border-radius: 6px 0 0 6px;
  border-left: 1px solid #ddc067 !important;
}

.commodity-th:last-child {
  border-radius: 0 6px 6px 0;
  border-right: 1px solid #ddc067 !important;
}

.th-sub {
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
}

.commodity-row {
  border: 1px solid rgba(187, 142, 55, 0.5);
  border-radius: 6px;
}

/* Gold rows — com_type = 1 */
.commodity-row.commodity-row-gold {
  background: linear-gradient(90deg, rgba(187, 142, 55, 0.6) 0%, rgba(242, 223, 134, 0.6) 50%, rgba(187, 142, 55, 0.6) 96.5%) !important;
  border: 1px solid rgba(187, 142, 55, 0.5);
  border-radius: 6px;
}

/* Silver rows — com_type = 2 */
.commodity-row.commodity-row-silver {
  background: linear-gradient(90deg, #CECECE 0%, #D0D0D0 50%, #CCCCCC 98.5%) !important;
  border: 1px solid #bbb;
  border-radius: 6px;
}

.commodity-row td,
.commodity-row-gold td,
.commodity-row-silver td {
  background: transparent !important;
  border: none;
  padding: 14px 18px !important;
  border-top: none !important;
}

.commodity-row td:first-child,
.commodity-row-gold td:first-child,
.commodity-row-silver td:first-child {
  border-radius: 6px 0 0 6px;
}

.commodity-row td:last-child,
.commodity-row-gold td:last-child,
.commodity-row-silver td:last-child {
  border-radius: 0 6px 6px 0;
}

/* Silver: dark text on light grey background */
.commodity-row-silver .commodity-name,
.commodity-row-silver .sell-val,
.commodity-row-silver .ratevalue_2 {
  color: #1a1a1a !important;
}

.commodity-name {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  text-align: center;
  width: 34%;
  vertical-align: middle !important;
}

.commodity-val {
  color: #4a3a1a;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  width: 33%;
}

.sell-val {
  font-weight: 700;
  font-size: 22px;
  color: #fff;
  text-align: center;
}

/* === BOOKING CARD === */
.booking-card {
  background: var(--bg-card);
  border: 1px solid rgba(187, 142, 55, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
}

.booking-header {
  background: #130E0A;
  padding: 12px 20px;
  text-align: center;
  border-bottom: 1px solid rgba(187, 142, 55, 0.5);
}

.booking-header h4 {
  margin: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
}

.booking-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  background: #d4b870;
  border-radius: 0 0 9px 9px;
}

.booking-phone-row {
  display: flex;
  align-items: center;
  gap: 15px;
}

.booking-phone-icon {
  width: 45px;
  height: 45px;
  border: 2px solid #2a2a2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  top: 20px;
}

.booking-phone-icon i {
  font-size: 20px;
  color: #2a2a2a;
}

.booking-number {
  color: #2a2a2a;
  font-size: 18px;
  font-weight: 600;
  margin: 5px 0;
  letter-spacing: 1px;
}

.booking-number-indent {
  margin-left: 60px;
  text-align: center;
}

/* === RATE CARD TABLES === */
.rate-cards-row {
  margin-top: 10px;
}

.future-cards-row {
  margin-top: 5px;
  margin-bottom: 20px;
}

.rate-card-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid rgba(187, 142, 55, 0.5);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.rate-card-th {
  background: #130E0A;
  color: var(--gold);
  font-weight: 700;
  font-size: 15px;
  padding: 10px 12px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none !important;
}

.rate-card-table tbody {
  background: linear-gradient(180deg, #CAA44D 0%, #E4CB73 49.04%, #CEAA51 100%);
}

/* === SILVER RATE CARD === */
.rate-card-table.rate-card-silver {
  border: 1px solid #ddc067;
}

.rate-card-table.rate-card-silver .rate-card-th {
  background: #130E0A;
  color: #ddc067;
}

.rate-card-table.rate-card-silver tbody {
  background: linear-gradient(180deg, #C9C9C9 6.25%, #D0D0D0 52.4%, #CBCBCB 100%);
}

.rate-card-table.rate-card-silver .rate-label-row td,
.rate-card-table.rate-card-silver .rate-value-row td,
.rate-card-table.rate-card-silver .rate-value-row td div,
.rate-card-table.rate-card-silver .rate-hl-row td,
.rate-card-table.rate-card-silver .sell-val {
  color: #1a1a1a !important;
}

.rate-label-row td {
  background: transparent;
  color: #3a3018;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  padding: 6px 10px;
  border: none !important;
}

.rate-value-row td {
  background: transparent;
  color: #1a1a1a;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  padding: 4px 10px;
  border: none !important;
  font-variant-numeric: tabular-nums;
}

#liveratetable td,
#liveratetable2 td,
#liveratetable_coin td,
.ratevalue2,
.ratevalue3,
.com_name {
  font-variant-numeric: tabular-nums;
}

.rate-value-row td div {
  color: #1a1a1a;
}

.rate-hl-row td {
  background: transparent;
  color: #7a1a1a;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 6px 10px;
  border: none !important;
}

/* === BANNER IMAGE === */
.banner-image {
  margin: 20px 0;
  border-radius: 10px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  display: block;
}

/* === DISCLAIMER === */
.disclaimer {
  margin: 25px 0;
  padding: 20px 0;
  border-top: 1px solid #222;
}

.disclaimer strong {
  color: var(--gold);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-style: italic;
}

.disclaimer p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-top: 10px;
  font-size: 13px;
}

/* === FOOTER === */
.footer {
  background: var(--bg-dark);
  color: var(--text-muted);
  border-top: 1px solid #222;
  padding: 10px 0;
}

.copyright {
  margin-top: 10px;
  color: #fff;
}

.terms {
  margin-top: 10px;
  text-align: center;
  color: #fff;
}

.terms a {
  color: #fff;
}

.terms a:hover {
  color: #fff;
}

.powerdby {
  margin-top: 10px;
  text-align: right;
  color: #fff;
}

/* === ANIMATIONS === */
.animate {
  opacity: 0;
  visibility: hidden;
  animation-fill-mode: forwards;
}

.animate.is-visible {
  visibility: visible;
}

.animate.fade-up.is-visible {
  animation-name: fadeInUp;
  animation-duration: .8s;
  animation-timing-function: ease-out;
}

.delay-1.is-visible {
  animation-delay: .1s;
}

.delay-2.is-visible {
  animation-delay: .2s;
}

.delay-3.is-visible {
  animation-delay: .3s;
}

.delay-4.is-visible {
  animation-delay: .4s;
}

.delay-5.is-visible {
  animation-delay: .5s;
}

.delay-6.is-visible {
  animation-delay: .6s;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

@keyframes phonePulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0.4);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 10px 10px rgba(201, 162, 39, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(201, 162, 39, 0);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

textarea,
textarea:hover,
textarea:active {
  border-radius: 0 5px 5px 0;
  border: 1px solid #eee;
  margin: 0;
  width: 80%;
  height: 130px;
  float: left;
  padding: 8px 15px;
  margin-bottom: 13px
}

.form-groupinput {
  border: 1px solid #ddd;
  color: #000
}

.contentform input:hover,
.contentform input:active {
  border-radius: 0 5px 5px 0;
  border: 1px solid #eee
}

.captcha {
  width: 57% !important;
}

.icon-case {
  width: 10%;
  float: left;
  border-radius: 5px 0 0 5px;
  background: #fec552;
  position: relative;
  text-align: center;
  line-height: 40px;
  color: #fff
}

.form-group {
  overflow: hidden;
  clear: both
}

.bouton-contact {
  background-color: #fec552;
  color: #fff;
  text-align: center;
  width: 25%;
  border: 0;
  padding: 7px;
  cursor: pointer;
  font-size: 18px
}

form {
  border-radius: 5px;
  max-width: 700px;
  width: 100%;
  margin: 5% auto;
  overflow: hidden
}

.contact_us {
  margin-top: 0;
  margin-bottom: 10px
}

.getintouchTitle {
  font-size: 20px;
  text-align: center;
  background: #fec552;
  color: #000;
  border-top-right-radius: 8px;
  border-top-left-radius: 8px;
  height: 29px
}

.contact1,
.email,
.location {
  border: #fff 1px solid;
  padding-top: 5px;
  padding-right: 10px;
  padding-left: 20px;
  margin-bottom: 3px;
  color: #fff;
  font-size: 16px;
  line-height: 1.8
}

.dropdown {
  position: relative;
  display: inline-block
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0 8px 16px 0 #0003;
  padding: 12px 16px;
  z-index: 1
}

.dropdown:hover .dropdown-content {
  display: block
}

.right_side {
  margin-top: 5px
}

.contentform input {
  width: 80%;
  height: 41px;
  padding: 0 15px;
}

#captchaimg {
  margin-left: 10px;
}

/* ─── Welcome Bar — gold gradient with marquee + Online Trading button ─── */
.welcome-bar {
  background: linear-gradient(135deg, #8B6914 0%, #C5963A 25%, #DAA520 50%, #C5963A 75%, #8B6914 100%);
  padding: 0;
  border: none;
  box-shadow: none;
}

.welcome-bar-inner {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.welcome-marquee {
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  min-width: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

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

.marquee-scroll-inner {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%;
  animation: marquee-scroll 18s linear infinite;
  color: #2a2a2a;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
}

.welcome-marquee:hover .marquee-scroll-inner {
  animation-play-state: paused;
}

.online-trading-btn {
  display: inline-block;
  background: var(--btn-gradient);
  color: var(--text-white);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 47px;
  text-decoration: none;
  letter-spacing: 0.5px;
  border: none;
  outline: none;
  box-shadow: none;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
  margin-left: 15px;
  border-radius: 40px;
}

.online-trading-btn:hover {
  background: var(--btn-gradient-hover);
  color: var(--text-white);
  text-decoration: none;
  border: none;
  outline: none;
}

.online-trading-btn:focus,
.online-trading-btn:active,
.online-trading-btn:visited {
  border: none;
  outline: none;
  box-shadow: none;
  text-decoration: none;
  color: var(--text-white);
}

@media (max-width: 480px) {
  .welcome-bar-inner {
    padding: 6px 10px;
  }

  .marquee-scroll-inner {
    font-size: 11px;
  }

  .online-trading-btn {
    font-size: 11px;
    padding: 5px 12px;
  }
}

/* ─── Contact Us Page — MP Bullion themed ─── */

/* Section wrapper */
.contact-section {
  padding: 40px 0 50px;
}

/* Main card container */
.contact-card {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 162, 39, 0.25);
  min-height: 500px;
}

/* ─── Left Panel: Contact Info ─── */
.contact-info-panel {
  width: 38%;
  min-width: 38%;
  flex-shrink: 0;
  background: linear-gradient(135deg, #5E182E 1%, #B7750B 48%, #5E182E 91%);
  padding: 40px 30px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.contact-info-panel::after {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
}

.contact-info-title {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 5px 0;
  color: #fff;
}

.contact-info-subtitle {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 30px 0;
}

.contact-info-block {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
}

.contact-icon-circle {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 14px;
  color: #DAA520;
  font-size: 16px;
}

.contact-info-content h4 {
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 3px 0;
  color: #DAA520;
}

.contact-info-content p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.contact-info-content p a {
  color: rgba(255, 255, 255, 0.85) !important;
  text-decoration: none;
}

.contact-info-content p a:hover {
  color: #fff !important;
  text-decoration: underline;
}

/* ─── Right Panel: Form ─── */
.contact-form-panel {
  flex: 1;
  background: #111;
  padding: 40px 35px;
}

.contact-form-title {
  font-size: 22px;
  font-weight: 700;
  color: #DAA520;
  margin: 0 0 25px 0;
}

/* CRITICAL: Override global form styles from main.css */
form.contact-form-modern {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  overflow: visible !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

.contact-error-msg {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 15px;
}

/* Form field with icon */
form.contact-form-modern .contact-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(197, 150, 58, 0.2) !important;
  border-radius: 8px !important;
  overflow: hidden;
  clear: none !important;
  float: none !important;
}

form.contact-form-modern .contact-field:focus-within {
  border-color: #C5963A !important;
}

form.contact-form-modern .contact-field-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  color: #C5963A !important;
  font-size: 15px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  line-height: normal !important;
  float: none !important;
  border-radius: 0 !important;
  text-align: center !important;
  position: static !important;
}

form.contact-form-modern .contact-field-icon.textarea-icon {
  align-self: flex-start;
  margin-top: 10px;
}

form.contact-form-modern .contact-input,
form.contact-form-modern input.contact-input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: 12px 12px 12px 0 !important;
  font-family: inherit !important;
  height: auto !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

form.contact-form-modern .contact-input::placeholder,
form.contact-form-modern input.contact-input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

form.contact-form-modern .contact-textarea,
form.contact-form-modern textarea.contact-textarea {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: #fff !important;
  font-size: 14px !important;
  padding: 12px 12px 12px 0 !important;
  font-family: inherit !important;
  min-height: 100px !important;
  resize: vertical;
  width: auto !important;
  height: auto !important;
  float: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

form.contact-form-modern .contact-textarea::placeholder,
form.contact-form-modern textarea.contact-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Captcha row */
form.contact-form-modern .contact-captcha-row {
  display: flex !important;
  align-items: center !important;
  gap: 12px;
  margin-bottom: 20px;
}

form.contact-form-modern .contact-captcha-row .captcha-field {
  flex: 1;
  margin-bottom: 0 !important;
}

form.contact-form-modern .captcha-img {
  height: 44px;
  border-radius: 6px;
  border: 1px solid rgba(197, 150, 58, 0.2);
}

form.contact-form-modern .captcha-refresh {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 150, 58, 0.2);
  color: #C5963A;
  font-size: 18px;
  transition: all 0.3s ease;
  text-decoration: none;
}

form.contact-form-modern .captcha-refresh:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #DAA520;
}

/* Buttons */
form.contact-form-modern .contact-buttons {
  display: flex !important;
  gap: 12px;
}

form.contact-form-modern .contact-btn-send {
  flex: 1;
  background: linear-gradient(135deg, #5E182E 1%, #B7750B 48%, #5E182E 91%) !important;
  color: #fff !important;
  border: none !important;
  outline: none !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.3px;
  width: auto !important;
  text-align: center;
}

form.contact-form-modern .contact-btn-send:hover {
  background: linear-gradient(135deg, #7A2A3E 1%, #D08E1A 48%, #7A2A3E 91%) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

form.contact-form-modern .contact-btn-reset {
  background: rgba(255, 255, 255, 0.06) !important;
  color: #C5963A !important;
  border: 1px solid rgba(197, 150, 58, 0.2) !important;
  outline: none !important;
  padding: 13px 25px !important;
  border-radius: 8px !important;
  font-size: 14px !important;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  width: auto !important;
}

form.contact-form-modern .contact-btn-reset:hover {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #DAA520 !important;
}

/* ═══ AUTH PAGES (Login / Register / Forgot / OTP) ═══ */
.auth-section {
  padding: 40px 0 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 60vh;
}

.auth-card {
  width: 100%;
  max-width: 440px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-gold);
  margin: 0 auto;
}

.auth-card.auth-card--wide {
  max-width: 680px;
}

/* Card Header */
.auth-header {
  background: var(--btn-gradient);
  padding: 30px 20px;
  text-align: center;
  position: relative;
}

.auth-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--gold-accent);
  font-size: 24px;
  border: 2px solid rgba(218, 165, 32, 0.3);
}

.auth-title {
  color: var(--text-white);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 4px;
}

.auth-subtitle {
  color: rgba(255, 255, 255, 0.65);
  font-size: 13px;
  margin: 0;
}

/* Card Body */
.auth-body {
  background: #1a1410;
  padding: 30px 25px;
}

/* Alert overrides inside auth */
.auth-body .alert {
  border-radius: 6px;
  font-size: 13px;
  margin-bottom: 15px;
}

.auth-body .alert-success {
  background: rgba(40, 167, 69, 0.12);
  border-color: rgba(40, 167, 69, 0.3);
  color: #51cf66;
}

.auth-body .alert-danger {
  background: rgba(220, 53, 69, 0.12);
  border-color: rgba(220, 53, 69, 0.3);
  color: #ff6b6b;
}

/* Form override */
.auth-body form,
.auth-body form.login,
.auth-body form.form-group {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  overflow: visible !important;
  border-radius: 0 !important;
  border: none !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Auth input groups */
.auth-field {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-gold-dim) !important;
  border-radius: 8px !important;
  overflow: hidden;
  clear: none !important;
  float: none !important;
  width: 100% !important;
}

.auth-field:focus-within {
  border-color: var(--gold-secondary) !important;
}

.auth-field-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  color: var(--gold-secondary) !important;
  font-size: 15px !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  float: none !important;
  border-radius: 0 !important;
  position: static !important;
  line-height: normal !important;
}

.auth-body .auth-field .form-control,
.auth-body .auth-field input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: var(--text-white) !important;
  font-size: 14px !important;
  padding: 12px 12px 12px 0 !important;
  height: auto !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  font-family: inherit !important;
}

.auth-body .auth-field .form-control::placeholder,
.auth-body .auth-field input::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Password toggle */
.auth-body .password-container {
  flex: 1 !important;
  display: flex !important;
  align-items: center !important;
  position: relative;
  max-width: none !important;
  margin: 0 !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-gold-dim) !important;
  border-radius: 8px !important;
  overflow: hidden;
}

.auth-body .password-container:focus-within {
  border-color: var(--gold-secondary) !important;
}

/* When inside auth-field, remove password-container's own border (auth-field provides it) */
.auth-field .password-container {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  max-width: 100% !important;
  flex: 1 !important;
}

.auth-field .password-container:focus-within {
  border-color: transparent !important;
}

.auth-body .password-container .form-control,
.auth-body .password-container input {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  color: var(--text-white) !important;
  font-size: 14px !important;
  height: auto !important;
  width: auto !important;
  float: none !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.auth-body .toggle-password {
  color: var(--gold-secondary) !important;
  right: 12px !important;
  top: 50% !important;
  transform: translateY(-12%) !important;
  position: relative;
}

/* Auth button */
.auth-btn {
  width: 100% !important;
  background: var(--btn-gradient) !important;
  color: var(--text-white) !important;
  border: none !important;
  outline: none !important;
  padding: 13px 20px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 5px;
}

.auth-btn:hover {
  background: var(--btn-gradient-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  color: var(--text-white) !important;
}

.auth-btn:focus,
.auth-btn:active,
.auth-btn:visited {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Auth footer */
.auth-footer {
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 25px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.auth-footer a {
  color: var(--gold-accent) !important;
  text-decoration: none;
  font-weight: 600;
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

.auth-footer a:hover {
  color: var(--gold-hover) !important;
  text-decoration: underline;
}

.auth-footer a:focus,
.auth-footer a:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* ── Register: label + field layout ── */
.auth-body .form-group {
  overflow: visible !important;
  clear: none !important;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.auth-body label {
  color: var(--text-white) !important;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  min-height: 20px;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  padding-left: 4px;
}

.auth-body .form-control {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--border-gold-dim) !important;
  border-radius: 8px !important;
  color: var(--text-white) !important;
  padding: 10px 12px !important;
  height: auto !important;
  font-size: 14px !important;
  box-shadow: none !important;
}

.auth-body .form-control:focus {
  border-color: var(--gold-secondary) !important;
  box-shadow: none !important;
  outline: none !important;
}

.auth-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Fix browser autofill dark theme */
.auth-body input:-webkit-autofill,
.auth-body input:-webkit-autofill:hover,
.auth-body input:-webkit-autofill:focus {
  -webkit-text-fill-color: #fff !important;
  -webkit-box-shadow: 0 0 0 1000px rgba(30, 30, 30, 1) inset !important;
  box-shadow: 0 0 0 1000px rgba(30, 30, 30, 1) inset !important;
  border: 1px solid var(--border-gold-dim) !important;
  transition: background-color 5000s ease-in-out 0s;
}

.auth-body .form-control::placeholder {
  color: rgba(255, 255, 255, 0.35) !important;
}

/* Terms checkbox */
.auth-body .termsText {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 13px;
}

.auth-body .termsText a {
  color: var(--gold-accent) !important;
}

/* OTP section */
.auth-body .resendotp,
.auth-body .goback {
  color: var(--gold-accent) !important;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
}

.auth-body .resendotp:hover,
.auth-body .goback:hover {
  color: var(--gold-hover) !important;
  text-decoration: underline;
}

/* Register button (btn-warning override) */
.auth-body .btn-warning {
  background: var(--btn-gradient) !important;
  color: var(--text-white) !important;
  border: none !important;
  padding: 10px 30px !important;
  border-radius: 8px !important;
  font-weight: 600;
  transition: all 0.3s ease;
}

.auth-body .btn-warning:hover {
  background: var(--btn-gradient-hover) !important;
}

.auth-body .btn-warning:focus,
.auth-body .btn-warning:active,
.auth-body .btn-warning:visited {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* Kill borders on ALL auth buttons */
.auth-body .btn:focus,
.auth-body .btn:active,
.auth-body button:focus,
.auth-body button:active {
  outline: none !important;
  border: none !important;
  box-shadow: none !important;
}

/* GifLoader */
.auth-body .GifLoader {
  text-align: center;
}

/* Hint text */
.auth-body .hint {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px;
}

.auth-body .errors .alert {
  background: rgba(220, 53, 69, 0.12) !important;
  border-color: rgba(220, 53, 69, 0.3) !important;
  color: #ff6b6b !important;
}

/* Global: kill ALL focus/active outlines inside auth pages */
.auth-card a:focus,
.auth-card a:active,
.auth-card button:focus,
.auth-card button:active,
.auth-card .btn:focus,
.auth-card .btn:active,
.auth-card input:focus,
.auth-card .form-control:focus {
  outline: none !important;
  box-shadow: none !important;
}

#signup-form a,
.auth-body a {
  color: #fff;
  opacity: 2;

}

.headerslider1 .adv1 {
  padding-top: 20px;
}

.aboutus {
  line-height: 2;
  text-align: justify;
}

.aboutus_img img {
  margin-top: 26px;
  border-radius: 10px;
}