/* ==========================================================================
   AVADH BULLION — style.css
   Table of contents:
   1. Variables & Reset
   2. Base / Typography
   3. Layout helpers
   4. Header
   5. Ticker
   6. Welcome
   7. Gold Bar Cards
   8. Rates Table
   9. Contact Cards
   10. Footer Nav
   11. Back to top
   12. Loader
   13. Animations / Reveal
   14. Responsive
   ========================================================================== */

/* ---------- 1. Variables & Reset ---------- */
:root{
  --color-gold: #b8860b;
  --color-gold-light: #d9b35b;
  --color-brown: #2f1b0c;
  --color-white: #ffffff;
  --color-gray-light: #f6f6f6;
  --color-green: #0a9c32;
  --color-red: #d62828;
  --color-border: #d9b35b;
  --color-text: #3a2c1c;
  --color-text-muted: #7a6a55;

  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Open Sans', sans-serif;

  --max-width: 1400px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(47,27,12,0.08);
  --shadow-md: 0 8px 24px rgba(47,27,12,0.12);
  --shadow-lg: 0 16px 40px rgba(47,27,12,0.16);

  --header-height: 118px;
  --ticker-height: 44px;
  --footer-height: 78px;

  --transition-fast: 0.2s ease;
  --transition-med: 0.35s ease;
}

*, *::before, *::after{ box-sizing: border-box; }

html{ scroll-behavior: smooth; }

body{
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-gray-light);
  padding-top: calc(var(--header-height) + var(--ticker-height));
  padding-bottom: var(--footer-height);
  overflow-x: hidden;
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin: 0; padding: 0; }
button{ font-family: inherit; cursor: pointer; }

h1,h2,h3,h4{
  font-family: var(--font-heading);
  color: var(--color-gold);
  font-weight: 700;
  margin: 0;
}

/* ---------- 3. Layout helpers ---------- */
.container{
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- 4. Header ---------- */
.site-header{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-white);
  border-bottom: 3px solid var(--color-gold);
  box-shadow: var(--shadow-sm);
  height: var(--header-height);
  transition: box-shadow var(--transition-med), height var(--transition-med);
}

.site-header.is-scrolled{
  height: var(--header-height);
  box-shadow: var(--shadow-md);
}

.site-header__inner{
  max-width: var(--max-width);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.hamburger{
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition-fast);
}
.hamburger:hover{ background: var(--color-gray-light); }
.hamburger__bar{
  display: block;
  width: 100%;
  height: 3px;
  background: var(--color-brown);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}
.hamburger.is-active .hamburger__bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.hamburger.is-active .hamburger__bar:nth-child(2){ opacity: 0; }
.hamburger.is-active .hamburger__bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

.brand{
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: center;
}

.header-logo{
  display: flex;
  align-items: center;
  flex: 0 1 420px;
  align-self: stretch;
  min-width: 0;
  margin-left: -6px;
  overflow: hidden;
}
.header-logo__image{
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: center;
}

.brand__mark{
  width: 110px;
  height: 110px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--color-white);
}
.brand__mark-inner{
  transform: rotate(-45deg);
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--color-gold);
  font-size: 1.15rem;
  letter-spacing: 1px;
}

.brand__text{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  line-height: 1;
  gap: 4px;
}
.brand__name{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--color-gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
}
.brand__name em{
  font-style: normal;
  color: var(--color-gold);
}
.brand__sub{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-gold);
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1;
}
.brand__sub::before,
.brand__sub::after{
  content: '';
  width: 16px;
  height: 1px;
  background: var(--color-gold);
  flex-shrink: 0;
}
.brand__tagline{
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--color-brown);
  font-weight: 700;
  text-transform: uppercase;
}

