/* OMA GOLD TRADING LLC — Master Stylesheet */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --gold: #C5A04E; --gold-light: #D4B96A; --gold-dark: #A68635;
  --gold-glow: rgba(197, 160, 78, 0.15);
  --black: #0A0A0A; --black-light: #111111; --black-card: #161616;
  --white: #F5F0E8; --white-dim: #B8B0A0;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', sans-serif;
}
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--gold-dark) var(--black); }
body { font-family: var(--font-body); background: var(--black); color: var(--white); overflow-x: hidden; line-height: 1.7; font-weight: 300; }
a { color: inherit; } img { max-width: 100%; display: block; }

/* PRELOADER */
.preloader { position: fixed; inset: 0; z-index: 10000; background: var(--black); display: flex; align-items: center; justify-content: center; transition: opacity 0.8s ease, visibility 0.8s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-lotus { width: 80px; height: 80px; animation: pulse-gold 1.5s ease-in-out infinite; }
@keyframes pulse-gold { 0%, 100% { opacity: 0.3; transform: scale(0.95); } 50% { opacity: 1; transform: scale(1.05); } }

/* CURSOR GLOW */
.cursor-glow { position: fixed; width: 350px; height: 350px; background: radial-gradient(circle, rgba(197,160,78,0.06) 0%, transparent 70%); border-radius: 50%; pointer-events: none; transform: translate(-50%, -50%); z-index: 9998; transition: left 0.3s ease, top 0.3s ease; }

/* NAVIGATION */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 60px; display: flex; align-items: center; justify-content: space-between; transition: all 0.4s ease; background: transparent; }
.nav.scrolled { background: rgba(10,10,10,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 14px 60px; border-bottom: 1px solid rgba(197,160,78,0.1); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { height: 80px; transition: height 0.4s ease; }
.nav.scrolled .nav-logo img { height: 80px; }
.nav-logo-text { font-family: var(--font-display); font-size: 1.4rem; font-weight: 400; color: var(--white); letter-spacing: 4px; text-transform: uppercase; }
.nav-logo-sub { font-family: var(--font-body); font-size: 0.55rem; letter-spacing: 3px; color: var(--gold); text-transform: uppercase; display: block; margin-top: -2px; }
.nav-links { display: flex; gap: 40px; list-style: none; }
.nav-links a { color: var(--white-dim); text-decoration: none; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 400; position: relative; transition: color 0.3s ease; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.hamburger { display: none; cursor: pointer; background: none; border: none; flex-direction: column; gap: 5px; padding: 5px; }
.hamburger span { display: block; width: 24px; height: 1.5px; background: var(--gold); transition: all 0.3s ease; }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 4px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -4px); }
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 999; background: rgba(10,10,10,0.97); backdrop-filter: blur(30px); flex-direction: column; align-items: center; justify-content: center; gap: 30px; }
.mobile-menu.active { display: flex; }
.mobile-menu a { color: var(--white); text-decoration: none; font-family: var(--font-display); font-size: 2rem; letter-spacing: 4px; text-transform: uppercase; transition: color 0.3s ease; }
.mobile-menu a:hover { color: var(--gold); }

/* GOLD DIVIDER */
.gold-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 20px; position: relative; }
.gold-divider::before { content: '◆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 8px; color: var(--gold); background: var(--black); padding: 0 8px; }

/* SECTION HEADERS */
.section-header { text-align: center; padding: 100px 30px 60px; }
.section-tag { font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 300; letter-spacing: 2px;line-height:80px; }
.section-desc { max-width: 600px; margin: 20px auto 0; color: var(--white-dim); font-size: 0.95rem; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 40px; text-decoration: none; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 500; cursor: pointer; border: none; transition: all 0.4s ease; position: relative; overflow: hidden; }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); box-shadow: 0 0 40px rgba(197,160,78,0.3); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border: 1px solid rgba(197,160,78,0.4); }
.btn-outline:hover { background: rgba(197,160,78,0.1); border-color: var(--gold); }

