/* ═══════════════════════════════════════════
   T & J CONSULTANCY — GLOBAL STYLESHEET
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

:root {
  --navy:       #0d1b2a;
  --navy-mid:   #122236;
  --navy-light: #1a3050;
  --navy-card:  #162c45;
  --gold:       #c9a84c;
  --gold-light: #e2c47a;
  --gold-pale:  #f5e9c8;
  --cream:      #f8f4ec;
  --text-light: #cfd8e3;
  --text-muted: #8fa3bb;
  --white:      #ffffff;
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5 { font-family: 'DM Serif Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ── NAVBAR ── */
.navbar {
  background: rgba(11,22,35,0.97);
  border-bottom: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: padding 0.3s, border-color 0.3s;
}
.navbar.scrolled { padding: 0.6rem 0; border-bottom-color: rgba(201,168,76,0.35); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.brand { display: flex; align-items: center; gap: 0.8rem; }
.brand-logo {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'DM Serif Display', serif;
  font-weight: 700; font-size: 1rem;
  color: var(--navy);
  box-shadow: 0 3px 14px rgba(201,168,76,0.38);
  flex-shrink: 0;
}
.brand-name { font-family: 'DM Serif Display', serif; font-size: 1.05rem; color: #fff; font-weight: 700; line-height: 1.2; }
.brand-sub  { font-size: 0.63rem; color: var(--gold); letter-spacing: 2.5px; text-transform: uppercase; font-weight: 300; }

.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 0.45rem 0.9rem;
  border-radius: 4px;
  transition: color 0.25s, background 0.25s;
  display: block;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a.active { background: rgba(201,168,76,0.08); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
  padding: 0.5rem 1.3rem !important;
  margin-left: 0.5rem;
  transition: box-shadow 0.3s, transform 0.3s !important;
}
.nav-cta:hover { box-shadow: 0 4px 18px rgba(201,168,76,0.5) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; }
.hamburger span { width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: 0.3s; display: block; }

/* ── PAGE HERO / BANNER ── */
.page-banner {
  min-height: 380px;
  padding-top: 120px;
  padding-bottom: 70px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 75% 50%, rgba(201,168,76,0.07) 0%, transparent 60%),
    linear-gradient(160deg, #0d1b2a 0%, #122236 60%, #0a1520 100%);
}
.page-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,0.035) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.banner-inner { position: relative; z-index: 1; }
.banner-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; display: flex; align-items: center; gap: 0.6rem; }
.banner-label::before { content: ''; width: 30px; height: 1px; background: var(--gold); }
.banner-title { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; color: #fff; line-height: 1.15; }
.banner-title em { color: var(--gold); font-style: DM Serif Display; }
.breadcrumb-bar { margin-top: 1.2rem; display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-bar a { font-size: 0.75rem; color: var(--text-muted); transition: color 0.25s; }
.breadcrumb-bar a:hover { color: var(--gold); }
.breadcrumb-bar span { font-size: 0.75rem; color: var(--text-muted); }
.breadcrumb-bar .current { color: var(--gold); font-size: 0.75rem; }

/* ── SECTIONS ── */
.section { padding: 100px 0; }
.section-sm { padding: 70px 0; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
.section-label { font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.6rem; }
.section-title { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 700; color: #fff; line-height: 1.25; margin-bottom: 0.8rem; }
.section-title em { color: var(--gold); font-style: DM Serif Display; }
.section-sub { color: var(--text-muted); font-size: 1rem; font-weight: 300; line-height: 1.85; max-width: 580px; }
.gold-divider { width: 50px; height: 2px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); margin: 1.2rem 0; }
.gold-divider.center { margin-left: auto; margin-right: auto; }

/* ── BG VARIANTS ── */
.bg-navy     { background: var(--navy); }
.bg-navy-mid { background: var(--navy-mid); }

/* ── BUTTONS ── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; border: none;
  padding: 0.85rem 2rem; border-radius: 4px;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-gold:hover { box-shadow: 0 6px 24px rgba(201,168,76,0.45); transform: translateY(-2px); color: var(--navy); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  font-weight: 700; font-size: 0.8rem; letter-spacing: 1.5px;
  text-transform: uppercase; border: 1px solid var(--gold);
  padding: 0.85rem 2rem; border-radius: 4px;
  transition: all 0.3s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline-gold:hover { background: rgba(201,168,76,0.1); color: var(--gold-light); }

/* ── CARDS ── */
.card-dark {
  background: linear-gradient(145deg, var(--navy-card), var(--navy-light));
  border: 1px solid rgba(201,168,76,0.12);
  border-radius: 12px;
  transition: all 0.35s;
  position: relative; overflow: hidden;
}
.card-dark:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-5px); box-shadow: 0 25px 60px rgba(0,0,0,0.45); }
.card-dark::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transition: transform 0.35s;
}
.card-dark:hover::after { transform: scaleX(1); }

.icon-box {
  width: 54px; height: 54px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
  transition: all 0.35s; flex-shrink: 0;
}
.card-dark:hover .icon-box { background: rgba(201,168,76,0.18); box-shadow: 0 0 20px rgba(201,168,76,0.2); }

