/* style.css - Global Business Singapore - Gold Standard Theme */

/* ===== 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;
}

/* ===== 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;
  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;
  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;
}

/* NAVIGATION */
.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;
}

/* MOBILE RESPONSIVE */
@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;
    width: 100%;
  }
  .nav-item {
    width: 100%;
  }
  .nav-link {
    justify-content: space-between;
    width: 100%;
  }
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
    background: #1a1a1a;
    border-radius: 12px;
  }
  .nav-item.dropdown.active .dropdown-menu {
    display: block;
  }
  .dropdown-menu a {
    padding: 12px 18px 12px 28px;
  }
  .btn-item {
    margin-left: 0;
  }
  .nav-menu .btn-outline {
    width: 100%;
    text-align: center;
    display: block;
  }
}

/* ===== HERO ===== */


.hero-text {
  font-size: 16px;
  line-height: 1.6;
}

.hero-text .highlight {
  font-size: 24px;
  font-weight: 700;
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}


.hero {
  background: linear-gradient(to right, rgba(0,0,0,0.85), rgba(0,0,0,0.3)), url("IMG/HERO01.jpg");
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero h2 {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.2;
  color: white;
}
.hero h2 span {
  color: var(--gold-primary);
  text-shadow: 0 0 8px rgba(212,175,55,0.6);
}
.hero-subhead {
  font-size: 1.3rem;
  margin: 18px 0;
  font-weight: 500;
  color: #e0e0e0;
}
.hero-text {
  font-size: 1.05rem;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 550px;
  color: white;
}
.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);
}

@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero h2 {
    font-size: 2.5rem;
  }
  /* Add gap between buttons on tablet */
  .hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 20px;
  }
  .hero h2 {
    font-size: 2rem;
  }
  .hero-subhead {
    font-size: 1rem;
  }
  /* Ensure buttons stack vertically with good spacing */
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    max-width: 280px;
    text-align: center;
    justify-content: center;
  }
}

/* ===== WHAT WE DO ===== */
.what-we-do {
  padding: 80px 0 20px;
  background: white;
}
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 50px;
}
.services-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 30px;
}
.service-item {
  background: var(--off-white);
  padding: 18px 18px;
  border-radius: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: var(--transition);
  border: 1px solid #e0e0e0;
}
.service-item:hover {
  background: var(--pure-black);
  color: var(--gold-primary);
  transform: scale(1.02);
  border-color: var(--gold-primary);
}
.service-item i {
  color: var(--gold-primary);
  font-size: 1.3rem;
}
.wwd-image {
  background: url('img/whtwedo.png') center/cover;
  border-radius: 36px;
  height: 320px;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--gold-primary);
}
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
  .services-list {
    grid-template-columns: 1fr;
  }
}
.counter-section {
  background: var(--pure-black);
  padding: 70px 0;
}
.counter-grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  text-align: center;
}
.counter-item i {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 12px;
  display: block;
}
.counter-number {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--gold-primary);
}
.counter-label {
  font-size: 1rem;
  font-weight: 500;
  color: #dddddd;
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .counter-grid {
    justify-content: center;
  }
  .counter-item {
    flex: 0 0 45%;
  }
}

/* Snapshot */
.snapshot {
  padding: 80px 0;
  background: #fefcf5;
}
.snapshot-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}
.snapshot-card-gold {
  background: white;
  border-radius: 36px;
  padding: 34px 26px;
  transition: var(--transition);
  border: 1px solid rgba(212,175,55,0.3);
  box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}
.snapshot-card-gold:hover {
  transform: translateY(-12px);
  border-color: var(--gold-primary);
  box-shadow: 0 25px 40px -12px rgba(212,175,55,0.25);
}
.snapshot-card-gold h3 {
  font-size: 1.7rem;
  margin-bottom: 24px;
  color: var(--pure-black);
  display: flex;
  gap: 12px;
  align-items: center;
}
.snapshot-card-gold h3 i {
  color: var(--gold-primary);
}
.snapshot-card-gold ul {
  list-style: none;
}
.snapshot-card-gold li {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.snapshot-card-gold li i {
  color: var(--gold-primary);
  width: 24px;
}
.snapshot-image-row img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 48px;
  border: 3px solid var(--gold-primary);
  box-shadow: var(--shadow-gold);
}
@media (max-width: 992px) {
  .snapshot-grid-modern {
    grid-template-columns: 1fr;
  }
}