/* PAGE BANNER */
.page-banner { height: 45vh; min-height: 340px; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; background: linear-gradient(135deg, var(--black) 0%, #1a1409 50%, var(--black) 100%); border-bottom: 1px solid rgba(197,160,78,0.15); padding-top: 80px; }
.page-banner::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 500px 500px at 50% 60%, rgba(197,160,78,0.06) 0%, transparent 70%); }
.page-banner-content { position: relative; z-index: 2; }
.page-banner-crumb { font-size: 0.65rem; letter-spacing: 4px; text-transform: uppercase; color: var(--white-dim); margin-bottom: 16px; }
.page-banner-crumb a { color: var(--gold); text-decoration: none; }
.page-banner-title { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 300; letter-spacing: 3px; }

/* HERO */
.page-hero { position: relative; height: 100vh; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background: linear-gradient(135deg, var(--black) 0%, #1a1409 50%, var(--black) 100%); }
.page-hero-bg::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 600px 600px at 30% 40%, rgba(197,160,78,0.08) 0%, transparent 70%), radial-gradient(ellipse 400px 400px at 70% 60%, rgba(197,160,78,0.05) 0%, transparent 70%); }
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle { position: absolute; width: 2px; height: 2px; background: var(--gold); border-radius: 50%; opacity: 0; animation: float-particle 8s infinite; }
@keyframes float-particle { 0% { opacity: 0; transform: translateY(100vh) scale(0); } 20% { opacity: 0.6; } 80% { opacity: 0.3; } 100% { opacity: 0; transform: translateY(-20vh) scale(1); } }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 900px; padding: 0 30px; }
.hero-lotus { width: 140px; height: auto; margin: 0 auto 30px; animation: fadeInUp 1.2s ease 0.3s both; filter: drop-shadow(0 0 40px rgba(197,160,78,0.3)); }
.hero-badge { display: inline-block; font-size: 0.65rem; letter-spacing: 5px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(197,160,78,0.3); padding: 8px 24px; margin-bottom: 30px; animation: fadeInUp 1.2s ease 0.5s both; }
.hero-title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 300; line-height: 1.1; letter-spacing: 3px; animation: fadeInUp 1.2s ease 0.7s both; }
.hero-title .gold { color: var(--gold); }
.hero-subtitle { font-size: 1rem; color: var(--white-dim); margin-top: 24px; font-weight: 300; letter-spacing: 1px; max-width: 600px; margin-inline: auto; animation: fadeInUp 1.2s ease 0.9s both; }
.hero-cta { margin-top: 50px; display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; animation: fadeInUp 1.2s ease 1.1s both; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; animation: fadeInUp 1.2s ease 1.5s both; }
.hero-scroll span { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--white-dim); }
.scroll-line { width: 1px; height: 40px; background: rgba(197,160,78,0.3); position: relative; overflow: hidden; }
.scroll-line::after { content: ''; position: absolute; top: -100%; left: 0; width: 100%; height: 100%; background: var(--gold); animation: scroll-anim 2s ease infinite; }
@keyframes scroll-anim { 0% { top: -100%; } 50% { top: 0; } 100% { top: 100%; } }

/* LIVE RATE RIBBON */
.live-rate { background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark)); color: var(--black); padding: 14px 30px; text-align: center; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.live-rate a { color: var(--black); text-decoration: underline; font-weight: 700; margin-left: 8px; }

/* FEATURES STRIP */
.features-strip { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(197,160,78,0.15); border-bottom: 1px solid rgba(197,160,78,0.15); }
.feature-item { padding: 50px 30px; text-align: center; border-right: 1px solid rgba(197,160,78,0.1); transition: background 0.4s ease; }
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(197,160,78,0.04); }
.feature-icon { font-size: 2rem; margin-bottom: 16px; display: block; }
.feature-label { font-family: var(--font-display); font-size: 1.3rem; font-weight: 400; margin-bottom: 8px; }
.feature-text { font-size: 0.8rem; color: var(--white-dim); line-height: 1.6; }

