/* ═══════════════════════════════════════════════
   PASALKA BUILDERS — Shared Stylesheet
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 18px; }
body { font-family: var(--font-body); background: var(--white); color: var(--charcoal); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }
input, textarea, select { font-family: var(--font-body); }

/* ── VARIABLES ── */
:root {
  --white: #ffffff;
  --off-white: #fafaf8;
  --charcoal: #1a1a2a;
  --charcoal-light: #2e2e40;
  --gold: #2563eb;
  --gold-light: #5592f5;
  --gold-dim: rgba(37,99,235,0.12);
  --gold-border: rgba(37,99,235,0.3);
  --slate: #2c4a6e;
  --muted: #5a5a72;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
  --radius: 16px;
  --radius-sm: 10px;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-h: 80px;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off-white); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* ══════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  display: flex; align-items: center;
  padding: 0 60px;
  transition: border-color .3s, box-shadow .3s;
}
.navbar.scrolled { border-color: var(--border); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo { font-family: var(--font-display); font-size: 1.6rem; font-weight: 700; color: var(--charcoal); letter-spacing: -.02em; display: flex; align-items: center; gap: 3px; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--muted); padding: 8px 14px; border-radius: 8px; transition: color .2s, background .2s; letter-spacing: .01em; }
.nav-links a:hover, .nav-links a.active { color: var(--charcoal); background: var(--off-white); }
.nav-links a.nav-cta { background: var(--gold); color: #fff; padding: 10px 22px; border-radius: 100px; font-weight: 600; transition: background .2s, transform .2s, box-shadow .2s; box-shadow: 0 4px 16px rgba(37,99,235,.35); }
.nav-links a.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,.45); }
.nav-links a.nav-cta.active { background: var(--gold); color: #fff; }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 6px; cursor: pointer; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 20px 24px; flex-direction: column; gap: 4px; z-index: 999; box-shadow: var(--shadow-md); }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-size: .95rem; font-weight: 500; color: var(--charcoal); padding: 12px 16px; border-radius: var(--radius-sm); transition: background .2s; }
.mobile-menu a:hover { background: var(--off-white); }
.mobile-menu a.nav-cta { background: var(--gold); color: #fff; text-align: center; margin-top: 8px; }

/* ══════════════════════════════════════════════
   PAGE OFFSET
══════════════════════════════════════════════ */
.page-top { padding-top: var(--nav-h); }

/* ══════════════════════════════════════════════
   HERO BANNER (inner pages)
══════════════════════════════════════════════ */
.hero-banner {
  background: var(--charcoal);
  padding: 100px 60px 80px;
  position: relative; overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,235,.08) 0%, transparent 60%);
  pointer-events: none;
}
.hero-banner::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.banner-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 18px; }
.banner-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.hero-banner h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; color: var(--white); letter-spacing: -.03em; line-height: 1.1; margin-bottom: 16px; }
.hero-banner h1 em { font-style: italic; color: var(--gold); }
.hero-banner p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 560px; line-height: 1.7; }

/* ══════════════════════════════════════════════
   SECTION UTILITIES
══════════════════════════════════════════════ */
.section { padding: 100px 60px; }
.section-sm { padding: 60px 60px; }
.section-white { background: var(--white); }
.section-off { background: var(--off-white); }
.section-dark { background: var(--charcoal); }
.container { max-width: 1240px; margin: 0 auto; }
.section-tag { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.section-tag::before { content: ''; width: 28px; height: 2px; background: var(--gold); }
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; color: var(--charcoal); letter-spacing: -.03em; line-height: 1.15; margin-bottom: 18px; }
.section-title em { font-style: italic; color: var(--gold); }
.section-title.white { color: var(--white); }
.section-subtitle { font-size: 1.05rem; color: var(--muted); line-height: 1.75; max-width: 560px; }
.section-subtitle.center { margin: 0 auto; text-align: center; }
.text-center { text-align: center; }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 13px 28px; border-radius: 100px; font-size: .9rem; font-weight: 600; letter-spacing: .02em; transition: all .25s; }
.btn-gold { background: var(--gold); color: #fff; box-shadow: 0 4px 20px rgba(37,99,235,.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(37,99,235,.45); }
.btn-outline { border: 2px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); transform: translateY(-2px); }
.btn-outline-gold { border: 2px solid var(--gold); color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-2px); }
.btn-outline-white { border: 2px solid rgba(255,255,255,.4); color: var(--white); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ══════════════════════════════════════════════
   CARDS
══════════════════════════════════════════════ */
.card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: transform .3s, box-shadow .3s, border-color .3s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--gold-border); }
.card-body { padding: 32px; }