.main-nav{
  display: none;
  align-items: center;
  gap: 28px;
}
.main-nav__link{
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition-fast);
}
.main-nav__link::after{
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-gold);
  transition: width var(--transition-fast);
}
.main-nav__link:hover{ color: var(--color-gold); }
.main-nav__link:hover::after{ width: 100%; }
.main-nav__dropdown{ position:relative; }
.main-nav__dropdown-toggle{
  border:0;
  background:transparent;
  cursor:pointer;
  font-family:inherit;
  display:flex;
  align-items:center;
  gap:7px;
}
.main-nav__dropdown-toggle i{font-size:.72em;transition:transform var(--transition-fast);}
.main-nav__dropdown.is-open .main-nav__dropdown-toggle i{transform:rotate(180deg);}
.main-nav__dropdown-menu{
  display:none;
  position:absolute;
  top:calc(100% + 12px);
  left:50%;
  transform:translateX(-50%);
  min-width:190px;
  padding:8px;
  border:1px solid var(--color-border);
  border-radius:10px;
  background:var(--color-white);
  box-shadow:var(--shadow-lg);
  z-index:300;
}
.main-nav__dropdown-menu::before{
  content:"";
  position:absolute;
  top:-13px;
  right:0;
  left:0;
  height:13px;
}
.main-nav__dropdown.is-open .main-nav__dropdown-menu,
.main-nav__dropdown:hover .main-nav__dropdown-menu,
.main-nav__dropdown:focus-within .main-nav__dropdown-menu{display:block;}
.main-nav__dropdown:hover .main-nav__dropdown-toggle i,
.main-nav__dropdown:focus-within .main-nav__dropdown-toggle i{transform:rotate(180deg);}
.main-nav__dropdown-item{
  display:block;
  padding:10px 12px;
  border-radius:7px;
  color:var(--color-text);
  white-space:nowrap;
}
.main-nav__dropdown-item:hover,
.main-nav__dropdown-item:focus{background:var(--color-gray-light);color:var(--color-gold);}

.header-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  margin-right: 34px;
}

.icon-btn{
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold);
  font-size: 1.1rem;
  transition: background var(--transition-fast), transform var(--transition-fast);
}
.icon-btn:hover{ background: var(--color-gray-light); transform: scale(1.05); }
.icon-btn__dot{
  position: absolute;
  top: 8px; right: 9px;
  width: 8px; height: 8px;
  background: var(--color-red);
  border-radius: 50%;
  border: 2px solid var(--color-white);
}

.btn{
  font-weight: 600;
  font-size: 0.9rem;
  padding: 10px 22px;
  border-radius: 999px;
  border: none;
  transition: all var(--transition-fast);
}
.btn--outline{
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}
.btn--outline:hover{
  background: var(--color-gold);
  color: var(--color-white);
}
.btn--login{ display: none; }

/* ---------- 5. Ticker ---------- */
.ticker{
  --ticker-content-edge: max(58px, calc((100vw - 1284px) / 2));
  position: fixed;
  top: var(--header-height);
  left: 50%;
  width: 970px;
  max-width: 96%;
  transform: translateX(-50%);
  z-index: 190;
  height: var(--ticker-height);
  background: var(--color-brown);
  overflow: hidden;
  border-bottom: 1px solid var(--color-gold-light);
  transition: top var(--transition-med);
}
.site-header.is-scrolled ~ .ticker{ top: var(--header-height); }

.ticker__inner{
  display: flex;
  align-items: center;
  height: 100%;
  gap: 48px;
  padding: 0 24px;
  width: max-content;
  min-width: max-content;
  max-width: none;
  margin: 0;
  overflow: visible;
  scrollbar-width: none;
  will-change: transform;
  animation: tickerMarquee 18s linear infinite;
  position: relative;
  z-index: 1;
}
.ticker__inner::-webkit-scrollbar{ display: none; }

@keyframes tickerMarquee{
  from{ transform: translateX(calc(100vw - var(--ticker-content-edge))); }
  to{ transform: translateX(calc(-100% + var(--ticker-content-edge))); }
}

@media (prefers-reduced-motion: reduce){
  .ticker{ --ticker-content-edge: 0px; }
  .ticker__inner{
    width: 100%;
    min-width: 0;
    max-width: var(--max-width);
    margin: 0 auto;
    overflow-x: auto;
    animation: none;
    will-change: auto;
  }
}