/* Markets */
.markets {
  background: white;
  padding: 80px 0;
}
.markets-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 40px;
}
.region-block {
  flex: 1 1 230px;
  background: #FDF9F0;
  padding: 28px 22px;
  border-radius: 32px;
  transition: var(--transition);
  border-left: 4px solid var(--gold-primary);
}
.region-block:hover {
  background: var(--pure-black);
  color: white;
  transform: translateY(-6px);
}
.region-block h4 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  display: flex;
  gap: 8px;
}
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0;
}
.badge {
  background: #e9ecef;
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.85rem;
  font-weight: 500;
}
.region-block:hover .badge {
  background: rgba(212,175,55,0.2);
  color: white;
}

/* Supply chain */
.supply-chain {
  padding: 80px 0;
  background-color: white;
}
.chain-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin: 45px 0 20px;
}
.chain-card {
  flex: 0 0 calc((100% - 64px) / 3);
  max-width: 380px;
  min-width: 250px;
  background: #fff;
  border-radius: 28px;
  overflow: hidden;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 10px 20px rgba(0,0,0,0.05);
  border: 1px solid #e9ecef;
}
.chain-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 30px -12px rgba(212,175,55,0.2);
}
.chain-card:hover h4,
.chain-card:hover p {
  color: var(--gold-primary);
}
.chain-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.chain-card:hover img {
  transform: scale(1.05);
}
.chain-card h4 {
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 20px;
  margin-bottom: 8px;
  padding: 0 16px;
  color: #1f2c30;
}
.chain-card p {
  font-size: 0.9rem;
  color: #6c757d;
  padding: 0 20px 24px;
}
@media (max-width: 768px) {
  .chain-card {
    flex: 0 0 100%;
  }
}

/* Products Showcase */
.products-showcase {
  background: #0A0A0A;
  padding: 80px 0;
}
.products-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.product-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.product-pill {
  background: rgba(212,175,55,0.12);
  border: 1px solid var(--gold-primary);
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  color: white;
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.product-pill:hover {
  background: var(--gold-primary);
  color: black;
  transform: scale(1.05);
}
.product-image-col img {
  width: 100%;
  border-radius: 40px;
  border: 2px solid var(--gold-primary);
}
@media (max-width: 992px) {
  .products-row {
    grid-template-columns: 1fr;
  }
}

/* Gold Bullion Section */
.gold-bullion-section {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1205 100%);
  padding: 100px 0;
  border-top: 1px solid rgba(212,175,55,0.3);
  border-bottom: 1px solid rgba(212,175,55,0.3);
}
.bullion-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.bullion-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
  color: #ffffff;
}
.bullion-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  box-shadow: 0 25px 40px rgba(0,0,0,0.6);
}
.bullion-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.bullion-image:hover img {
  transform: scale(1.05);
}
.gold-shine-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(212,175,55,0.25), transparent 60%);
}
.bullion-bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bullion-content {
  color: #f0f0f0;
}
.section-title.gold-title-inline {
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.bullion-intro {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #dddddd;
  margin-bottom: 25px;
}
.bullion-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 0;
}
.bullion-feature {
  background: rgba(255,255,255,0.05);
  border-left: 3px solid var(--gold-primary);
  padding: 12px 14px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #ffffff;
  transition: 0.3s ease;
}
.bullion-feature:hover {
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
}
.bullion-feature i {
  color: var(--gold-primary);
}
.compliance-box {
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #ffffff;
}
.compliance-box i {
  color: var(--gold-primary);
}

