
/* ===== GLOBAL VARIABLES & RESET ===== */
:root {
  --pure-black: #0A0A0A;
  --rich-black: #111111;
  --pure-white: #FFFFFF;
  --off-white: #F8F9FC;
  --gold-highlight: #FFF2B2;
  --gold-light: #F5D77A;
  --gold-primary: #E0B84B;
  --gold-mid: #D4A52A;
  --gold-dark: #B8871A;
  --gold-deep: #8C6510;
  --gold-shadow: #5E4308;
  --gold-gradient: linear-gradient(135deg, #FFF2B2 0%, #F5D77A 12%, #E0B84B 28%, #D4A52A 48%, #B8871A 68%, #8C6510 85%, #5E4308 100%);
  --gold-gloss: linear-gradient(to top, rgba(255,255,255,0.18), rgba(255,255,255,0.08), rgba(255,255,255,0));
  --gold-glow: rgba(224, 184, 75, 0.35);
  --shadow-gold: 0 20px 35px -12px rgba(0,0,0,0.35), 0 0 25px rgba(224,184,75,0.25), inset 0 2px 6px rgba(255,255,255,0.2);
  --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--off-white);
  color: #1E1E1E;
  line-height: 1.5;
  scroll-behavior: smooth;
}

body.modal-open {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #1e1e1e;
  border-radius: 20px;
}
::-webkit-scrollbar-thumb {
  background: var(--gold-primary);
  border-radius: 20px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Fade-up animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Section titles */
.section-title {
  font-size: 2.7rem;
  font-weight: 800;
  color: var(--pure-black);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 16px;
  letter-spacing: -0.02em;
  border-left: 6px solid var(--gold-primary);
  padding-left: 24px;
}
.section-title i {
  color: var(--gold-primary);
  font-size: 2.2rem;
}
.section-subtitle {
  display: inline-block;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

/* ===== HEADER / NAVBAR ===== */
header {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(14px);
  position: sticky;
  top: 0;
  z-index: 500;
  border-bottom: 1px solid rgba(212,175,55,0.3);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
  gap: 1px;
}
.logo-img {
  width: 50px;
  height: auto;
  object-fit: contain;
}
.logo-text h1 {
  font-size: 15px;
  margin: 0;
  line-height: 1.1;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #f5d77a, #e0b84b, #d4a52a, #fff2b2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 8px rgba(224, 184, 75, 0.4);
}
.logo-text p {
  font-size: 10px;
  margin: 0;
  line-height: 1.3;
  letter-spacing: 1px;
  background: linear-gradient(90deg, #fff2b2, #e0b84b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 6px rgba(255, 242, 178, 0.3);
}
.mobile-toggle {
  display: none;
  font-size: 30px;
  color: var(--gold-primary);
  cursor: pointer;
}
.nav-menu {
  display: flex;
}
.nav-list {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}
.nav-item {
  position: relative;
}
.nav-link {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: #eaeaea;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.nav-link:hover {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}
.dropdown-arrow {
  font-size: 0.7rem;
  color: #ddd;
  margin-left: 4px;
  transition: transform 0.3s ease;
}
.nav-item.dropdown.active .dropdown-arrow {
  transform: rotate(180deg);
}
.dropdown-menu {
  position: absolute;
  top: 42px;
  left: 0;
  min-width: 220px;
  background: #111;
  border-radius: 14px;
  border: 1px solid rgba(224,184,75,0.25);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: var(--transition);
  padding: 10px 0;
  z-index: 999;
}
.nav-item.dropdown.active .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 10px 18px;
  color: #ddd;
  text-decoration: none;
  font-size: 0.85rem;
  transition: var(--transition);
  border-left: 2px solid transparent;
}
.dropdown-menu a:hover {
  background: rgba(224,184,75,0.08);
  color: var(--gold-primary);
  border-left-color: var(--gold-primary);
  padding-left: 22px;
}
.btn-item {
  margin-left: 10px;
}
.nav-menu .btn-outline {
  border: 2px solid var(--gold-primary);
  padding: 8px 22px;
  border-radius: 30px;
  font-weight: 700;
  color: var(--gold-primary);
  text-decoration: none;
  transition: var(--transition);
}
.nav-menu .btn-outline:hover {
  background: var(--gold-primary);
  color: #000;
}

/* Hero */
.operations-hero {
  position: relative;
  min-height: 85vh;
  background: linear-gradient(135deg, #0a0a0a 0%, #1f1a0c 100%), url('IMG/about\ hero.jpg');
  background-size: cover;
  background-position: center;
  background-blend-mode: overlay;
  display: flex;
  align-items: center;
}
.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
}
.hero-badge {
  display: inline-block;
  background: rgba(224,184,75,0.2);
  backdrop-filter: blur(8px);
  padding: 6px 18px;
  border-radius: 40px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-primary);
  margin-bottom: 24px;
  border: 1px solid rgba(212,175,55,0.4);
}
.operations-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.gold-text {
  color: var(--gold-primary);
  text-shadow: 0 0 10px rgba(212,175,55,0.4);
}
.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 650px;
}
.btn-primary, .btn-secondary {
  font-weight: 700;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}
.btn-primary {
  background: var(--gold-primary);
  color: #0A0A0A;
  box-shadow: 0 8px 18px rgba(212,175,55,0.3);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
  box-shadow: 0 15px 25px rgba(212,175,55,0.5);
  color: white;
}
.btn-secondary {
  background: transparent;
  border: 2px solid var(--gold-primary);
  color: var(--gold-primary);
}
.btn-secondary:hover {
  background: var(--gold-primary);
  color: black;
  transform: translateY(-3px);
}
.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Core Ops Grid */
.core-ops {
  padding: 90px 0;
  background: white;
}
.ops-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 35px;
}
.ops-card {
  background: var(--off-white);
  padding: 32px 28px;
  border-radius: 32px;
  transition: var(--transition);
  border: 1px solid #e9ecef;
  text-align: center;
}
.ops-card i {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.ops-card h3 {
  font-size: 1.6rem;
  margin-bottom: 16px;
}
.ops-card p {
  color: #4a5568;
}
.ops-card:hover {
  transform: translateY(-12px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 35px -12px rgba(212,175,55,0.2);
  background: white;
}

/* Infrastructure */
.infra-section {
  padding: 80px 0;
  background: #fefcf5;
}
.two-col-infra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.infra-text h2 {
  font-size: 2.3rem;
  margin-bottom: 24px;
}
.infra-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--gold-primary);
}
.infra-text p {
  text-align: justify;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Partnerships Grid 3x2 */
.partnerships {
  padding: 80px 0;
  background: #ffffff;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.partner-card {
  background: #FDF9F0;
  padding: 28px 20px;
  border-radius: 32px;
  text-align: center;
  transition: var(--transition);
  border-left: 4px solid var(--gold-primary);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 160px;
}
.partner-card i {
  font-size: 2.2rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}
.partner-card h4 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.partner-card:hover {
  background: var(--pure-black);
  color: #ffffff;
  transform: translateY(-6px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.partner-card:hover p {
  color: #cccccc;
}

/* Marine & Storage */
.marine-storage {
  padding: 60px 0;
  background: #f8f9fc;
}
.ms-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ms-card {
  background: #ffffff;
  border-radius: 36px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.3);
}
.ms-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s;
}
.ms-card:hover img {
  transform: scale(1.03);
}
.ms-card h3 {
  font-size: 1.6rem;
  padding: 24px 24px 12px;
}
.ms-card p {
  padding: 0 24px 32px;
  color: #2d3748;
}

/* Containerized Process Steps */
.containerized-process {
  padding: 90px 0;
  background: white;
}
.process-intro {
  max-width: 800px;
  margin-bottom: 48px;
  font-size: 1.1rem;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 35px;
}
.step-card {
  background: var(--off-white);
  border-radius: 28px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #e2e8f0;
  position: relative;
}
.step-number {
  background: var(--gold-primary);
  color: black;
  font-weight: 800;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 20px 0;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.step-img img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.step-card h4 {
  font-size: 1.3rem;
  margin: 20px 20px 12px;
}
.step-card p {
  margin: 0 20px 25px;
  color: #4a5568;
}
.step-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 30px -12px rgba(212,175,55,0.2);
}

/* Inland Strengths */
.inland-strengths {
  padding: 80px 0;
  background: #0A0A0A;
  color: white;
}
.two-col-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.strength-list h3 {
  font-size: 1.9rem;
  margin-bottom: 24px;
  color: var(--gold-primary);
}
.pill-strengths {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 28px;
}
.pill-strengths span {
  background: rgba(212,175,55,0.15);
  padding: 10px 20px;
  border-radius: 60px;
  font-weight: 500;
  border-left: 3px solid var(--gold-primary);
}
.strength-image img {
  width: 100%;
  border-radius: 32px;
  border: 2px solid var(--gold-primary);
}

/* Integrated Chain */
.integrated-chain {
  padding: 70px 0;
  background: #fefcf5;
}
.chain-highlight {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.chain-highlight i {
  font-size: 3.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.chain-highlight h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.chain-stats {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.chain-stats div {
  background: white;
  padding: 20px 30px;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.chain-stats span {
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
}

/* Key Markets */
.key-markets-ops {
  padding: 80px 0;
  background: white;
}
.markets-showcase {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
.market-region {
  background: #f8f9fc;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  transition: var(--transition);
  border-left: 3px solid var(--gold-primary);
}
.market-region:hover {
  background: var(--pure-black);
  color: var(--gold-primary);
  transform: translateY(-3px);
}
.partner-cta {
  text-align: center;
  background: linear-gradient(145deg, #0A0A0A, #1a1408);
  padding: 50px 30px;
  border-radius: 56px;
  color: white;
}
.partner-cta h4 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--gold-primary);
}
.partner-cta .btn-primary {
  margin-top: 20px;
}


/* Contact Section */
.contact-section-gold {
  background-color: #171616;
  padding: 80px 0 90px;
}
.section-title.gold-title {
  text-align: left;
  color: var(--gold-primary);
  border-left-color: var(--gold-primary);
}
.contact-grid-gold {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 55px;
  background: #111;
  border-radius: 56px;
  padding: 50px;
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.6);
}
.contact-info-gold h3,
.contact-form-gold h3 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}
.contact-info-gold p {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 1rem;
  color: #ddd;
}
.contact-info-gold i {
  color: var(--gold-primary);
  width: 28px;
}
.office-hours {
  margin: 28px 0 24px;
  padding-top: 10px;
  border-top: 1px solid rgba(212,175,55,0.25);
}
.office-hours h4,
.office-hours p {
  color: #ffffff;
}
.official-offices {
  margin: 28px 0 0;
  background: rgba(0,0,0,0.3);
  border-radius: 28px;
  padding: 18px 20px;
}
.official-offices h4,
.official-offices p {
  color: #ffffff;
}
.office-card {
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(212,175,55,0.25);
}
.office-card strong {
  color: var(--gold-primary);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}
.regional-note {
  margin-top: 16px;
  background: rgba(212,175,55,0.08);
  border-radius: 24px;
  padding: 12px 16px;
  border-left: 3px solid var(--gold-primary);
  color: #ffffff;
}
.real-map-container {
  width: 100%;
  margin-bottom: 30px;
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
}
#globalMap {
  height: 300px;
  width: 100%;
  background: #262626;
}
.social-links-gold {
  margin-top: 10px;
  display: flex;
  gap: 28px;
}
.social-links-gold a {
  color: white;
  font-size: 1.8rem;
  transition: var(--transition);
}
.social-links-gold a:hover {
  color: var(--gold-primary);
  transform: translateY(-4px);
}
.contact-form-gold input,
.contact-form-gold textarea {
  width: 100%;
  padding: 16px 24px;
  border-radius: 60px;
  border: 1px solid #333;
  background: #262626;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.contact-form-gold input:focus,
.contact-form-gold textarea:focus {
  border-color: var(--gold-primary);
  outline: none;
  box-shadow: 0 0 0 2px rgba(212,175,55,0.2);
}
.form-group {
  margin-bottom: 22px;
}
.submit-btn-gold {
  background: var(--gold-primary);
  color: #0a0a0a;
  font-weight: 800;
  padding: 16px;
  border: none;
  width: 100%;
  border-radius: 60px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}
.submit-btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: scale(1.02);
}
@media (max-width: 992px) {
  .contact-grid-gold {
    grid-template-columns: 1fr;
    padding: 30px;
  }
}

/* =========================
   EXTRA RESPONSIVE FIXES
========================= */

/* Large tablets */
@media (max-width: 1200px) {
  .contact-grid-gold {
    gap: 35px;
    padding: 40px;
    border-radius: 40px;
  }
}

/* Tablets */
@media (max-width: 992px) {
  .contact-grid-gold {
    grid-template-columns: 1fr;
    padding: 30px;
    border-radius: 32px;
  }

  .section-title.gold-title {
    text-align: center;
    border-left: none;
    border-bottom: 3px solid var(--gold-primary);
    display: inline-block;
    padding-bottom: 8px;
  }

  .contact-info-gold h3,
  .contact-form-gold h3 {
    font-size: 1.6rem;
  }

  #globalMap {
    height: 260px;
  }
}

/* Mobile phones */
@media (max-width: 576px) {
  .contact-section-gold {
    padding: 50px 15px 60px;
  }

  .contact-grid-gold {
    padding: 20px;
    border-radius: 22px;
    gap: 25px;
  }

  .contact-info-gold h3,
  .contact-form-gold h3 {
    font-size: 1.4rem;
    flex-wrap: wrap;
  }

  .contact-info-gold p {
    font-size: 0.92rem;
    gap: 10px;
  }

  .contact-info-gold i {
    width: 22px;
  }

  .contact-form-gold input,
  .contact-form-gold textarea {
    padding: 14px 18px;
    font-size: 0.9rem;
    border-radius: 40px;
  }

  .submit-btn-gold {
    padding: 14px;
    font-size: 1rem;
    border-radius: 40px;
  }

  .real-map-container {
    border-radius: 20px;
  }

  #globalMap {
    height: 220px;
  }

  .social-links-gold {
    justify-content: center;
    gap: 20px;
  }
}

