/* ===== 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-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);
  --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;
  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, .active-page {
  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;
}

/* ===== ABOUT HERO ===== */


/* =========================
   BLACK HEADINGS ONLY
========================= */

/* OUR STORY */
.story-section .section-title{
    color: #000 !important;
}

/* ABOUT GLOBAL BUSINESS SINGAPORE */
.about-overview .section-title{
    color: #000 !important;
}

/* ICONS */
.story-section .section-title i,
.about-overview .section-title i{
    color: #000 !important;
}
/* =========================
   BLACK SECTION HEADINGS
========================= */

/* OUR STORY */
.story-section .section-title,
.story-section .section-title i{
    color: #000 !important;
}

/* ABOUT GLOBAL BUSINESS SINGAPORE */
.about-overview .section-title,
.about-overview .section-title i{
    color: #000 !important;
}

/* CORE VALUES */
.core-values .section-title,
.core-values .section-title i{
    color: #000 !important;
}

/* GLOBAL PRESENCE & EXPANSION */
.global-presence .section-title,
.global-presence .section-title i{
    color: #000 !important;
}


.about-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.6);
}
.about-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);
}
.about-hero h1 {
  font-size: 3.8rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.gold-text {
  color: var(--gold-primary);
}
.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}
.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;
  cursor: pointer;
}
.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);
  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;
}

/* Story Section */
.story-section {
  padding: 100px 0;
  background: white;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.story-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.6;
}
.gold-accent {
  color: var(--gold-dark);
  font-weight: 700;
}
.story-image img {
  width: 100%;
  border-radius: 32px;
  box-shadow: var(--shadow-gold);
  border: 2px solid var(--gold-primary);
}

/* About Overview */
.about-overview {
  padding: 60px 0;
  background: #fefcf5;
}
.overview-card {
  background: white;
  border-radius: 48px;
  padding: 48px;
  border: 1px solid rgba(212,175,55,0.4);
  box-shadow: 0 20px 35px -12px rgba(0,0,0,0.05);
}
.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}
.pill {
  background: var(--off-white);
  padding: 10px 24px;
  border-radius: 60px;
  font-weight: 600;
  border-left: 3px solid var(--gold-primary);
  transition: var(--transition);
}
.pill:hover {
  background: var(--pure-black);
  color: var(--gold-primary);
  transform: translateY(-3px);
}

/* Vision & Mission */
.vision-mission {
  padding: 80px 0;
  background: linear-gradient(145deg, #0A0A0A 0%, #15100a 100%);
  color: white;
}
.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.vm-card {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 40px 32px;
  border-radius: 40px;
  border: 1px solid rgba(212,175,55,0.3);
  transition: var(--transition);
}
.vm-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
}
.vm-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 24px;
}
.vm-card h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Core Values */
.core-values {
  padding: 80px 0;
  background: white;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: var(--off-white);
  border-radius: 32px;
  transition: var(--transition);
  border: 1px solid #e9ecef;
}
.value-card i {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.value-card h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.value-card:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: 0 20px 30px -12px rgba(212,175,55,0.2);
}

/* Expertise */
.expertise {
  background: #0A0A0A;
  padding: 90px 0;
  color: white;
}
.expertise-wrapper {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.expertise-list {
  list-style: none;
  margin-top: 24px;
}
.expertise-list li {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
}
.expertise-list li i {
  color: var(--gold-primary);
}
.expertise-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.stat-circle {
  text-align: center;
  background: rgba(212,175,55,0.1);
  padding: 30px 20px;
  border-radius: 60px;
  border: 1px solid rgba(212,175,55,0.4);
  flex: 1;
}
.stat-circle span {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-primary);
  display: block;
}
.stat-circle small {
  font-size: 0.8rem;
  text-transform: uppercase;
}

/* Global Presence */
.global-presence {
  padding: 80px 0;
  background: white;
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
}
.presence-card {
  background: #FDF9F0;
  padding: 32px;
  border-radius: 32px;
  text-align: center;
  transition: var(--transition);
  border-left: 4px solid var(--gold-primary);
}
.presence-card i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.presence-card h4 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
.presence-card:hover {
  background: var(--pure-black);
  color: white;
  transform: translateY(-8px);
}
.map-mini-note {
  text-align: center;
  background: var(--off-white);
  padding: 20px;
  border-radius: 60px;
  font-weight: 600;
}

/* ===== LEADERSHIP SECTION (RECTANGULAR, CLICKABLE) ===== */
.leadership-section {
  background: #111;
  padding: 90px 0;
  color: w;
}

