@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:wght@400;700&display=swap');

:root {
  --navy:       #0f2444;
  --navy-mid:   #1a3a5c;
  --navy-light: #234e7a;
  --gold:       #c49a30;
  --gold-dim:   rgba(196,154,48,0.12);
  --gold-border:rgba(196,154,48,0.3);
  --text:       #1e293b;
  --muted:      #64748b;
  --border:     #e2e8f0;
  --white:      #ffffff;
  --bg:         #f8fafc;
  --surface:    #f1f5f9;
  --green:      #16a34a;
  --red:        #dc2626;
  --shadow:     0 4px 20px rgba(15,36,68,0.10);
  --shadow-lg:  0 12px 40px rgba(15,36,68,0.16);
  --radius:     8px;
  --radius-lg:  14px;
  --nav-h:      70px;
  --t:          0.2s ease;
  --font-d:     'Playfair Display', Georgia, serif;
  --font-b:     'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-b); color: var(--text); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }

/* ── Layout ─────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
section { padding: 88px 0; }

/* ── Typography ──────────────────────────────────────────────────── */
.eyebrow {
  display: inline-block; font-size: 0.68rem; letter-spacing: 0.22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--gold); background: var(--gold-dim);
  border: 1px solid var(--gold-border);
  padding: 4px 14px; border-radius: 20px; margin-bottom: 14px;
}
.section-title {
  font-family: var(--font-d); font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 700; color: var(--navy); line-height: 1.2;
  margin-bottom: 14px; letter-spacing: -0.01em;
}
.section-sub { color: var(--muted); font-size: 1rem; line-height: 1.75; max-width: 540px; }
.section-header { margin-bottom: 52px; }
.section-header.center { text-align: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 28px; border-radius: var(--radius); border: none;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.01em;
  transition: all var(--t); cursor: pointer; white-space: nowrap;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: #d4a93a; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(196,154,48,0.35); }
.btn-navy   { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost  { background: transparent; border: 2px solid rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }
.btn-full { width: 100%; }

/* ── Nav ─────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 200; height: var(--nav-h);
  background: rgba(255,255,255,0.97); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(0,0,0,0.06);
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; flex-direction: column; gap: 2px; }
.nav-logo-name { font-family: var(--font-d); font-size: 1.2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.nav-logo-name span { color: var(--gold); }
.nav-logo-sub { font-size: 0.67rem; color: var(--muted); letter-spacing: 0.1em; text-transform: uppercase; }
.nav-links { display: flex; gap: 2px; align-items: center; list-style: none; }
.nav-links a { padding: 7px 14px; border-radius: var(--radius); font-size: 0.875rem; font-weight: 500; color: var(--muted); transition: color var(--t); }
.nav-links a:hover { color: var(--navy); }
.nav-cta { background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: #d4a93a !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--t); }
.nav-mobile {
  display: none; position: fixed; top: var(--nav-h); left: 0; right: 0;
  background: var(--white); border-bottom: 1px solid var(--border);
  flex-direction: column; padding: 8px 16px 20px; z-index: 199;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}
.nav-mobile.open { display: flex; }
.nav-mobile a { padding: 13px 12px; font-size: 0.95rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); transition: color var(--t); }
.nav-mobile a:hover { color: var(--navy); }
.nav-mobile a:last-child { border-bottom: none; margin-top: 8px; text-align: center; background: var(--gold); color: var(--navy) !important; border-radius: var(--radius); font-weight: 700; }

/* ── Hero ────────────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(to right, rgba(10,24,50,0.93) 42%, rgba(10,24,50,0.65) 100%),
    url('../images/hero.jpg') center/cover no-repeat;
  color: var(--white); padding: 110px 0 100px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 380px; gap: 64px; align-items: center; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-size: 0.68rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 18px; }
.hero-eyebrow::before { content: ''; display: block; width: 26px; height: 1.5px; background: var(--gold); }
.hero h1 { font-family: var(--font-d); font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; line-height: 1.1; margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-sub { font-size: 1.05rem; color: rgba(255,255,255,0.78); margin-bottom: 38px; line-height: 1.75; max-width: 460px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trust { display: flex; gap: 28px; flex-wrap: wrap; }
.ht-item { display: flex; flex-direction: column; }
.ht-num { font-family: var(--font-d); font-size: 1.7rem; font-weight: 700; color: var(--gold); line-height: 1; }
.ht-label { font-size: 0.72rem; color: rgba(255,255,255,0.55); margin-top: 3px; }

/* Hero card panel */
.hero-panel {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
}
.hp-title { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.hp-stamp {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; align-items: center; gap: 14px;
}
.hp-stamp-num {
  width: 36px; height: 36px; background: var(--gold); color: var(--navy);
  border-radius: 6px; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 0.75rem; flex-shrink: 0;
}
.hp-stamp-name { font-weight: 600; font-size: 0.85rem; color: var(--white); line-height: 1; margin-bottom: 3px; }
.hp-stamp-desc { font-size: 0.72rem; color: rgba(255,255,255,0.55); }
.hp-cta { background: var(--gold); color: var(--navy); border: none; border-radius: var(--radius); padding: 12px 18px; font-size: 0.85rem; font-weight: 700; transition: background var(--t); text-align: center; margin-top: 4px; cursor: pointer; }
.hp-cta:hover { background: #d4a93a; }

/* ── Trust bar ───────────────────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 0; }
.trust-bar-inner { max-width: 1100px; margin: 0 auto; display: flex; }
.tb-item { flex: 1; display: flex; align-items: center; justify-content: center; gap: 12px; padding: 20px 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.tb-item:last-child { border-right: none; }
.tb-icon { font-size: 1.4rem; flex-shrink: 0; }
.tb-num { font-family: var(--font-d); font-size: 1.5rem; font-weight: 700; color: var(--gold); line-height: 1; }
.tb-label { font-size: 0.75rem; color: rgba(255,255,255,0.6); margin-top: 2px; }

/* ── Services ────────────────────────────────────────────────────── */
.services-section { background: var(--bg); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: all var(--t); position: relative; overflow: hidden;
}
.service-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform var(--t); }
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); border-color: var(--gold-border); }
.service-card:hover::after { transform: scaleX(1); }
.service-icon { width: 50px; height: 50px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px; }
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; margin-bottom: 16px; }
.service-card .learn-more { font-size: 0.8rem; font-weight: 600; color: var(--gold); display: inline-flex; align-items: center; gap: 5px; }

