/* ====================================
   TZR INVESTMENT HOLDINGS PTE. LTD.
   Global Stylesheet
   ==================================== */

:root {
  --gold-light: #f5d485;
  --gold-mid: #c9973a;
  --gold-dark: #8b6914;
  --gold-gradient: linear-gradient(135deg, #f5d485 0%, #c9973a 45%, #8b6914 100%);
  --gold-gradient-h: linear-gradient(135deg, #fce8a6 0%, #e4b44a 45%, #a07c1e 100%);
  --navy: #0d1b2e;
  --navy-light: #162540;
  --navy-mid: #1e3354;
  --charcoal: #2c3e50;
  --white: #ffffff;
  --off-white: #f8f5ee;
  --text-muted: #8a9bb0;
  --border-color: rgba(197,151,58,0.25);
  --shadow: 0 8px 40px rgba(0,0,0,0.18);
  --shadow-gold: 0 4px 24px rgba(197,151,58,0.25);
  --radius: 12px;
  --radius-lg: 20px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Cormorant Garamond', 'Georgia', serif;
  background: var(--white);
  color: var(--charcoal);
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 {
  font-family: 'Playfair Display', 'Georgia', serif;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

p { font-family: 'Lato', sans-serif; font-size: 1rem; line-height: 1.75; color: #4a5568; }
a { text-decoration: none; transition: all 0.3s ease; }

/* ── UTILITY ── */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }

/* ── NAVBAR ── */
.navbar-tzr {
  background: rgba(13,27,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197,151,58,0.2);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar-tzr.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.navbar-brand-tzr {
  display: flex;
  align-items: center;
  gap: 12px;
}
.navbar-brand-tzr .logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gold-gradient);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--navy);
  flex-shrink: 0;
}
.navbar-brand-tzr .logo-text {
  line-height: 1.1;
}
.navbar-brand-tzr .logo-text .company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.navbar-brand-tzr .logo-text .company-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.navbar-tzr .nav-link {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8) !important;
  padding: 8px 16px !important;
  position: relative;
  transition: all 0.3s;
}
.navbar-tzr .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 16px; right: 16px;
  height: 1px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.navbar-tzr .nav-link:hover,
.navbar-tzr .nav-link.active {
  color: var(--gold-light) !important;
}
.navbar-tzr .nav-link:hover::after,
.navbar-tzr .nav-link.active::after { transform: scaleX(1); }

.navbar-toggler { border-color: rgba(197,151,58,0.5); }
.navbar-toggler-icon { filter: brightness(2); }

.btn-gold {
  background: var(--gold-gradient);
  color: var(--navy);
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 4px;
  border: none;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-gradient-h);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 11px 27px;
  border-radius: 4px;
  border: 1px solid var(--gold-mid);
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold-gradient);
  color: var(--navy);
  transform: translateY(-2px);
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 88vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(197,151,58,0.12) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(197,151,58,0.06) 0%, transparent 60%),
    linear-gradient(135deg, #0d1b2e 0%, #162540 50%, #0d1b2e 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(197,151,58,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(197,151,58,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold-gradient);
}
.hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.1;
}
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin-bottom: 36px;
  font-family: 'Lato', sans-serif;
  line-height: 1.8;
}
.hero-stat {
  border-left: 1px solid rgba(197,151,58,0.3);
  padding-left: 20px;
  margin-right: 36px;
}
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-stat .label {
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-badge {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(197,151,58,0.06);
  border: 1px solid rgba(197,151,58,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
}
.hero-badge .badge-text {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hero-badge .badge-sub {
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── PAGE BANNER ── */
.page-banner {
  background: var(--navy);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(197,151,58,0.08) 0%, transparent 60%);
}
.page-banner h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
}
.breadcrumb-tzr {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  margin-top: 12px;
  list-style: none;
  padding: 0;
}
.breadcrumb-tzr a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}
.breadcrumb-tzr a:hover { color: var(--gold-light); }
.breadcrumb-tzr span {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--gold-mid);
}
.breadcrumb-tzr .sep { color: rgba(197,151,58,0.4); }

/* ── SECTION LABELS ── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-label::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--gold-gradient);
}

/* ── ABOUT SECTION ── */
.about-section { background: var(--white); }
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: -10px;
  background: var(--navy);
  border: 1px solid rgba(197,151,58,0.3);
  border-radius: var(--radius);
  padding: 20px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-img-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.about-img-badge .txt {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: #4a5568;
  padding: 8px 0;
  border-bottom: 1px solid rgba(197,151,58,0.1);
}
.check-list li:last-child { border-bottom: none; }
.check-list .icon {
  width: 22px;
  height: 22px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 900;
}

