/* contact.css - Global Business Singapore | Contact Page 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-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;
}

/* 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.5rem;
  font-weight: 800;
  color: var(--pure-black);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  border-left: 6px solid var(--gold-primary);
  padding-left: 24px;
}
.section-title-center {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 16px;
  text-align: center;
  color: var(--pure-black);
}
.text-center { text-align: center; }
.section-subtitle {
  display: inline-block;
  background: rgba(224,184,75,0.12);
  padding: 6px 18px;
  border-radius: 40px;
  color: var(--gold-dark);
  font-weight: 600;
  margin-bottom: 20px;
}
.gold-text { color: var(--gold-primary); }

/* ===== HEADER / NAVBAR (same as home) ===== */
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: 8px;
}
.logo-img {
  width: 50px;
  height: auto;
}
.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;
}
.nav-menu {
  display: flex;
}
.nav-list {
  display: flex;
  gap: 26px;
  align-items: center;
  list-style: none;
}
.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 .nav-link {
  color: var(--gold-primary);
  border-bottom-color: var(--gold-primary);
}
.dropdown-arrow {
  font-size: 0.7rem;
  transition: transform 0.3s;
}
.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);
  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);
}
.btn-item {
  margin-left: 10px;
}
.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);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline:hover {
  background: var(--gold-primary);
  color: #000;
}

/* ===== CONTACT HERO ===== */
.contact-hero {
  background: linear-gradient(120deg, #0a0a0a 0%, #1a1205 100%), url('IMG/contact\ hero2.jpg');
  background-size: cover;
  background-blend-mode: overlay;
  background-position: center;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(0,0,0,0.4), #0a0a0a);
}
.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  background: rgba(224,184,75,0.2);
  backdrop-filter: blur(8px);
  display: inline-block;
  padding: 8px 24px;
  border-radius: 40px;
  font-weight: 600;
  margin-bottom: 24px;
  border: 1px solid rgba(224,184,75,0.5);
}
.contact-hero h1 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.contact-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 32px;
}
.hero-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.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;
}

/* Contact info cards */
.contact-direct-section {
  padding: 80px 0 40px;
  background: white;
}
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.contact-card-large {
  background: var(--off-white);
  border-radius: 36px;
  padding: 36px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #e0e0e0;
}
.contact-card-large:hover {
  transform: translateY(-10px);
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}
.card-icon {
  font-size: 3rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.contact-card-large h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}
.contact-card-large a {
  color: var(--gold-dark);
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
}
.contact-card-large p {
  margin-top: 12px;
  color: #555;
}