/* Very small devices */
@media (max-width: 400px) {
  .contact-grid-gold {
    padding: 16px;
  }

  .contact-info-gold h3,
  .contact-form-gold h3 {
    font-size: 1.2rem;
  }

  .contact-form-gold input,
  .contact-form-gold textarea {
    padding: 12px 14px;
  }

  .submit-btn-gold {
    font-size: 0.95rem;
  }
}


.highlight-hours {
  background: linear-gradient(135deg, #d4af37, #f5e6a3);
  padding: 15px;
  border-radius: 10px;
  color: #000; /* makes all text black */
}

.highlight-hours h4,
.highlight-hours p {
  color: #000; /* force black text */
}

.contact-info-gold a {
  color: #ffffff; /* gold/yellow */
  text-decoration: none;
  font-weight: 500;
}

.contact-info-gold a:hover {
  color: #d4af37; /* lighter gold on hover */
  text-decoration: underline;
}



/* Footer */
.main-footer {
  background: #0a0a0a;
  border-top: 2px solid rgba(212,175,55,0.3);
  padding: 60px 0 30px;
  color: #ccc;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 50px;
}
.footer-col h4 {
  color: var(--gold-primary);
  font-size: 1.3rem;
  margin-bottom: 25px;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  color: #ddd;
  text-decoration: none;
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}
.footer-logo .logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-desc {
  margin-bottom: 20px;
  line-height: 1.6;
  font-size: 0.9rem;
}
.footer-social {
  display: flex;
  gap: 18px;
}
.footer-social a {
  color: #ccc;
  font-size: 1.4rem;
  transition: var(--transition);
}
.footer-social a:hover {
  color: var(--gold-primary);
  transform: translateY(-3px);
}
.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  align-items: flex-start;
}
.footer-contact li i {
  color: var(--gold-primary);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
}
.footer-legal a {
  color: #ccc;
  text-decoration: none;
  margin: 0 5px;
}
.footer-legal a:hover {
  color: var(--gold-primary);
}
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}