/* ── SERVICES ── */
.services-section { background: var(--navy); }
.services-section h2, .services-section h3 { color: var(--white); }
.services-section p { color: rgba(255,255,255,0.65); }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,151,58,0.2);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-gradient);
  transform: scaleX(0);
  transition: transform 0.35s ease;
}
.service-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(197,151,58,0.5);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3), var(--shadow-gold);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(197,151,58,0.12);
  border: 1px solid rgba(197,151,58,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
  font-family: 'Playfair Display', serif;
}
.service-card ul {
  list-style: none;
  padding: 0;
}
.service-card ul li {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: '◆';
  position: absolute;
  left: 0;
  font-size: 0.45rem;
  color: var(--gold-mid);
  top: 10px;
}

/* ── APPROACH ── */
.approach-section { background: var(--off-white); }
.approach-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(197,151,58,0.15);
  transition: all 0.3s ease;
  position: relative;
}
.approach-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.1), var(--shadow-gold);
  transform: translateY(-4px);
}
.approach-num {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 10px;
  opacity: 0.4;
}
.approach-card h4 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
  border-top: 1px solid rgba(197,151,58,0.15);
  border-bottom: 1px solid rgba(197,151,58,0.15);
}
.stat-item { text-align: center; }
.stat-item .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.stat-item .label {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold-gradient);
  padding: 70px 0;
  text-align: center;
}
.cta-band h2 { color: var(--navy); font-size: clamp(1.8rem, 3vw, 2.5rem); }
.cta-band p { color: rgba(13,27,46,0.75); font-family: 'Lato', sans-serif; margin-top: 12px; }
.btn-navy {
  background: var(--navy);
  color: var(--gold-light);
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  display: inline-block;
  margin-top: 24px;
  transition: all 0.3s ease;
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ── CONTACT ── */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
  border: 1px solid rgba(197,151,58,0.2);
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(197,151,58,0.15);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(197,151,58,0.12);
  border: 1px solid rgba(197,151,58,0.25);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item .title {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 4px;
}
.contact-info-item .value {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid rgba(197,151,58,0.15);
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}
.form-control-tzr {
  border: 1px solid rgba(197,151,58,0.2);
  border-radius: 8px;
  padding: 14px 18px;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  background: var(--off-white);
  transition: all 0.3s;
  width: 100%;
  color: var(--charcoal);
}
.form-control-tzr:focus {
  outline: none;
  border-color: var(--gold-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(197,151,58,0.12);
}
.form-control-tzr::placeholder { color: var(--text-muted); }

/* ── FOOTER ── */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(197,151,58,0.2);
  padding-top: 60px;
}
.footer-logo .company-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.footer-desc {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 12px;
}
.footer h6 {
  font-family: 'Lato', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-mid);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(197,151,58,0.1);
  padding: 20px 0;
  margin-top: 40px;
}
.footer-bottom p {
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}
.uen-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(197,151,58,0.1);
  border: 1px solid rgba(197,151,58,0.25);
  border-radius: 6px;
  padding: 6px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.78rem;
  color: var(--gold-mid);
  letter-spacing: 1px;
}

/* ── CONTENT PAGE ── */
.content-body h3 {
  font-size: 1.3rem;
  color: var(--navy);
  margin-top: 32px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(197,151,58,0.15);
}
.content-body p {
  margin-bottom: 16px;
  font-size: 0.975rem;
}
.content-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid rgba(197,151,58,0.1);
  box-shadow: 0 8px 40px rgba(0,0,0,0.04);
}
@media (max-width: 768px) {
  .content-wrap { padding: 30px 20px; }
  .hero-badge { display: none; }
  .about-img-badge { right: 0; }
}

/* ── SECTOR TAGS ── */
.sector-tag {
  display: inline-block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  color: var(--gold-mid);
  background: rgba(197,151,58,0.08);
  border: 1px solid rgba(197,151,58,0.2);
  border-radius: 20px;
  padding: 5px 14px;
  margin: 4px;
  letter-spacing: 0.5px;
  transition: all 0.25s;
}
.sector-tag:hover {
  background: rgba(197,151,58,0.18);
  color: var(--gold-light);
}

/* ── SCROLL ANIM ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }

/* ── APPROACH TIMELINE ── */
.timeline-step {
  display: flex;
  gap: 24px;
  margin-bottom: 48px;
  position: relative;
}
.timeline-step::after {
  content: '';
  position: absolute;
  left: 27px;
  top: 56px;
  bottom: -20px;
  width: 1px;
  background: linear-gradient(to bottom, rgba(197,151,58,0.4), transparent);
}
.timeline-step:last-child::after { display: none; }
.timeline-dot {
  width: 56px;
  height: 56px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  flex-shrink: 0;
}
.timeline-content { padding-top: 8px; }
.timeline-content h4 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--navy);
}
.timeline-content p {
  font-size: 0.9rem;
  color: #6b7280;
  margin: 0;
}

/* ── MAP PLACEHOLDER ── */
.map-placeholder {
  background: var(--navy);
  border-radius: var(--radius-lg);
  height: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(197,151,58,0.2);
  margin-top: 24px;
  gap: 10px;
}
.map-placeholder span {
  font-family: 'Lato', sans-serif;
  font-size: 0.875rem;
  color: var(--text-muted);
}