/* Two column layout */
.two-column-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-details h3, .contact-form-elegant h3 {
  font-size: 1.8rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.office-address-box {
  background: #111;
  color: #ddd;
  padding: 28px;
  border-radius: 28px;
  margin-bottom: 30px;
  border-left: 4px solid var(--gold-primary);
}
.office-address-box p {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.gold-icon { color: var(--gold-primary); width: 28px; }
.other-offices {
  margin-bottom: 30px;
}
.mini-office {
  background: #fef7e0;
  padding: 14px 20px;
  border-radius: 40px;
  margin-bottom: 12px;
  font-weight: 500;
}
.map-container-gold {
  border-radius: 32px;
  overflow: hidden;
  border: 2px solid var(--gold-primary);
  height: 280px;
}
#contactMap {
  width: 100%;
  height: 100%;
}
.contact-form-elegant {
  background: #111;
  padding: 40px;
  border-radius: 48px;
  border: 1px solid rgba(224,184,75,0.3);
}
.form-header {
  text-align: center;
  margin-bottom: 28px;
}
.form-header i {
  font-size: 2.5rem;
  color: var(--gold-primary);
}
.form-header h3 {
  color: white;
  margin: 10px 0 6px;
}
.form-header p { color: #aaa; }
.form-group {
  margin-bottom: 22px;
}
.form-group input, .form-group textarea, .gold-select {
  width: 100%;
  padding: 16px 22px;
  border-radius: 60px;
  border: 1px solid #333;
  background: #262626;
  color: white;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.form-group textarea {
  border-radius: 28px;
  resize: vertical;
}
.gold-select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23E0B84B' stroke-width='2'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 22px center;
}
.submit-btn-gold {
  background: var(--gold-primary);
  color: #0a0a0a;
  font-weight: 800;
  padding: 16px;
  width: 100%;
  border: none;
  border-radius: 60px;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.submit-btn-gold:hover {
  background: var(--gold-dark);
  color: white;
  transform: scale(1.02);
}
.global-network-section {
  background: #0A0A0A;
  padding: 80px 0;
  margin-top: 40px;
}
.seo-heading-block {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 50px;
}
.seo-heading-block h2 {
  color: white;
  border-left: none;
  justify-content: center;
}
.seo-heading-block p {
  color: #ccc;
  font-size: 1rem;
  line-height: 1.6;
}
.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
}
.network-card {
  background: #111;
  padding: 30px 20px;
  border-radius: 32px;
  text-align: center;
  border: 1px solid rgba(224,184,75,0.2);
  transition: var(--transition);
}
.network-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-primary);
}
.network-card i {
  font-size: 2.5rem;
  color: var(--gold-primary);
  margin-bottom: 20px;
}
.network-card h4 {
  color: white;
  margin-bottom: 12px;
}
.network-card p { color: #bbb; font-size: 0.9rem; }

/* Footer (same) */
.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); 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-contact li { display: flex; gap: 12px; margin-bottom: 15px; }
.footer-contact li i { color: var(--gold-primary); }
.footer-bottom {
  border-top: 1px solid #222;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.footer-legal a { color: #ccc; text-decoration: none; margin: 0 5px; }
.footer-legal a:hover { color: var(--gold-primary); }




/* 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;
  overflow: auto;
}
#modalInnerContent { padding: 45px 40px 40px; }
.close-modal-gold {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 32px;
  cursor: pointer;
  color: var(--gold-primary);
}
.modal-form-scroll { max-height: 55vh; overflow-y: auto; }
.custom-select { position: relative; }
.select-selected {
  background: #1a1a1a;
  padding: 14px 24px;
  border-radius: 60px;
  border: 1px solid #444;
  cursor: pointer;
}
.select-items {
  position: absolute;
  top: 110%;
  left: 0;
  right: 0;
  background: #111;
  border: 1px solid rgba(224,184,75,0.3);
  border-radius: 16px;
  display: none;
  z-index: 999;
}
.custom-select.active .select-items { display: block; }
.select-items div { padding: 12px 18px; cursor: pointer; color: #ddd; }
.select-items div:hover { background: rgba(224,184,75,0.15); color: var(--gold-primary); }

/* intl-tel-input gold styling */
.iti { width: 100%; }
.iti input { width: 100%; padding-left: 110px !important; background: #1a1a1a !important; border-radius: 60px !important; }
.iti__selected-dial-code { color: var(--gold-primary); }
.iti__country-list { background: #111 !important; border-color: rgba(224,184,75,0.3) !important; }

/* Responsive */
@media (max-width: 992px) {
  .two-column-luxury { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .contact-hero h1 { font-size: 2.4rem; }
}
@media (max-width: 768px) {
  .mobile-toggle { display: block; }
  .nav-menu { display: none; width: 100%; background: #0f0f0f; margin-top: 16px; border-radius: 20px; }
  .nav-menu.active { display: block; }
  .nav-list { flex-direction: column; gap: 14px; }
  .dropdown-menu { position: static; display: none; background: #1a1a1a; }
  .nav-item.dropdown.active .dropdown-menu { display: block; }
  .container { padding: 0 20px; }
  .hero-cta-buttons { flex-direction: column; align-items: center; }
  .contact-info-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 1.8rem; }
}
@media (max-width: 480px) {
  .contact-form-elegant { padding: 24px; }
  .modal-content-gold { width: 95%; }
}