/* ================================================================
   GOLDEN TOUCH INVESTMENT BANK — Shared Stylesheet
   Apply to all pages: <link rel="stylesheet" href="styles.css"/>
   ================================================================ */

/* ── RESET & ROOT ── */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --navy:#0f1f3d;
  --navy2:#162244;
  --gold:#c9a84c;
  --gold2:#b8963e;
  --gold-bg:#fdf8ee;
  --white:#fff;
  --gray-50:#f5f6f8;
  --gray-100:#f0f1f4;
  --gray-200:#e2e4ea;
  --gray-400:#9ca3af;
  --gray-600:#4b5563;
  --text:#111827;
}
html{scroll-behavior:smooth}
body{font-family:'Inter',sans-serif;color:var(--text);background:#fff;overflow-x:hidden}

/* ── NAV ── */
nav{
  position:fixed;top:0;left:0;right:0;z-index:500;
  background:#e8e8e8;
  display:flex;align-items:center;justify-content:space-between;
  padding:0 32px;height:72px;
  box-shadow:0 1px 4px rgba(0,0,0,0.12);
}
.nav-left{display:flex;align-items:center;gap:12px;text-decoration:none}
.nav-icon{width:52px;height:52px;flex-shrink:0;object-fit:contain;background:transparent}
.nav-name{color:var(--navy);font-family:'Playfair Display',serif;font-size:17px;font-weight:600;line-height:1.2}
.nav-name small{display:block;color:var(--gray-600);font-family:'Inter',sans-serif;font-size:11px;font-weight:400;margin-top:1px}
.nav-links{display:flex;align-items:center;gap:6px;list-style:none;margin:0;padding:0}
.nav-links li{position:relative;list-style:none}
.nav-links li>a{
  color:var(--navy);text-decoration:none;font-size:14px;font-weight:500;
  padding:8px 16px;border:1px solid #ccc;border-radius:6px;
  background:#fff;display:inline-flex;align-items:center;gap:6px;
  transition:all .15s;white-space:nowrap;cursor:pointer;
}
.nav-links li>a:hover{background:var(--navy);color:#fff;border-color:var(--navy)}
.nav-links li>a.active{color:var(--gold);border-color:#ccc;background:#fff;font-weight:600}
.arrow{font-size:10px;opacity:0.7;transition:transform .2s;display:inline-block}
/* Services dropdown */
.svc-menu{padding-bottom:14px;margin-bottom:-14px}
.svc-menu .dropdown{
  display:none;position:absolute;
  top:100%;left:0;
  min-width:340px;z-index:600;
}
.svc-menu:hover .dropdown{display:block}
.svc-menu:hover>a .arrow{transform:rotate(180deg)}
.dropdown-inner{
  background:#fff;border:1px solid var(--gray-200);
  border-radius:10px;padding:8px;
  box-shadow:0 12px 40px rgba(0,0,0,0.15);
  margin-top:8px;
}
.dropdown-item{
  display:flex;flex-direction:column;gap:3px;
  padding:13px 16px;text-decoration:none;
  border-radius:7px;transition:background .15s;
  margin-bottom:2px;cursor:pointer;
}
.dropdown-item:last-child{margin-bottom:0}
.dropdown-item:hover{background:var(--gray-50)}
.dropdown-item.current{background:var(--gold)}
.dropdown-item.current strong{color:#fff}
.dropdown-item.current span{color:rgba(255,255,255,0.85)}
.dropdown-item strong{display:block;color:var(--navy);font-size:13.5px;font-weight:600;line-height:1.3;margin:0}
.dropdown-item span{display:block;color:var(--gray-400);font-size:12px;line-height:1.4;font-weight:400;margin:0}

/* ── SHARED SECTION ELEMENTS ── */
.eyebrow{
  color:var(--gold);font-size:11px;font-weight:600;
  letter-spacing:2px;text-transform:uppercase;
  display:block;margin-bottom:12px;
}
.section-header{text-align:center;margin-bottom:52px}
.section-header h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(26px,3.5vw,44px);
  color:var(--navy);font-weight:700;margin-bottom:12px;line-height:1.2;
}
.section-header p{color:var(--gray-600);font-size:15px;line-height:1.7;max-width:600px;margin:0 auto}
.btn-gold{
  background:var(--gold);color:var(--navy);font-size:14px;font-weight:600;
  padding:13px 30px;border-radius:6px;text-decoration:none;
  display:inline-flex;align-items:center;gap:8px;
  transition:background .15s;border:none;cursor:pointer;
}
.btn-gold:hover{background:var(--gold2)}
.btn-outline-white{
  background:transparent;color:#fff;font-size:14px;font-weight:500;
  padding:13px 30px;border-radius:6px;text-decoration:none;
  border:1.5px solid rgba(255,255,255,0.4);transition:all .15s;
}
.btn-outline-white:hover{border-color:#fff;background:rgba(255,255,255,0.05)}

/* ── SHARED CARDS ── */
.service-card,.cap-card,.strat-card,.sol-card,.seg-card,.svc-card{
  background:#fff;border:1px solid var(--gray-200);
  border-radius:10px;padding:28px 24px;
  transition:box-shadow .2s,border-color .2s,transform .2s;
}
.service-card:hover,.cap-card:hover,.strat-card:hover,.sol-card:hover,.seg-card:hover,.svc-card:hover{
  box-shadow:0 4px 24px rgba(0,0,0,.07);
  border-color:rgba(201,168,76,0.3);
  transform:translateY(-2px);
}
.card-icon{
  width:44px;height:44px;background:var(--gold-bg);
  border:1px solid rgba(201,168,76,0.2);border-radius:8px;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;margin-bottom:20px;
}
.card-icon-lg{
  width:56px;height:56px;background:var(--gold-bg);
  border-radius:50%;display:flex;align-items:center;
  justify-content:center;font-size:24px;margin-bottom:18px;
  border:1px solid rgba(201,168,76,0.15);
}

/* ── SHARED STATS BAR (dark navy) ── */
.stats-bar-dark{
  background:var(--navy2);
  display:grid;grid-template-columns:repeat(4,1fr);
  border-top:1px solid rgba(201,168,76,0.15);
}
.stat-cell{padding:36px 20px;text-align:center;border-right:1px solid rgba(255,255,255,0.07)}
.stat-cell:last-child{border-right:none}
.stat-num{font-family:'Playfair Display',serif;font-size:42px;font-weight:700;color:var(--gold);line-height:1;margin-bottom:8px}
.stat-label{color:rgba(255,255,255,0.5);font-size:12.5px;letter-spacing:0.3px}

/* ── SHARED HERO (dark navy gradient) ── */
.page-hero-dark{
  background:linear-gradient(135deg,#0a1525 0%,#0d1b35 40%,#0f2048 70%,#162550 100%);
  min-height:100vh;padding:140px 72px 100px;
  display:flex;flex-direction:column;justify-content:center;
  position:relative;overflow:hidden;
}
.page-hero-dark::after{
  content:'';position:absolute;top:0;right:0;bottom:0;width:50%;
  background:radial-gradient(ellipse at 80% 40%,rgba(20,50,100,0.6) 0%,transparent 70%);
  pointer-events:none;
}
.hero-eyebrow-text{
  color:var(--gold);font-size:12px;font-weight:600;
  letter-spacing:2.5px;text-transform:uppercase;
  display:block;margin-bottom:20px;position:relative;z-index:1;
}
.page-hero-dark h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(40px,5.5vw,72px);
  color:#fff;font-weight:700;line-height:1.1;
  max-width:680px;margin-bottom:24px;position:relative;z-index:1;
}
.page-hero-dark h1 span{color:var(--gold)}
.page-hero-dark .hero-sub{
  color:rgba(255,255,255,0.75);font-size:17px;line-height:1.75;
  max-width:540px;margin-bottom:40px;font-weight:300;position:relative;z-index:1;
}

/* ── SHARED HERO (light gray) ── */
.page-hero-light{
  background:var(--gray-50);
  padding:140px 40px 80px;text-align:center;
}
.page-hero-light h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(32px,5vw,60px);
  color:var(--navy);font-weight:700;
  margin-bottom:16px;line-height:1.1;
}
.page-hero-light p{
  color:var(--gray-600);font-size:16px;line-height:1.75;
  max-width:620px;margin:0 auto;
}

/* ── SHARED CTA (dark gradient) ── */
.cta-dark{
  background:linear-gradient(135deg,#0a1525 0%,#0d1b35 50%,#162244 100%);
  padding:100px 40px;text-align:center;
}
.cta-dark h2{
  font-family:'Playfair Display',serif;
  font-size:clamp(28px,4vw,48px);
  color:var(--gold);font-weight:700;
  max-width:700px;margin:0 auto 20px;line-height:1.2;
}
.cta-dark p{
  color:rgba(255,255,255,0.65);font-size:16px;
  line-height:1.7;max-width:560px;margin:0 auto 36px;
}

/* ── FOOTER ── */
footer{background:var(--navy);padding:52px 40px 28px}
.footer-top{
  display:grid;grid-template-columns:1.8fr 1fr 1fr 1.8fr;
  gap:48px;max-width:1100px;margin:0 auto 40px;
}
.footer-brand-row{display:flex;align-items:center;gap:10px;margin-bottom:14px}
.footer-brand-row img{width:44px;height:44px;object-fit:contain}
.footer-brand-name{color:var(--gold);font-family:'Playfair Display',serif;font-size:16px;font-weight:600;line-height:1.2}
.footer-brand-name small{display:block;color:rgba(201,168,76,.6);font-family:'Inter',sans-serif;font-size:11px;font-weight:400}
.footer-brand p{color:rgba(201,168,76,.75);font-size:13px;line-height:1.7;margin-bottom:16px;max-width:260px}
.footer-socials{display:flex;gap:12px}
.footer-socials a{
  width:32px;height:32px;border:1px solid rgba(201,168,76,0.35);
  border-radius:4px;display:flex;align-items:center;justify-content:center;
  color:rgba(201,168,76,.65);text-decoration:none;font-size:13px;transition:all .15s;
}
.footer-socials a:hover{border-color:var(--gold);color:var(--gold)}
.footer-col h4,footer h4{
  color:var(--gold);font-size:10.5px;font-weight:700;
  letter-spacing:1.5px;text-transform:uppercase;margin-bottom:14px;
}
.footer-col a{
  display:block;color:rgba(201,168,76,.75);font-size:13px;
  text-decoration:none;margin-bottom:9px;transition:color .15s;
}
.footer-col a:hover{color:var(--gold)}
.footer-cr,.footer-contact-row{display:flex;gap:12px;margin-bottom:16px;align-items:flex-start}
.footer-cr span:first-child,.footer-contact-row span:first-child{color:var(--gold);font-size:16px;flex-shrink:0;width:20px;text-align:center;margin-top:3px}
.footer-cr span:last-child,.footer-contact-row span:last-child{color:rgba(201,168,76,.75);font-size:13px;line-height:1.7;word-break:normal;white-space:normal}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);padding-top:22px;
  display:flex;justify-content:space-between;align-items:center;
  max-width:1100px;margin:0 auto;flex-wrap:wrap;gap:10px;
}
.footer-bottom p{color:rgba(201,168,76,.65);font-size:12px}
.footer-bottom-links{display:flex;gap:20px}
.footer-bottom-links a{color:rgba(201,168,76,.65);font-size:12px;text-decoration:none}
.footer-bottom-links a:hover{color:var(--gold)}

/* ── HAMBURGER BUTTON ── */
.nav-hamburger{
  display:none;
  flex-direction:column;justify-content:center;align-items:center;
  gap:5px;width:40px;height:40px;cursor:pointer;
  background:none;border:none;padding:4px;
  flex-shrink:0;
}
.nav-hamburger span{
  display:block;width:24px;height:2px;
  background:var(--navy);border-radius:2px;
  transition:all .3s;
}
.nav-hamburger.open span:nth-child(1){transform:translateY(7px) rotate(45deg)}
.nav-hamburger.open span:nth-child(2){opacity:0;transform:scaleX(0)}
.nav-hamburger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg)}