/* PRODUCT CARDS (home) */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 0 60px 80px; }
.product-card { position: relative; overflow: hidden; background: var(--black-card); padding: 60px 40px; border: 1px solid rgba(197,160,78,0.08); transition: all 0.5s ease; cursor: pointer; }
.product-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.5s ease; }
.product-card:hover::before { transform: scaleX(1); }
.product-card:hover { background: rgba(197,160,78,0.03); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.4); }
.product-icon { font-size: 3rem; margin-bottom: 24px; display: block; filter: grayscale(0.3); transition: filter 0.3s ease; }
.product-card:hover .product-icon { filter: grayscale(0); }
.product-name { font-family: var(--font-display); font-size: 1.6rem; font-weight: 400; margin-bottom: 12px; color: var(--white); }
.product-desc { font-size: 0.85rem; color: var(--white-dim); margin-bottom: 24px; line-height: 1.7; }
.product-link { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
.product-link:hover { gap: 14px; }

/* IMPORT/EXPORT */
.import-export { padding: 100px 60px; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ie-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.ie-circle { width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(197,160,78,0.2); display: flex; align-items: center; justify-content: center; position: relative; animation: rotate-slow 40s linear infinite; }
@keyframes rotate-slow { to { transform: rotate(360deg); } }
.ie-circle::before { content: ''; position: absolute; inset: -30px; border-radius: 50%; border: 1px dashed rgba(197,160,78,0.1); }
.ie-center { animation: rotate-slow 40s linear infinite reverse; text-align: center; }
.ie-center-icon { font-size: 3rem; }
.ie-center-text { font-family: var(--font-display); font-size: 1rem; color: var(--gold); margin-top: 8px; }
.ie-content .section-tag { text-align: left; }
.ie-content .section-title { text-align: left; }
.ie-text { color: var(--white-dim); margin-top: 24px; font-size: 0.95rem; line-height: 1.8; }
.ie-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.stat-number { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; color: var(--gold); }
.stat-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); margin-top: 4px; }

/* CTA BANNER */
.cta-banner { padding: 100px 60px; text-align: center; background: linear-gradient(180deg, transparent 0%, rgba(197,160,78,0.04) 50%, transparent 100%); border-top: 1px solid rgba(197,160,78,0.1); border-bottom: 1px solid rgba(197,160,78,0.1); }
.cta-banner .section-title { margin-bottom: 16px; }
.cta-banner .section-desc { margin-bottom: 40px; }