@media (max-width: 992px) {
  .bullion-wrapper {
    grid-template-columns: 1fr;
  }
  /* Remove order: -1 from .bullion-left */
  .bullion-left {
    order: 0; /* or simply remove this line */
  }
  /* Ensure .bullion-content comes first */
  .bullion-content {
    order: 1;
  }
  .bullion-left {
    order: 2;
  }
}

/* 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;
  }
}




/* 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 */
.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 – GOLD PREMIUM UI
================================= */

.iti {
  width: 100%;
  position: relative;
  font-family: 'Inter', sans-serif;
}

/* INPUT FIELD */
.iti input {
  width: 100%;
  height: 52px;
  padding-left: 110px !important;
  background: #1a1a1a !important;
  color: #ffffff !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 60px !important;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

/* FOCUS EFFECT */
.iti input:focus {
  border-color: var(--gold-primary) !important;
  box-shadow: 0 0 0 3px rgba(224, 184, 75, 0.2) !important;
  outline: none;
}

/* ===============================
   FLAG + CODE CONTAINER
================================= */

.iti__flag-container {
  position: absolute;
  left: 16px;
  top: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

/* SELECTED FLAG AREA */
.iti__selected-flag {
  display: flex !important;
  align-items: center;
  height: 100%;
  background: transparent !important;
  border-radius: 40px;
  padding: 0 8px;
  cursor: pointer;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.iti__selected-flag:hover {
  background: rgba(224,184,75,0.1);
}

/* FLAG IMAGE FIX */
.iti__flag {
  transform: translateY(0);
}

/* DIAL CODE */
.iti__selected-dial-code {
  color: var(--gold-primary);
  font-weight: 600;
  margin-left: 6px;
  display: flex;
  align-items: center;
}

/* DROPDOWN ARROW */
.iti__arrow {
  margin-left: 6px;
  margin-top: 0 !important;
  align-self: center;
  border-top-color: var(--gold-primary);
}

/* ===============================
   DROPDOWN LIST
================================= */

.iti__country-list {
  background: #111 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(224,184,75,0.3) !important;

  margin-top: 10px;
  animation: dropdownFade 0.2s ease;

  max-height: 320px !important;
  overflow-y: auto !important; /* keeps usability but hides ugly feel */
  scrollbar-width: none;       /* Firefox hide */
}

/* Hide scrollbar (Chrome/Safari) */
.iti__country-list::-webkit-scrollbar {
  display: none;
}



/* COUNTRY ITEM */
.iti__country {
  padding: 12px 18px !important;
  color: #c1ad30 !important;
  transition: 0.2s;
}

/* HOVER */
.iti__country:hover {
  background: rgba(224,184,75,0.15) !important;
  color: var(--gold-primary) !important;
}

/* ACTIVE */
.iti__country.iti__active {
  background: rgba(224,184,75,0.25) !important;
  color: var(--gold-primary) !important;
}

/* SEARCH INPUT */
.iti__search-input {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  color: #fff;
  padding: 10px;
}

/* ===============================
   ANIMATION
================================= */

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 768px) {
  .iti input {
    height: 48px;
    font-size: 0.9rem;
    padding-left: 95px !important;
  }

  .iti__flag-container {
    left: 12px;
  }

  .iti__selected-dial-code {
    font-size: 0.85rem;
  }

  .iti__country {
    padding: 10px 14px !important;
  }
}

@media (max-width: 480px) {
  .iti input {
    height: 46px;
    padding-left: 85px !important;
  }

  .iti__selected-dial-code {
    display: none; /* cleaner mobile UI */
  }
}

/* Custom select gold */
.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;
}




@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-8px) scale(0.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* PERFECTLY CENTERED STROKE DROPDOWN ICON */
.select-selected {
  position: relative;
}

.select-selected::after {
  content: "";
  position: absolute;
  
  right: 24px;              /* balanced spacing from right */
  top: 50%;
  transform: translateY(-60%) rotate(45deg); /* slight upward correction */

  width: 7px;
  height: 7px;

  border-right: 2px solid var(--gold-primary);
  border-bottom: 2px solid var(--gold-primary);

  pointer-events: none;
}



.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;
}