.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #bbb;
}

/* Left text */
.footer-bottom {
  border-top: 1px solid rgba(212,175,55,0.25);
  padding: 25px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;

  /* ✨ Background added */
  background: linear-gradient(135deg, #0a0a0a 0%, #141414 50%, #0a0a0a 100%);
  box-shadow: inset 0 0 25px rgba(212,175,55,0.08);
  color: #bbb;
}

/* Legal links */
.footer-legal {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease;
  font-weight: 500;
}

.footer-legal a:hover {
  color: var(--gold-primary);
}

.footer-legal span {
  color: #555;
}


/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal.active {
  display: flex;
}
.modal-content-gold {
  background: #111;
  max-width: 560px;
  width: 92%;
  border-radius: 48px;
  border: 1px solid var(--gold-primary);
  color: white;
  position: relative;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
}
#modalInnerContent {
  padding: 45px 40px 40px;
  overflow: hidden;
}
.close-modal-gold {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: var(--gold-primary);
  transition: var(--transition);
}
.close-modal-gold:hover {
  transform: scale(1.1);
}
.modal-form-scroll {
  max-height: 55vh;
  overflow-y: auto;
  padding-right: 0;
  scrollbar-width: none;
}
.modal-form-scroll::-webkit-scrollbar {
  display: none;
}
.modal-content-gold .form-group input,
.modal-content-gold .form-group select,
.modal-content-gold .form-group textarea {
  background: #262626;
  border: 1px solid #444;
  border-radius: 60px;
  padding: 14px 20px;
  width: 100%;
  color: white;
}
.thankyou-message {
  text-align: center;
}
.thankyou-message i {
  font-size: 4rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.legal-content {
  max-height: 55vh;
  overflow-y: auto;
}
.legal-content h4 {
  color: var(--gold-primary);
  margin-top: 1.5rem;
}

/* intl-tel-input overrides */
.iti {
  width: 100%;
}
.iti input {
  width: 100%;
  height: 52px;
  padding-left: 95px !important;
  background: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 60px !important;
}
.iti input:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 0 3px rgba(224, 184, 75, 0.2) !important;
}
.iti__selected-dial-code {
  color: var(--gold-primary);
  font-weight: 600;
}
.iti__country-list {
  background: #111 !important;
  border: 1px solid rgba(224,184,75,0.3) !important;
}
.iti__country:hover {
  background: rgba(224,184,75,0.15) !important;
  color: var(--gold-primary) !important;
}