/* ══════════════════════════════════════════════
   IMAGE PLACEHOLDERS
══════════════════════════════════════════════ */
.img-placeholder { background: linear-gradient(135deg, #2c3e50, #3d5a80); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.img-placeholder::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(37,99,235,.15), transparent 60%); }
.img-placeholder .ph-icon { font-size: 3rem; opacity: .3; position: relative; z-index: 1; }
.img-placeholder.gold-bg { background: linear-gradient(135deg, #1a1a2a, #2c4a6e); }
.img-placeholder.warm { background: linear-gradient(135deg, #2d1b0e, #5c3317); }

/* ══════════════════════════════════════════════
   STATS BAR
══════════════════════════════════════════════ */
.stats-bar { display: flex; align-items: center; justify-content: center; gap: 0; }
.stat-item { flex: 1; text-align: center; padding: 40px 20px; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 50px; width: 1px; background: var(--border); }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem, 4vw, 3.5rem); font-weight: 700; color: var(--gold); letter-spacing: -.04em; line-height: 1; display: block; }
.stat-label { font-size: .88rem; color: var(--muted); margin-top: 6px; font-weight: 500; letter-spacing: .04em; text-transform: uppercase; }

/* ══════════════════════════════════════════════
   REVEAL ANIMATIONS
══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal.in { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-36px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-left.in { opacity: 1; transform: none; }
.reveal-right { opacity: 0; transform: translateX(36px); transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); }
.reveal-right.in { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════
   MARQUEE
══════════════════════════════════════════════ */
.marquee-wrap { overflow: hidden; }
.marquee-track { display: flex; gap: 24px; animation: marquee 28s linear infinite; width: max-content; }
.marquee-wrap:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.client-logo { width: 160px; height: 90px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; padding: 16px; flex-shrink: 0; transition: border-color .2s, box-shadow .2s; }
.client-logo:hover { border-color: var(--gold-border); box-shadow: var(--shadow-sm); }
.client-logo span { font-family: var(--font-display); font-size: .95rem; font-weight: 600; color: var(--muted); text-align: center; line-height: 1.3; }

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { background: var(--charcoal); color: var(--white); padding: 80px 60px 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-logo { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; letter-spacing: -.02em; margin-bottom: 14px; }
.footer-logo span { color: var(--gold); }
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.75); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-socials { display: flex; gap: 12px; }
.social-btn { width: 40px; height: 40px; border-radius: 10px; border: 1px solid rgba(255,255,255,.25); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.75); font-size: .85rem; transition: border-color .2s, color .2s, background .2s; }
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(37,99,235,.08); }
.footer-heading { font-family: var(--font-display); font-size: 1rem; font-weight: 700; color: var(--white); margin-bottom: 20px; letter-spacing: .02em; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .875rem; color: rgba(255,255,255,.75); transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.footer-contact-item .icon { color: var(--gold); font-size: .9rem; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: .875rem; color: rgba(255,255,255,.75); line-height: 1.6; }
.footer-bottom { padding: 24px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.6); }
.footer-bottom a { font-size: .8rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ══════════════════════════════════════════════
   DIVIDER
══════════════════════════════════════════════ */
.divider { height: 1px; background: var(--border); margin: 0; }
.divider-gold { height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

/* ══════════════════════════════════════════════
   FORM ELEMENTS
══════════════════════════════════════════════ */
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-label { font-size: .78rem; font-weight: 600; color: var(--charcoal); letter-spacing: .06em; text-transform: uppercase; }
.form-input, .form-select, .form-textarea { background: var(--off-white); border: 1.5px solid var(--border); border-radius: var(--radius-sm); padding: 13px 16px; font-size: .95rem; color: var(--charcoal); outline: none; transition: border-color .2s, box-shadow .2s; width: 100%; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); }
.form-textarea { resize: vertical; min-height: 130px; }

/* ══════════════════════════════════════════════
   GRID UTILITIES
══════════════════════════════════════════════ */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.grid-2.center { align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-2x2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.flex-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .hero-banner { padding: 80px 40px 60px; }
  .navbar { padding: 0 40px; }
  .footer { padding: 60px 40px 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .section { padding: 60px 24px; }
  .section-sm { padding: 40px 24px; }
  .hero-banner { padding: 60px 24px 50px; }
  .navbar { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .footer { padding: 50px 24px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .grid-2, .grid-2.center { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-2x2 { grid-template-columns: 1fr; }
  .stats-bar { flex-direction: column; gap: 0; }
  .stat-item + .stat-item::before { display: none; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
}