/* ── MOBILE DRAWER ── */
.nav-drawer{
  display:none;
  position:fixed;top:72px;left:0;right:0;bottom:0;
  background:#fff;z-index:490;
  overflow-y:auto;
  padding:16px 0 40px;
  flex-direction:column;
  box-shadow:0 8px 32px rgba(0,0,0,0.12);
}
.nav-drawer.open{display:flex}
.drawer-item{
  display:block;padding:14px 24px;
  color:var(--navy);text-decoration:none;
  font-size:15px;font-weight:500;
  border-bottom:1px solid var(--gray-100);
  transition:background .15s;
}
.drawer-item:hover{background:var(--gray-50)}
.drawer-item.active{color:var(--gold);font-weight:600}
.drawer-divider{
  font-size:10px;font-weight:700;letter-spacing:1.8px;
  text-transform:uppercase;color:var(--gray-400);
  padding:20px 24px 8px;
}
.drawer-sub{
  display:block;padding:12px 24px 12px 36px;
  color:var(--gray-600);text-decoration:none;
  font-size:14px;
  border-bottom:1px solid var(--gray-100);
  transition:background .15s;
}
.drawer-sub:hover{background:var(--gray-50);color:var(--navy)}
.drawer-sub.current{color:var(--gold);font-weight:600}