/* Responsive */
@media (max-width: 992px) {
  .partner-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-infra, .two-col-reverse, .contact-grid-gold { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu { display: none; width: 100%; background: #0f0f0f; margin-top: 16px; padding: 18px; border-radius: 20px; }
  .nav-menu.active { display: block; }
  .nav-list { flex-direction: column; gap: 14px; }
  .dropdown-menu { position: static; display: none; opacity: 1; visibility: visible; transform: none; margin-top: 8px; background: #1a1a1a; }
  .nav-item.dropdown.active .dropdown-menu { display: block; }
  .operations-hero h1 { font-size: 2.5rem; }
  .hero-buttons { flex-direction: column; }
  .section-title { font-size: 2rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .partner-grid { grid-template-columns: 1fr; }
  .ms-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 576px) {
  .container { padding: 0 20px; }
  .partner-grid, .steps-grid { grid-template-columns: 1fr; }
}



.custom-select {
  position: relative;
  width: 100%;
}
.select-selected {
  background: #1a1a1a;
  color: #fff;
  padding: 14px 24px;
  border-radius: 60px;
  border: 1px solid rgba(255,255,255,0.12);
  cursor: pointer;
}
.select-items {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #111;
  border-radius: 16px;
  border: 1px solid rgba(224,184,75,0.3);
  display: none;
  overflow: hidden;
  z-index: 999;
}
.select-items div {
  padding: 12px 18px;
  color: #ddd;
  cursor: pointer;
}
.select-items div:hover {
  background: rgba(224,184,75,0.15);
  color: var(--gold-primary);
}
.custom-select.active .select-items {
  display: block;
}