.ticker__item{
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto; white-space: nowrap;
  font-size: 0.88rem;
  color: var(--color-white);
}
.ticker__icon{ color: var(--color-gold-light); margin-right: 2px; }
.ticker__name{ font-weight: 700; letter-spacing: 0.5px; color: var(--color-gold-light); white-space: nowrap;}
.ticker__value{ font-weight: 600; transition: color var(--transition-fast); }
.ticker__arrow--up{ color: var(--color-green); }
.ticker__arrow--down{ color: var(--color-red); }
.ticker__diff--up{ color: var(--color-green); }
.ticker__diff--down{ color: var(--color-red); }

.ticker__value.flash-up{ animation: flashGreen 0.9s ease; }
.ticker__value.flash-down{ animation: flashRed 0.9s ease; }

@keyframes flashGreen{
  0%{ color: var(--color-green); text-shadow: 0 0 8px rgba(10,156,50,0.6); }
  100%{ color: #000; text-shadow: none; }
}
@keyframes flashRed{
  0%{ color: var(--color-red); text-shadow: 0 0 8px rgba(214,40,40,0.6); }
  100%{ color: #000; text-shadow: none; }
}

/* ---------- 6. Welcome ---------- */
.welcome{
  text-align: center;
  padding: 48px 24px 32px;
}
.welcome__title{
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--color-gold);
}
.welcome__divider{
  flex: 0 0 auto;
  width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold-light), transparent);
  position: relative;
  display: inline-block;
}
.welcome__divider i{
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  font-size: 0.6rem;
  color: var(--color-gold);
  background: var(--color-gray-light);
  padding: 0 6px;
}

/* ---------- 7. Gold Bar Cards ---------- */
.gold-bar{ padding: 8px 0 32px; }
.gold-bar__label{
  font-size: 0.95rem;
  letter-spacing: 1px;
  margin-bottom: 14px;
}
.gold-bar__grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.price-card{
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.price-card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-gold);
}
.price-card__title{
  font-size: 1.02rem;
  color: var(--color-brown);
  margin-bottom: 4px;
}
.price-card__subtitle{
  margin: 0;
  color: var(--color-text-muted);
  font-size: 0.88rem;
}
.price-card__value{
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--color-gold);
  transition: color 0.4s ease;
}