/* ── BADGE PILLS ── */
.badge-pill {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  border-radius: 50px;
  padding: 0.35rem 0.9rem;
  font-size: 0.72rem; color: var(--gold);
  letter-spacing: 0.5px; margin: 0.2rem;
}

/* ── FORMS ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.72rem; letter-spacing: 1.2px; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.form-control, .form-select {
  width: 100%;
  background: rgba(13,27,42,0.8);
  border: 1px solid rgba(201,168,76,0.18);
  color: var(--text-light);
  border-radius: 6px;
  padding: 0.8rem 1rem;
  font-size: 0.9rem; font-family: 'Lato', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s;
  appearance: none;
}
.form-control:focus, .form-select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: rgba(13,27,42,0.95);
  color: var(--text-light);
}
.form-control::placeholder { color: rgba(143,163,187,0.45); }
.form-select option { background: var(--navy); color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 130px; }

/* ── FOOTER ── */
footer {
  background: #060e19;
  border-top: 1px solid rgba(201,168,76,0.15);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 3rem; margin-bottom: 3rem; }
.footer-heading { font-size: 0.68rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer-link { color: var(--text-muted); font-size: 0.83rem; display: block; margin-bottom: 0.6rem; transition: color 0.25s; }
.footer-link:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(201,168,76,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom-text { font-size: 0.78rem; color: var(--text-muted); }
.footer-bottom-badge { font-size: 0.7rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); }

/* ── ANIMATIONS ── */
@keyframes fadeInDown { from { opacity:1; transform:translateY(-24px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeInUp   { from { opacity:1; transform:translateY(32px); } to { opacity:1; transform:translateY(0); } }
@keyframes fadeIn     { from { opacity:1; } to { opacity:1; } }
@keyframes slideInLeft  { from { opacity:1; transform:translateX(-40px); } to { opacity:1; transform:translateX(0); } }
@keyframes slideInRight { from { opacity:1; transform:translateX(40px); }  to { opacity:1; transform:translateX(0); } }

.reveal { opacity:1; transform:translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-left  { opacity:1; transform:translateX(-40px); transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-left.visible  { opacity:1; transform:translateX(0); }
.reveal-right { opacity:1; transform:translateX(40px);  transition: opacity 0.75s ease, transform 0.75s ease; }
.reveal-right.visible { opacity:1; transform:translateX(0); }

/* ── GRID UTILITIES ── */
.row { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.row.g-4 { gap: 1.5rem; }
.row.g-5 { gap: 2rem; }
.col-1-2 { flex: 0 0 calc(50% - 0.75rem); }
.col-1-3 { flex: 0 0 calc(33.333% - 1rem); }
.col-1-4 { flex: 0 0 calc(25% - 1.125rem); }
.col-2-3 { flex: 0 0 calc(66.667% - 0.75rem); }
.col-full { flex: 0 0 100%; }

/* ── STAT BOX ── */
.stat-box {
  background: linear-gradient(135deg, rgba(201,168,76,0.08), rgba(201,168,76,0.03));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
}
.stat-number { font-family: 'DM Serif Display', serif; font-size: 2.6rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label  { font-size: 0.72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-top: 0.4rem; }

/* ── QUOTE BLOCK ── */
.quote-block {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 12px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.quote-block::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background:linear-gradient(90deg,var(--gold),var(--gold-light)); }
.quote-mark { font-size: 3.5rem; color: var(--gold); opacity: 0.2; font-family: 'DM Serif Display', serif; line-height: 1; margin-bottom: -0.5rem; }
.quote-text { font-family: 'DM Serif Display', serif; font-size: 1.1rem; font-style: DM Serif Display; color: var(--text-light); line-height: 1.85; }

/* ── TAG ── */
.tag { display:inline-flex; align-items:center; gap:0.35rem; background:rgba(201,168,76,0.07); border:1px solid rgba(201,168,76,0.18); border-radius:4px; padding:0.3rem 0.75rem; font-size:0.72rem; color:var(--gold); letter-spacing:0.5px; }

/* ── DIVIDER LINE ── */
.divider { border:none; border-top:1px solid rgba(201,168,76,0.12); margin: 0; }

/* ── RESPONSIVE ── */
@media(max-width:992px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .col-1-3, .col-2-3 { flex: 0 0 100%; }
}
@media(max-width:768px) {
  .nav-links { display:none; flex-direction:column; position:absolute; top:100%; left:0; right:0; background:rgba(11,22,35,0.98); padding:1.5rem; gap:0; border-bottom:1px solid rgba(201,168,76,0.15); }
  .nav-links.open { display:flex; }
  .nav-links a { padding: 0.75rem 1rem; border-radius:0; border-bottom:1px solid rgba(201,168,76,0.06); }
  .nav-cta { margin:0.5rem 0 0; border-radius:4px !important; }
  .hamburger { display:flex; }
  .col-1-2 { flex: 0 0 100%; }
  .col-1-4 { flex: 0 0 calc(50% - 0.75rem); }
  .footer-grid { grid-template-columns: 1fr; gap:2rem; }
  .section { padding: 70px 0; }
  .page-banner { min-height: 300px; padding-top: 100px; }
  .footer-bottom { flex-direction:column; text-align:center; }
}
@media(max-width:480px) {
  .col-1-4 { flex: 0 0 100%; }
}