.section-title {
  color: #ffffff;
}

.section-title i {
  color: #ffffff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 40px;
  margin-top: 30px;
}
.leader-card {
  background: rgba(255,255,255,0.05);
  border-radius: 28px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  border: 1px solid rgba(212,175,55,0.2);
}
.leader-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 35px -15px rgba(0,0,0,0.5);
  border-color: var(--gold-primary);
}
.leader-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  background: #1a1a1a;
}
.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.leader-card:hover .leader-image img {
  transform: scale(1.03);
}
/* Special larger size for Savio */
.leader-card.savio-large .leader-image {
  height: 380px;
}
.leader-info {
  padding: 24px 20px 28px;
  text-align: center;
}
.leader-info h3 {
  font-size: 1.6rem;
  color: var(--gold-primary);
  margin-bottom: 6px;
}
.leader-title {
  display: inline-block;
  background: rgba(224,184,75,0.15);
  padding: 5px 14px;
  border-radius: 40px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 12px;
}
.leader-bio-preview {
  font-size: 0.85rem;
  color: #ccc;
  line-height: 1.5;
}

/* ===== PROFILE MODAL (LEADERSHIP POPUP) ===== */
.profile-modal-content {
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
}
.profile-modal-content .modal-bio {
  padding: 20px 0;
}
.profile-modal-content .modal-bio h2 {
  color: var(--gold-primary);
  margin-bottom: 15px;
}
.profile-modal-content .modal-bio p {
  margin-bottom: 16px;
  color: #ddd;
  line-height: 1.6;
}
.profile-modal-content .modal-header {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  margin-bottom: 25px;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  padding-bottom: 20px;
}
.modal-profile-img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid var(--gold-primary);
}
.modal-header-info h3 {
  font-size: 1.8rem;
  color: white;
}
@media (max-width: 600px) {
  .modal-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .modal-profile-img {
    width: 150px;
    height: 150px;
  }
  .modal-header-info h3 {
    font-size: 1.4rem;
  }
}


/* 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 (GENERIC FOR TRADING DESK & FORMS) ===== */
.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, #profileModalInner {
  padding: 45px 40px 40px;
  overflow-y: auto;
}
.close-modal-gold {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: var(--gold-primary);
  z-index: 10;
}
#modalInnerContent,
#profileModalInner {
  padding: 45px 40px 40px;
  max-height: 85vh;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

#modalInnerContent::-webkit-scrollbar,
#profileModalInner::-webkit-scrollbar {
  display: none;
}

.modal-content-gold input, 
.modal-content-gold select, 
.modal-content-gold 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;
}

/* Custom Select (dropdown in trading desk modal) */
.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;
}

/* intl-tel-input overrides (for modal phone input) */
.iti {
  width: 100%;
}
.iti input {
  width: 100%;
  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__flag-container {
  left: 12px;
}
.iti__selected-flag {
  background: transparent !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;
  color: white;
}

/* ===== RESPONSIVE BREAKPOINTS ===== */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .section-title { font-size: 2rem; }
  .about-hero h1 { font-size: 2.8rem; }
  .story-grid, .expertise-wrapper, .contact-grid-gold { gap: 40px; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .presence-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;
    width: 100%;
  }
  .nav-item { width: 100%; }
  .nav-link { justify-content: space-between; }
  .dropdown-menu {
    position: static;
    display: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    margin-top: 8px;
  }
  .nav-item.dropdown.active .dropdown-menu { display: block; }
  .btn-item { margin-left: 0; }
  .about-hero h1 { font-size: 2rem; }
  .hero-sub { font-size: 1rem; }
  .story-grid, .vm-grid, .expertise-wrapper, .contact-grid-gold {
    grid-template-columns: 1fr;
  }
  .values-grid, .presence-grid {
    grid-template-columns: 1fr;
  }
  .expertise-stats { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .modal-content-gold { width: 95%; }
  #modalInnerContent, #profileModalInner { padding: 35px 25px 25px; }
  .leadership-grid {
    grid-template-columns: 1fr;
  }
  .leader-image, .leader-card.savio-large .leader-image {
    height: 280px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .section-title { font-size: 1.6rem; padding-left: 16px; }
  .btn-primary, .btn-secondary { padding: 10px 20px; font-size: 0.9rem; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
  .leader-image, .leader-card.savio-large .leader-image {
    height: 240px;
  }
  .leader-info h3 { font-size: 1.3rem; }
}