/* ---------- 8. Rates Table ---------- */
.rates{ padding: 12px 0 40px; }
.rates__table-wrap{
  overflow-x: auto;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.rates__table{
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  min-width: 620px;
}
.rates__table thead tr{
  background: var(--color-brown);
}
.rates__table thead th{
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-align: left;
  padding: 16px 20px;
}
.rates__table tbody tr{
  border-bottom: 1px solid #eee;
  transition: background var(--transition-fast);
}
.rates__table tbody tr:nth-child(even){ background: var(--color-gray-light); }
.rates__table tbody tr:hover{ background: #f1e6cf; }
.rates__table tbody tr.row-flash{ animation: rowHighlight 1s ease; }
@keyframes rowHighlight{
  0%{ background: #fff3d6; }
  100%{ background: transparent; }
}

.rates__table td{
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.94rem;
}
.rates__product{ color: var(--color-brown); font-family: var(--font-heading); }
.rates__bid, .rates__ask{ color: var(--color-green); }
.rates__bid--down, .rates__ask--down{ color: var(--color-red); }
.rates__bid--neutral, .rates__ask--neutral{ color: #1d6fb8; }
.rates__high, .rates__low{ color: var(--color-gold); }

.rates__table td.value-up{ animation: flashGreenCell 0.9s ease; }
.rates__table td.value-down{ animation: flashRedCell 0.9s ease; }
@keyframes flashGreenCell{ 0%, 100%{ background: transparent; } }
@keyframes flashRedCell{ 0%{ background: rgba(214,40,40,0.18); } 100%{ background: transparent; } }

/* ---------- 9. Contact Cards ---------- */
.contact{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding-bottom: 48px;
}
.contact-card{
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}
.contact-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card__icon{
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  color: var(--color-white);
  flex-shrink: 0;
}
.contact-card--call .contact-card__icon{ background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold)); }
.contact-card--whatsapp .contact-card__icon{ background: #25D366; }
.contact-card--whatsapp:hover{ background: #eafff1; border-color: #25D366; }

.contact-card__text{ display: flex; flex-direction: column; }
.contact-card__title{
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-brown);
  letter-spacing: 0.5px;
}
.contact-card__subtitle{ font-size: 0.85rem; color: var(--color-text-muted); }

/* ---------- 10. Footer Nav ---------- */
.footer-nav{
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--color-white);
  border-top: 2px solid var(--color-gold-light);
  box-shadow: 0 -4px 16px rgba(47,27,12,0.1);
  height: var(--footer-height);
}
.footer-nav__inner{
  max-width: var(--max-width);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 0 12px;
}
.footer-nav__item{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-text-muted);
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  transition: color var(--transition-fast), transform var(--transition-fast), background var(--transition-fast);
  flex: 1;
  text-align: center;
}
.footer-nav__item i{ font-size: 1.15rem; }
.footer-nav__item:hover{ color: var(--color-gold); transform: translateY(-3px); }
.footer-nav__item.is-active{ color: var(--color-gold); background: #fdf3df; }

/* ---------- 11. Back to top ---------- */
.back-to-top{
  position: fixed;
  right: 24px;
  bottom: calc(var(--footer-height) + 20px);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-white);
  border: none;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity var(--transition-med), transform var(--transition-med), background var(--transition-fast);
  z-index: 199;
}
.back-to-top.is-visible{ opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover{ background: var(--color-brown); }

/* ---------- 12. Loader ---------- */
.loader{
  position: fixed;
  inset: 0;
  background: var(--color-white);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.loader.is-hidden{ opacity: 0; visibility: hidden; }
.loader__ring{
  width: 54px; height: 54px;
  border: 4px solid var(--color-gray-light);
  border-top-color: var(--color-gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }

/* ---------- 13. Reveal animation ---------- */
.reveal{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible{
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 14. Responsive ---------- */

/* Tablet and up: show nav + login, two-column gold bar */
@media (min-width: 768px){
  .main-nav{ display: flex; }
  .btn--login{ display: inline-block; }

  .gold-bar__grid{ grid-template-columns: 1fr 1fr; }

  .welcome__title{ font-size: 2.2rem; }
  .welcome__divider{ width: 130px; }
}

/* Desktop 1024px+ : hide hamburger + bottom nav becomes horizontal footer */
@media (min-width: 1024px){
  :root{
    --header-height: 138px;
  }
  .brand__mark{ width: 128px; height: 128px; }
  .hamburger{ display: none; }
  .site-header__inner{gap:10px;padding-right:16px;padding-left:16px;}
  .header-logo{flex:0 1 300px;}
  .main-nav{gap:clamp(10px,1vw,18px);}
  .main-nav__link{font-size:clamp(.82rem,1vw,.98rem);}
  .header-actions{margin-right:0;}

  body{ padding-bottom: 64px; }

  .footer-nav{
    position: static;
    border-top: 2px solid var(--color-gold-light);
    box-shadow: none;
    background: var(--color-white);
    height: auto;
    margin-top: 40px;
  }
  .footer-nav__inner{
    justify-content: center;
    gap: 56px;
    padding: 26px 24px;
  }
  .footer-nav__item{
    flex: 0 0 auto;
    color: var(--color-text-muted);
  }
  .footer-nav__item.is-active{ background: transparent; color: var(--color-gold); }
  .footer-nav__item:hover{ color: var(--color-gold); }

  .back-to-top{ bottom: 28px; }

  .container{ padding: 0 40px; }

  .price-card__value{ font-size: 2.3rem; }
}

@media (min-width: 1200px){
  .ticker__inner{ gap: 64px; }
  .contact{ grid-template-columns: 1fr 1fr; }
}

/* Laptop */
@media (max-width: 1023px){
  .ticker{ --ticker-content-edge: 24px; }
  .header-logo{ margin-left: 0; }
  .header-actions{ margin-right: 0; }
  .footer-nav__item span{ font-size: 0.68rem; }
}

/* Mobile menu (hamburger opens nav as a panel) */
@media (min-width: 768px) and (max-width: 1023px){
  .main-nav{
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 78%;
    max-width: 340px;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px;
    gap: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-med);
    z-index: 250;
  }
  .main-nav.is-open{
    display: flex;
    transform: translateX(0);
  }
}

@media (max-width: 767px){
  .header-logo{
    flex: 1 1 auto;
    margin-right: 0;
  }
  .main-nav{
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 78%;
    max-width: 320px;
    height: calc(100vh - var(--header-height));
    background: var(--color-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 28px;
    gap: 22px;
    box-shadow: var(--shadow-lg);
    transform: translateX(-100%);
    transition: transform var(--transition-med);
    z-index: 250;
  }
  .main-nav.is-open{
    display: flex;
    transform: translateX(0);
  }
  .main-nav__dropdown{width:100%;}
  .main-nav__dropdown-menu{
    position:static;
    transform:none;
    min-width:0;
    width:100%;
    margin-top:8px;
    box-shadow:none;
  }
  .main-nav__dropdown-menu::before{display:none;}
  .brand__name{ font-size: 1.15rem; letter-spacing: 1.5px; }
  .brand__sub{ font-size: 0.65rem; letter-spacing: 3px; gap: 5px; }
  .brand__sub::before, .brand__sub::after{ width: 10px; }
  .brand__tagline{ font-size: 0.55rem; letter-spacing: 2px; }
  .brand__mark{ width: 96px; height: 96px; }

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

  .welcome__title{ font-size: 1.4rem; gap: 10px; }
  .welcome__divider{ width: 50px; }
}

@media (max-width: 576px){
  .header-actions{ gap: 8px; }
  .price-card{ padding: 16px 18px; }
  .price-card__value{ font-size: 1.5rem; }
  .rates__table td, .rates__table th{ padding: 12px 14px; font-size: 0.85rem; }
}

@media (max-width: 480px){
  .brand__tagline{ display: none; }
  .footer-nav__item span{ font-size: 0.62rem; }
  .contact-card{ padding: 16px 18px; }
}

/* ==========================================================================
   15. INNER-PAGE COMPONENTS
   (About / Bank Details / Contact / Disclaimer / Privacy / Download / etc.)
   ========================================================================== */

/* ---------- Page hero (banner for inner pages) ---------- */
.page-hero{
  text-align: center;
  padding: 40px 24px 28px;
}
.page-hero__eyebrow{
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.page-hero__title{
  font-size: 1.7rem;
  color: var(--color-gold);
}
.page-hero__subtitle{
  margin: 10px auto 0;
  max-width: 640px;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
@media (min-width: 768px){
  .page-hero__title{ font-size: 2.1rem; }
}

/* ---------- Section heading (reuses gold-bar label style) ---------- */
.section-label{
  font-family: var(--font-heading);
  font-size: 0.95rem;
  letter-spacing: 1px;
  color: var(--color-gold);
  font-weight: 700;
  margin-bottom: 14px;
}

/* ---------- Prose (legal / long-form text pages) ---------- */
.prose{
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  margin-bottom: 40px;
}
.prose h2{
  font-size: 1.1rem;
  color: var(--color-brown);
  margin: 24px 0 10px;
}
.prose h2:first-child{ margin-top: 0; }
.prose p{
  margin: 0 0 14px;
  line-height: 1.7;
  color: var(--color-text);
  font-size: 0.95rem;
}
.prose ol, .prose ul{
  margin: 0 0 14px;
  padding-left: 22px;
  list-style: decimal;
}
.prose ul{ list-style: disc; }
.prose li{
  margin-bottom: 8px;
  line-height: 1.6;
  font-size: 0.95rem;
  color: var(--color-text);
}
.prose strong{ color: var(--color-brown); }
.prose__meta{
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-bottom: 18px;
}

/* ---------- Detail grid (About / Contact info cards) ---------- */
.detail-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 768px){
  .detail-grid{ grid-template-columns: 1fr 1fr; }
}
.detail-grid--three{ grid-template-columns: 1fr; }
@media (min-width: 768px){
  .detail-grid--three{ grid-template-columns: repeat(3, 1fr); }
}

.detail-card{
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 24px;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.detail-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-md); }
.detail-card__icon{
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-white);
  font-size: 1.2rem;
  margin-bottom: 14px;
}
.detail-card__title{
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}
.detail-card__text{
  color: var(--color-text);
  font-size: 0.92rem;
  line-height: 1.7;
}
.detail-card__text a{
  color: var(--color-gold);
  font-weight: 600;
}
.detail-card__text a:hover{ text-decoration: underline; }

/* ---------- CTA banner (Bank Details / Download "coming soon") ---------- */
.cta-banner{
  text-align: center;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 40px 24px;
  margin-bottom: 40px;
}
.cta-banner__icon{
  width: 64px; height: 64px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: var(--color-white);
  font-size: 1.6rem;
}
.cta-banner__title{
  font-size: 1.2rem;
  color: var(--color-brown);
  margin-bottom: 10px;
}
.cta-banner__text{
  max-width: 480px;
  margin: 0 auto 22px;
  color: var(--color-text-muted);
  font-size: 0.94rem;
  line-height: 1.7;
}
.cta-banner__actions{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn--solid{
  background: var(--color-gold);
  color: var(--color-white);
}
.btn--solid:hover{ background: var(--color-brown); }

.badge--soon{
  display: inline-block;
  background: #fdf3df;
  color: var(--color-gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}

/* ---------- Form (Contact Us) ---------- */
.form{
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 28px 24px;
  margin-bottom: 24px;
}
.form__row{ margin-bottom: 18px; }
.form__label{
  display: block;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-brown);
  margin-bottom: 6px;
}
.form__input, .form__textarea{
  width: 100%;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--color-text);
  background: var(--color-gray-light);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}
.form__input:focus, .form__textarea:focus{
  outline: none;
  border-color: var(--color-gold);
  background: var(--color-white);
}
.form__textarea{ resize: vertical; min-height: 120px; }
.form__submit{
  width: 100%;
}
@media (min-width: 768px){
  .form__submit{ width: auto; }
}

/* ---------- Products grid ---------- */
.products-grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 40px;
}
@media (min-width: 600px){
  .products-grid{ grid-template-columns: 1fr 1fr; }
}
.product-card{
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 26px 24px;
  text-align: center;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}
.product-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--color-gold); }
.product-card__icon{
  width: 56px; height: 56px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-gray-light);
  color: var(--color-gold);
  font-size: 1.5rem;
}
.product-card__title{
  font-size: 1rem;
  color: var(--color-brown);
  margin-bottom: 8px;
}
.product-card__text{
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ---------- Secondary footer link row ---------- */
.footer-legal{
  background: var(--color-brown);
  padding: 18px 24px 96px;
  text-align: center;
}
.footer-legal__links{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
  margin-bottom: 10px;
}
.footer-legal__links a{
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  font-weight: 600;
}
.footer-legal__links a:hover{ color: var(--color-gold-light); }
.footer-legal__copy{
  font-size: 0.75rem;
  color: rgba(255,255,255,0.55);
}
@media (min-width: 1024px){
  .footer-legal{ padding-bottom: 24px; }
}


/* Sticky footer alignment */
body{
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main{
  flex: 1 0 auto;
}
@media (min-width: 1024px){
  body{
    padding-bottom: 0;
  }
  .footer-nav{
    margin-top: 0;
  }
}


/* Shared moving marquee for all website and www pages */
.global-marquee-wrap{width:100%;overflow:hidden;background:#6b4d17;color:#fff;border-bottom:1px solid #d6b85f;min-height:36px;position:relative;z-index:1000;}
.global-marquee{display:block;width:max-content;min-width:max-content;white-space:nowrap;padding:0;line-height:36px;font-family:Poppins,sans-serif;font-size:13px;font-weight:600;letter-spacing:.25px;animation:avadhGlobalMarquee 18s linear infinite;will-change:transform;}
.global-marquee:hover{animation-play-state:paused;}
@keyframes avadhGlobalMarquee{from{transform:translateX(100vw)}to{transform:translateX(-100%)}}
@media(prefers-reduced-motion:reduce){.global-marquee{animation-duration:30s;}}