/* PRODUCTS PAGE */
.products-page-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 80px 60px; }
.pp-card { position: relative; background: var(--black-card); border: 1px solid rgba(197,160,78,0.08); padding: 60px 50px; transition: all 0.5s ease; overflow: hidden; }
.pp-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.5s ease; }
.pp-card:hover::after { transform: scaleX(1); }
.pp-card:hover { border-color: rgba(197,160,78,0.2); transform: translateY(-4px); box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.pp-number { font-family: var(--font-display); font-size: 5rem; font-weight: 300; color: rgba(197,160,78,0.08); position: absolute; top: 20px; right: 30px; line-height: 1; }
.pp-icon { font-size: 3rem; margin-bottom: 20px; }
.pp-title { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 16px; }
.pp-desc { color: var(--white-dim); font-size: 0.9rem; line-height: 1.8; margin-bottom: 20px; }
.pp-list { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.pp-list li { font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); border: 1px solid rgba(197,160,78,0.2); padding: 6px 14px; }

/* ABOUT PAGE */
.about-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; padding: 100px 60px; align-items: center; }
.about-text .section-tag { text-align: left; }
.about-text h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; margin-bottom: 24px; }
.about-text p { color: var(--white-dim); line-height: 1.9; margin-bottom: 16px; font-size: 0.95rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.about-stat-card { background: var(--black-card); border: 1px solid rgba(197,160,78,0.1); padding: 40px 24px; text-align: center; transition: all 0.3s ease; }
.about-stat-card:hover { border-color: rgba(197,160,78,0.3); transform: translateY(-4px); }
.about-stat-card:nth-child(2) { transform: translateY(30px); }
.about-stat-card:nth-child(2):hover { transform: translateY(26px); }
.about-stat-card:nth-child(4) { transform: translateY(30px); }
.about-stat-card:nth-child(4):hover { transform: translateY(26px); }
.asc-number { font-family: var(--font-display); font-size: 2.5rem; color: var(--gold); font-weight: 300; }
.asc-label { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--white-dim); margin-top: 8px; }
.mission-section { padding: 100px 60px; text-align: center; border-top: 1px solid rgba(197,160,78,0.1); border-bottom: 1px solid rgba(197,160,78,0.1); background: linear-gradient(180deg, transparent, rgba(197,160,78,0.02), transparent); }
.mission-quote { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 300; font-style: italic; color: var(--gold); max-width: 700px; margin: 0 auto; line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; padding: 0 60px 100px; }
.value-card { padding: 50px 40px; background: var(--black-card); border: 1px solid rgba(197,160,78,0.06); transition: all 0.4s ease; }
.value-card:hover { background: rgba(197,160,78,0.03); border-color: rgba(197,160,78,0.15); }
.value-icon { font-size: 2rem; margin-bottom: 20px; }
.value-title { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.value-text { font-size: 0.85rem; color: var(--white-dim); line-height: 1.7; }

/* CONTACT PAGE */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
.contact-info { padding: 80px 60px; border-right: 1px solid rgba(197,160,78,0.1); }
.contact-info .section-tag { text-align: left; }
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 300; margin-bottom: 30px; }
.contact-item { display: flex; gap: 20px; margin-bottom: 36px; align-items: flex-start; }
.contact-item-icon { width: 48px; height: 48px; border: 1px solid rgba(197,160,78,0.2); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-label { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.contact-item-value { color: var(--white-dim); font-size: 0.9rem; line-height: 1.7; }
.contact-item-value a { color: var(--white-dim); text-decoration: none; transition: color 0.3s ease; }
.contact-item-value a:hover { color: var(--gold); }
.contact-form-wrap { padding: 80px 60px; background: var(--black-card); }
.contact-form-wrap h3 { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; margin-bottom: 30px; }
.form-group { margin-bottom: 24px; }
.form-label { display: block; font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.form-input, .form-textarea { width: 100%; padding: 14px 0; background: transparent; border: none; border-bottom: 1px solid rgba(197,160,78,0.2); color: var(--white); font-family: var(--font-body); font-size: 0.9rem; font-weight: 300; outline: none; transition: border-color 0.3s ease; }
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 100px; }
.form-input::placeholder, .form-textarea::placeholder { color: rgba(245,240,232,0.2); }
.map-section { height: 400px; position: relative; border-top: 1px solid rgba(197,160,78,0.1); background: var(--black-card); display: flex; align-items: center; justify-content: center; }
.map-placeholder { text-align: center; }
.map-placeholder-icon { font-size: 3rem; margin-bottom: 16px; }
.map-placeholder-text { font-family: var(--font-display); font-size: 1.3rem; color: var(--white-dim); }
.map-placeholder-sub { font-size: 0.8rem; color: var(--gold); margin-top: 8px; }

/* FOOTER */
.footer { padding: 80px 60px 40px; border-top: 1px solid rgba(197,160,78,0.1); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 60px; margin-bottom: 60px; }
.footer-brand img { height: 80px; margin-bottom: 16px; }
.footer-brand p { color: var(--white-dim); font-size: 0.85rem; line-height: 1.7; max-width: 300px; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; margin-bottom: 20px; color: var(--gold); }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--white-dim); text-decoration: none; font-size: 0.85rem; transition: color 0.3s ease; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(197,160,78,0.1); padding-top: 30px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-copy { font-size: 0.75rem; color: var(--white-dim); letter-spacing: 1px; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.7rem; color: var(--white-dim); text-decoration: none; letter-spacing: 1px; transition: color 0.3s ease; }
.footer-legal a:hover { color: var(--gold); }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.anim { opacity: 0; transform: translateY(30px); transition: all 0.8s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

  .gold-divider { width: 60px; height: 1px; background: var(--gold); margin: 0 auto 18px; position: relative; }
  .gold-divider::before { content: '◆'; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); font-size: 8px; color: var(--gold); background: var(--black); padding: 0 8px; }
  .section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; letter-spacing: 2px; color: var(--white); line-height: 1.2; }
  .section-desc { max-width: 580px; margin: 16px auto 0; color: var(--white-dim); font-size: 0.9rem; font-weight: 300; line-height: 1.8; }

  .image-boxes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 40px; }

  .ib-card { position: relative; overflow: hidden; background: var(--black-card); border: 1px solid rgba(197,160,78,0.1); cursor: pointer; transition: border-color 0.4s ease; }
  .ib-card:hover { border-color: rgba(197,160,78,0.35); }

  .ib-image-wrap { position: relative; width: 100%; height: 240px; overflow: hidden; background: #111; display: flex; align-items: center; justify-content: center; }
  .ib-img-bg { position: absolute; inset: 0; transition: transform 0.6s ease; }
  .ib-card:hover .ib-img-bg { transform: scale(1.05); }

  .ib-img-bg.bullion { background: linear-gradient(145deg, #1a1408 0%, #2a1f0a 40%, #1a1408 100%); }
  .ib-img-bg.jewelry { background: linear-gradient(145deg, #120d12 0%, #1f1020 40%, #120d12 100%); }
  .ib-img-bg.manuf { background: linear-gradient(145deg, #0a0f1a 0%, #0d1525 40%, #0a0f1a 100%); }

  .ib-icon-area { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center; width: 80px; height: 80px; border: 1px solid rgba(197,160,78,0.25); background: rgba(197,160,78,0.06); transition: all 0.4s ease; }
  .ib-card:hover .ib-icon-area { border-color: rgba(197,160,78,0.5); background: rgba(197,160,78,0.12); }
  .ib-icon-area img { height: 44px; width: 44px; object-fit: contain; filter: brightness(0) saturate(100%) invert(70%) sepia(40%) saturate(600%) hue-rotate(5deg) brightness(95%); }

  .ib-top-line { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, transparent, var(--gold), transparent); transform: scaleX(0); transition: transform 0.5s ease; }
  .ib-card:hover .ib-top-line { transform: scaleX(1); }

  .ib-content { padding: 32px 36px 36px; position: relative; }
  .ib-number { position: absolute; top: 20px; right: 28px; font-family: var(--font-display); font-size: 4rem; font-weight: 300; color: rgba(197,160,78,0.07); line-height: 1; }
  .ib-tag { font-size: 0.6rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; display: block; }
  .ib-title { font-family: var(--font-display); font-size: 1.7rem; font-weight: 400; color: var(--white); margin-bottom: 14px; letter-spacing: 1px; }
  .ib-desc { font-size: 0.82rem; color: var(--white-dim); line-height: 1.75; font-weight: 300; margin-bottom: 28px; }
  .ib-divider { width: 40px; height: 1px; background: rgba(197,160,78,0.3); margin-bottom: 20px; transition: width 0.4s ease; }
  .ib-card:hover .ib-divider { width: 70px; background: var(--gold); }
  .ib-link { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: gap 0.3s ease; }
  .ib-card:hover .ib-link { gap: 14px; }
  .ib-link-arrow { font-size: 0.9rem; }


  /* marqee section css */
 .dmarquee-section { background: var(--black); padding: 60px 0; overflow: hidden; position: relative; min-height: 220px; display: flex; flex-direction: column; justify-content: center; }
.dmarquee-row { position: relative; width: 130%; left: -15%; padding: 20px 0; overflow: hidden; }
.dmarquee-row.top { transform: rotate(-4deg); margin-bottom: -18px; z-index: 2; }
.dmarquee-row.bottom { transform: rotate(4deg); margin-top: -18px; z-index: 1; }
.dmarquee-ribbon { padding: 18px 0; overflow: hidden; }
.dmarquee-row.top .dmarquee-ribbon { background: var(--gold); }
.dmarquee-row.bottom .dmarquee-ribbon { background: var(--white); }
.dmarquee-track { display: flex; width: max-content; }
.track-ltr { animation: scroll-ltr 25s linear infinite; }
.track-rtl { animation: scroll-rtl 25s linear infinite; }
.dmarquee-track:hover { animation-play-state: paused; }
@keyframes scroll-ltr { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes scroll-rtl { 0% { transform: translateX(-50%); } 100% { transform: translateX(0); } }
.dmarquee-item { display: inline-flex; align-items: center; white-space: nowrap; }
.m-text { font-family: var(--font-body); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--black); padding: 0 12px; }
.m-num { font-family: var(--font-display); font-size: 2rem; font-weight: 300; color: rgba(10,10,10,0.2); line-height: 1; padding: 0 8px; }
.m-star { font-size: 1rem; color: rgba(10,10,10,0.35); padding: 0 14px; }
.m-dot { width: 5px; height: 5px; border-radius: 50%; background: rgba(10,10,10,0.25); margin: 0 16px; flex-shrink: 0; }

/* end */

/* bullion home page section  */
/* SECTION */
.gold-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background: url('../images/banner.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* OVERLAY */
.gold-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,0.85) 35%, rgba(0,0,0,0.2) 100%);
}

/* CONTAINER */
.gold-container {
  position: relative;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* CONTENT */
.gold-content {
  max-width: 600px;
  color: #fff;
}

/* TAG */
.gold-tag {
  display: inline-flex;
  align-items: center;
  color: #d4a437;
  font-size: 14px;
  margin-bottom: 20px;
}

.gold-tag .dot {
  width: 8px;
  height: 8px;
  background: #d4a437;
  border-radius: 50%;
  margin-right: 10px;
}

/* TITLE */
.gold-content h2 {
  font-size: 44px;
  line-height: 1.2;
  margin-bottom: 20px;
  font-weight: 400;
}

/* TEXT */
.gold-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #ddd;
}

/* BADGE */
.gold-badge {
  width: 160px;
  height: 160px;
  background: #d4a437;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* BADGE TEXT */
.badge-text {
  color: #fff;
  font-size: 12px;
  text-align: center;
  padding: 20px;
}
/* BADGE */
.gold-badge {
  width: 160px;
  height: 160px;
  background: #d4a437;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* SVG */
.circle-svg {
  width: 100%;
  height: 100%;
  animation: rotateText 10s linear infinite;
}

/* TEXT STYLE */
.circle-svg text {
  fill: #fff;
  font-size: 19px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ROTATION ANIMATION */
@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* whychoose section  */
/* SECTION BASE */
.quality-section {
  background: #000;
  color: #fff;
  overflow: hidden;
}

/* TOP ROW */
.quality-top {
  display: flex;
  align-items: stretch;
}

/* LEFT IMAGE (ANGLE CUT) */
.quality-image {
  width: 50%;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* RIGHT CONTENT */
.quality-content {
  width: 50%;
  padding: 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quality-content h2 {
  font-size: 48px;
  margin-bottom: 20px;
}

.quality-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #cfd8df;
}

/* BOTTOM ROW */
.quality-bottom {
  display: flex;
  align-items: center;
}

/* STATS */
.quality-stats {
  width: 50%;
  display: flex;
  gap: 60px;
  padding: 60px 80px;
}

.stat-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.circle {
  width: 80px;
  height: 80px;
  border: 1px solid #fff;
  border-radius: 50%;
  text-align: center;
  line-height: 1.2;
  font-size: 18px;
  padding-top: 15px;
}

.circle span {
  display: block;
  font-size: 20px;
  font-weight: bold;
}

.stat-box h4 {
  font-size: 22px;
  font-weight: 400;
}

/* RIGHT IMAGE */
.quality-image-bottom {
  width: 50%;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.quality-image-bottom img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* TABLET */
@media (max-width: 992px) {
  .quality-content {
    padding: 40px;
  }

  .quality-content h2 {
    font-size: 36px;
  }

  .quality-stats {
    padding: 40px;
    gap: 30px;
  }
}

/* MOBILE */
@media (max-width: 768px) {

  .quality-top,
  .quality-bottom {
    flex-direction: column;
  }

  .quality-image,
  .quality-content,
  .quality-stats,
  .quality-image-bottom {
    width: 100%;
    clip-path: none;
  }

  .quality-content {
    padding: 40px 20px;
  }

  .quality-stats {
    flex-direction: column;
  }

  .quality-image-bottom {
    margin-top: 20px;
  }
}
/* ================= RESPONSIVE ================= */

/* TABLET */
@media (max-width: 992px) {
  .gold-content h2 {
    font-size: 36px;
  }

  .gold-badge {
    width: 130px;
    height: 130px;
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .gold-container {
    flex-direction: column;
    align-items: flex-start;
  }

  .gold-content {
    max-width: 100%;
  }

  .gold-content h2 {
    font-size: 28px;
  }

  .gold-badge {
    margin-top: 30px;
  }
}

/* bullion home page section end */

/* faq section  */
.faq-section {

  padding: 100px 0;
  color: #fff;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 60px;
  padding: 0 20px;
  align-items: center;
}

/* LEFT */
.faq-left {
  flex: 1;
}

.faq-subtitle {
  color: #d4a437;
  font-size: 14px;
  margin-bottom: 10px;
}

.faq-subtitle span {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #d4a437;
  border-radius: 50%;
  margin-right: 8px;
}

.faq-left h2 {
  font-size: 40px;
  margin-bottom: 30px;
}

/* ITEM */
.faq-item {
  border-bottom: 1px solid rgba(255,255,255,0.2);
}

/* QUESTION */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: #fff;
  font-size: 18px;
  text-align: left;
  padding: 18px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ICON (RIGHT ARROW LIKE DESIGN) */
.faq-question .icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #d4a437;
  border-bottom: 2px solid #d4a437;
  transform: rotate(-45deg);
  transition: 0.3s;
}

/* ACTIVE ICON ROTATE */
.faq-item.active .icon {
  transform: rotate(45deg);
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #ccc;
  padding-bottom: 15px;
}

/* ACTIVE */
.faq-item.active .faq-answer {
  max-height: 150px;
}

/* RIGHT */
.faq-right {
  flex: 1;
  text-align: center;
}

.faq-right img {
  max-width: 100%;
}

/* MOBILE */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 28px;
  }
}
/* ================= RESPONSIVE ================= */

@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-left h2 {
    font-size: 30px;
  }
}

/* faq section end  */


  @media (max-width: 768px) {
    .image-boxes { grid-template-columns: 1fr; padding: 0 20px; }
    .ib-image-wrap { height: 180px; }
    .ib-content { padding: 24px 24px 28px; }
  }



/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav { padding: 16px 30px; } .nav.scrolled { padding: 12px 30px; }
  .features-strip { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr; padding: 0 30px 60px; }
  .import-export { grid-template-columns: 1fr; padding: 60px 30px; gap: 40px; }
  .ie-visual { display: none; }
  .about-intro { grid-template-columns: 1fr; padding: 60px 30px; gap: 40px; }
  .products-page-grid { grid-template-columns: 1fr; padding: 60px 30px; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-info { border-right: none; border-bottom: 1px solid rgba(197,160,78,0.1); padding: 60px 30px; }
  .contact-form-wrap { padding: 60px 30px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .values-grid { grid-template-columns: 1fr; padding: 0 30px 60px; }
  .section-header { padding: 60px 30px 40px; }
  .cta-banner, .mission-section { padding: 60px 30px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; } .hamburger { display: flex; }
  .features-strip { grid-template-columns: 1fr; }
  .hero-title { letter-spacing: 1px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .ie-stats { grid-template-columns: 1fr; gap: 20px; }
  .about-visual { grid-template-columns: 1fr; }
  .about-stat-card:nth-child(2), .about-stat-card:nth-child(4) { transform: none; }
  .about-stat-card:nth-child(2):hover, .about-stat-card:nth-child(4):hover { transform: translateY(-4px); }
  .live-rate { font-size: 0.65rem; padding: 10px 16px; }
}
.hero-content {
    text-align: center;
}

.hero-content img {
    display: block;
    margin: 0 auto 15px auto;
}
.page-hero {
    background-image: url('../images/banner.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-hero-bg{
  background: linear-gradient(135deg, #0a0a0ad9 0%, #1a1409e8 50%, #0a0a0ab3 100%);}
  .page-banner {
    background: 
        linear-gradient(135deg, #0a0a0ad9 0%, #1a1409e8 50%, #0a0a0ab3 100%),
        url('../images/page-header-bg.jpg');
        
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 120px 20px;
    color: #fff;
}
.map-section {
  width: 100%;
  margin-top: 30px;
}

.map-section {
  width: 100%;
  margin: 0;
  padding: 0;
}

.map-section iframe {
  width: 100vw;       /* full screen width */
  height: 450px;
  border: 0;
  display: block;
}

/* Remove container restriction (VERY IMPORTANT) */
.container, .row, .col, .elementor-container {
  max-width: 100% !important;
}
.map-section {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}
@media (max-width: 768px) {
  .footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-legal {
    display: flex;
    justify-content: center;
    gap: 20px; /* space between links */
    margin-top: 10px;
  }
  .section-title{
      line-height:50px;
  }
}

@media(max-width:600px){
.pp-card {
  padding: 50px 20px !important;
}
.footer {
    padding: 60px 40px 40px;
}
.footer-top{
  margin-bottom: 30px;
}
}


@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    70% { transform: scale(2.4); opacity: 0; }
    100% { transform: scale(2.4); opacity: 0; }
  }
  @keyframes blink-core {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.35; }
  }
  @keyframes shimmer-live {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
  }
  @keyframes border-pulse {
    0%, 100% { box-shadow: 0 0 0 0px rgba(255,255,255,0.6); }
    50% { box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }
  }

  .live-rate-bar {
    background: #C5A04E;
    width: 100%;
    border-top: 2px solid #8a6d00;
    border-bottom: 2px solid #8a6d00;
  }

  .live-rate-bar .inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 12px 24px;
    flex-wrap: wrap;
  }

  .live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    border: 1.5px solid rgba(255,255,255,0.85);
    border-radius: 4px;
    padding: 4px 12px 4px 10px;
    animation: border-pulse 2s ease-in-out infinite;
    cursor: pointer;
  }

  .dot-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10px;
    height: 10px;
    flex-shrink: 0;
  }
  .dot-ring {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: pulse-ring 1.8s ease-out infinite;
    display: block;
  }
  .dot-core {
    position: relative;
    z-index: 1;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ff3b3b;
    animation: blink-core 1.8s ease-in-out infinite;
    display: block;
  }

  .live-text {
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 600;
    text-transform: uppercase;
    background: linear-gradient(90deg, #3d2a00 20%, #fffbe6 50%, #3d2a00 80%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer-live 2s linear infinite;
  }

  .divider {
    color: #3d2a00;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    opacity: 0.7;
  }

  .rates-label {
    color: #3d2a00;
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
  }

  .contact-link {
    color: #3d2a00;
    font-family: 'Georgia', serif;
    font-size: 11px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
  .contact-link:hover {
    opacity: 0.75;
  }

  @media (max-width: 600px) {
    .live-rate-bar .inner { gap: 10px; padding: 10px 16px; }
    .rates-label, .contact-link, .live-text { font-size: 10px; letter-spacing: 1.5px; }
  }