/* ── RESPONSIVE ── */
@media(max-width:900px){
  /* Nav */
  nav{padding:0 16px;background:#fff}
  .nav-links{display:none}
  .nav-hamburger{display:flex}

  /* Hero dark */
  .page-hero-dark{
    padding:100px 20px 60px;
    min-height:auto;
  }
  .page-hero-dark h1{
    font-size:clamp(32px,8vw,52px);
    max-width:100%;
  }
  .page-hero-dark .hero-sub{
    font-size:15px;
    max-width:100%;
  }

  /* Hero light */
  .page-hero-light{padding:100px 20px 60px}

  /* Stats */
  .stats-bar-dark{grid-template-columns:1fr 1fr}
  .stat-cell{padding:24px 12px}
  .stat-num{font-size:32px}

  /* CTA */
  .cta-dark{padding:60px 20px}

  /* Footer */
  .footer-top{grid-template-columns:1fr 1fr;gap:24px}
  footer{padding:40px 20px 24px}

  /* Cards */
  .service-card,.cap-card,.strat-card,.sol-card,.seg-card,.svc-card{padding:22px 18px}
}

/* iPad / tablet (768px–900px) */
@media(min-width:601px) and (max-width:900px){
  .page-hero-dark{padding:110px 32px 72px}
  .page-hero-dark h1{font-size:clamp(36px,6vw,56px)}
  .footer-top{grid-template-columns:1fr 1fr;gap:32px}
}

/* Small phones */
@media(max-width:600px){
  .stats-bar-dark{grid-template-columns:1fr 1fr}
  .footer-top{grid-template-columns:1fr}
  .footer-bottom{flex-direction:column;align-items:flex-start;gap:12px}
  .footer-bottom-links{flex-wrap:wrap;gap:12px}
}