/* ── Stamps section ──────────────────────────────────────────────── */
.stamps-section { background: var(--navy); color: var(--white); }
.stamps-section .eyebrow { color: var(--gold); background: rgba(196,154,48,0.15); border-color: rgba(196,154,48,0.3); }
.stamps-section .section-title { color: var(--white); }
.stamps-section .section-sub { color: rgba(255,255,255,0.65); }
.stamps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 0; }
.stamp-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 22px 20px;
  transition: background var(--t), border-color var(--t);
}
.stamp-card:hover { background: rgba(255,255,255,0.1); border-color: rgba(196,154,48,0.4); }
.stamp-badge {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--navy);
  font-weight: 800; font-size: 0.75rem; padding: 4px 10px;
  border-radius: 5px; margin-bottom: 12px; letter-spacing: 0.04em;
}
.stamp-card h4 { font-size: 0.9rem; font-weight: 700; color: var(--white); margin-bottom: 7px; }
.stamp-card p { font-size: 0.8rem; color: rgba(255,255,255,0.58); line-height: 1.6; }
.stamp-card .stamp-work { font-size: 0.72rem; font-weight: 600; color: var(--gold); margin-top: 10px; display: block; }

/* ── Process ─────────────────────────────────────────────────────── */
.process-section { background: var(--bg); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
.process-grid::before {
  content: ''; position: absolute; top: 36px; left: calc(12.5% + 8px); right: calc(12.5% + 8px);
  height: 1px; background: repeating-linear-gradient(90deg, var(--gold-border) 0, var(--gold-border) 8px, transparent 8px, transparent 16px);
}
.process-step { text-align: center; position: relative; }
.ps-num {
  width: 72px; height: 72px; background: var(--navy); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-d); font-size: 1.5rem; font-weight: 700;
  margin: 0 auto 18px; border: 3px solid var(--gold); position: relative; z-index: 1;
}
.process-step h4 { font-size: 0.975rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.process-step p { font-size: 0.85rem; color: var(--muted); line-height: 1.65; }

/* ── About ───────────────────────────────────────────────────────── */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img { position: relative; }
.about-img img { width: 100%; height: 480px; object-fit: cover; object-position: top; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-badge {
  position: absolute; bottom: 28px; left: -22px;
  background: var(--navy); color: var(--white); border-radius: var(--radius);
  padding: 16px 20px; box-shadow: var(--shadow-lg); border-left: 4px solid var(--gold);
}
.about-badge strong { display: block; font-family: var(--font-d); font-size: 1.5rem; color: var(--gold); line-height: 1; }
.about-badge span { font-size: 0.72rem; color: rgba(255,255,255,0.65); margin-top: 3px; display: block; }
.about-text .section-title { color: var(--navy); }
.about-text p { color: var(--muted); margin-bottom: 16px; line-height: 1.8; font-size: 0.975rem; }
.about-creds { display: flex; flex-direction: column; gap: 10px; margin: 24px 0; }
.about-cred { display: flex; align-items: center; gap: 10px; font-size: 0.875rem; color: var(--text); }
.about-cred-icon { width: 28px; height: 28px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; flex-shrink: 0; }

/* ── Contact ─────────────────────────────────────────────────────── */
.contact-section { background: var(--bg); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-info .section-title { color: var(--navy); }
.contact-info > p { color: var(--muted); font-size: 0.975rem; line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.ci-icon { width: 44px; height: 44px; background: var(--gold-dim); border: 1px solid var(--gold-border); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.ci-text strong { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 3px; }
.ci-text span, .ci-text a { font-size: 0.9rem; color: var(--text); }
.ci-text a:hover { color: var(--navy); text-decoration: underline; }
.contact-form-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow); }
.contact-form-card h3 { font-family: var(--font-d); font-size: 1.3rem; color: var(--navy); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.f-group { margin-bottom: 16px; }
.f-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text); margin-bottom: 6px; }
.f-group input, .f-group select, .f-group textarea {
  width: 100%; border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 11px 14px; font-size: 0.9rem; font-family: inherit;
  outline: none; transition: border var(--t); color: var(--text); background: var(--white);
}
.f-group input:focus, .f-group select:focus, .f-group textarea:focus { border-color: var(--navy); }
.f-group input::placeholder, .f-group textarea::placeholder { color: #aab4c4; }
.f-group select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3e%3cpath d='M1 1l5 5 5-5' stroke='%2364748b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3e%3c/svg%3e"); background-repeat: no-repeat; background-position: right 13px center; padding-right: 34px; }
.f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.f-group textarea { resize: vertical; min-height: 90px; }
.form-success { display: none; text-align: center; padding: 32px 0; }
.form-success.show { display: block; }
.form-success .fs-icon { font-size: 3rem; margin-bottom: 12px; }
.form-success h4 { font-family: var(--font-d); font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--muted); font-size: 0.9rem; }

/* ── CTA Banner ──────────────────────────────────────────────────── */
.cta-banner {
  background: var(--navy);
  background-image: radial-gradient(ellipse at 80% 50%, rgba(196,154,48,0.15) 0%, transparent 60%);
  padding: 72px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { font-family: var(--font-d); font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.65); font-size: 1rem; max-width: 480px; margin: 0 auto 32px; }
.cta-banner .btn-primary { font-size: 1rem; padding: 16px 40px; }

/* ── Footer ──────────────────────────────────────────────────────── */
footer { background: #080f1e; color: rgba(255,255,255,0.5); padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo-name { font-family: var(--font-d); font-size: 1.3rem; font-weight: 700; color: var(--white); display: block; margin-bottom: 12px; }
.footer-logo-name span { color: var(--gold); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 240px; }
footer h5 { font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 14px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: 0.85rem; transition: color var(--t); }
.footer-links a:hover { color: var(--white); }
.footer-bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.72rem; }
.footer-bottom a:hover { color: var(--white); }
.footer-disc { font-size: 0.72rem; color: rgba(255,255,255,0.3); max-width: 600px; line-height: 1.5; }

/* ── Toast ───────────────────────────────────────────────────────── */
#toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(12px); background: var(--navy); color: var(--white); padding: 11px 24px; border-radius: 40px; font-size: 0.875rem; font-weight: 500; opacity: 0; transition: all 0.25s ease; pointer-events: none; z-index: 999; white-space: nowrap; box-shadow: var(--shadow-lg); }
#toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stamps-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .about-badge { left: 12px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .trust-bar-inner { flex-wrap: wrap; }
  .tb-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .tb-item:nth-child(2) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 580px) {
  section { padding: 60px 0; }
  .container { padding: 0 18px; }
  .services-grid { grid-template-columns: 1fr; }
  .stamps-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .f-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-trust { gap: 20px; }
  .tb-item { flex: 0 0 100%; border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}


/* ── SVG icon rendering (emoji replacements) ───────────────────── */
.tb-icon { color: var(--gold); display: inline-flex; align-items: center; justify-content: center; }
.service-icon { color: var(--gold); }
.ci-icon { color: var(--gold); }
.about-cred-icon { color: var(--gold); }
.tb-icon svg, .service-icon svg, .ci-icon svg { display: block; }

.fs-icon { display: flex; justify-content: center; }
.fs-icon svg { display: block; }
