/* ================================================
   INVICTA FINANCIAL SOLUTIONS — style.css
   ================================================
   Colors:
     Navy (Primary):  #0d2b5a
     Blue (Accent):   #3a7bd5
     Gold (CTA):      #c9a227

   To customize colors, update the :root variables below.
   To swap in a real hero photo, see the .hero comment.
   ================================================ */

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

/* ---- CSS Variables ---- */
:root {
  --navy:        #0d2b5a;
  --navy-dark:   #081a3d;
  --navy-light:  #163c78;
  --blue:        #3a7bd5;
  --blue-light:  #6ba3e8;
  --blue-pale:   #eef4fd;
  --gold:        #c9a227;
  --gold-dark:   #a8881f;
  --gold-light:  #e5c45a;
  --white:       #ffffff;
  --off-white:   #f8f9fc;
  --gray:        #6b7280;
  --gray-light:  #e5e7eb;
  --gray-dark:   #374151;
  --text:        #1f2937;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --max-width:    1200px;
  --nav-height:   72px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.10), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 32px rgba(0,0,0,0.18);

  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.28s ease;
}

/* ---- Reset & Base ---- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  color: var(--navy);
}

h1 { font-size: clamp(2rem,    4.5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem,  3vw,   2.5rem); }
h3 { font-size: clamp(1.15rem, 2vw,   1.55rem); }

p {
  margin-bottom: 1rem;
  line-height: 1.75;
}
p:last-child { margin-bottom: 0; }

/* ---- Layout Helpers ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
}

.section    { padding: 88px 0; }
.section-sm { padding: 52px 0; }
.section-lg { padding: 120px 0; }

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
}

.btn-gold {
  background: var(--gold);
  color: var(--navy-dark);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.35);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-sm  { padding: 10px 20px; font-size: 0.9rem; }
.btn-lg  { padding: 18px 38px; font-size: 1.1rem; }
.btn-full { width: 100%; justify-content: center; }

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  min-height: var(--nav-height);
  background: var(--navy);
  z-index: 1000;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 24px rgba(0,0,0,0.28);
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar.scrolled {
  background: var(--navy-dark);
  box-shadow: 0 2px 32px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-img {
  height: 70px;
  width: auto;
  display: block;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
  line-height: 1;
  margin-left: 10px;
}
.nav-logo-main {
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.nav-logo-accent {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: var(--radius);
  transition: all var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255,255,255,0.1);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 8px 18px !important;
  border-radius: var(--radius) !important;
  margin-left: 8px !important;
}
.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Page body offset for fixed nav */
main { padding-top: var(--nav-height); }

/* ================================================
   HERO SECTION (Home page)
   ================================================
   To add a real background photo:
   Replace the background property below with:
     background: linear-gradient(rgba(8,26,61,0.72), rgba(8,26,61,0.72)),
                 url('your-photo.jpg') center/cover no-repeat;
   ================================================ */
.hero {
  position: relative;
  min-height: calc(92vh - var(--nav-height));
  display: flex;
  align-items: center;
  background:
    linear-gradient(rgba(8,26,61,0.72), rgba(8,26,61,0.72)),
    url('mazilovart-WDh4kNUymaM-unsplash.jpg') center/cover no-repeat;
  overflow: hidden;
}

/* Subtle grid texture */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

/* Gold accent bar */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--blue), var(--gold));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 60px 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,162,39,0.12);
  border: 1px solid rgba(201,162,39,0.28);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 28px;
}

.hero-title {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-title span { color: var(--gold); }

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 14px;
}

.hero-desc {
  font-size: clamp(0.95rem, 1.5vw, 1.07rem);
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  margin-bottom: 42px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Decorative stat strip below hero */
.hero-stats {
  background: var(--navy-dark);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.hero-stat-item {
  flex: 1;
  max-width: 280px;
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ================================================
   SECTION HEADERS
   ================================================ */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-label {
  display: inline-block;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p  { color: var(--gray); font-size: 1.03rem; }
.section-divider {
  width: 56px;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--blue));
  margin: 14px auto 22px;
  border-radius: 2px;
}

/* ================================================
   HOW IT WORKS — 3-Step Cards
   ================================================ */
.how-it-works { background: var(--off-white); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--blue));
  opacity: 0;
  transition: opacity var(--transition);
}
.step-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: transparent;
}
.step-card:hover::before { opacity: 1; }

.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
}
.step-num {
  width: 38px;
  height: 38px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.88rem;
  flex-shrink: 0;
}
.step-label-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

.step-icon {
  width: 64px;
  height: 64px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  flex-shrink: 0;
}

.step-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.step-card .step-subtitle {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 12px;
  font-family: var(--font-body);
  font-style: italic;
}
.step-card p {
  color: var(--gray);
  font-size: 0.93rem;
  line-height: 1.72;
  flex-grow: 1;
}

/* ================================================
   BANK ON YOURSELF SECTION
   ================================================ */
.boy-section { background: var(--white); }

.boy-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}

/* Decorative panel in place of photo */
.boy-visual-card {
  background: linear-gradient(140deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.boy-visual-card::before {
  content: '';
  position: absolute;
  top: -40%; right: -20%;
  width: 70%; height: 180%;
  background: radial-gradient(ellipse, rgba(201,162,39,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.boy-visual-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--blue));
}

.boy-pillar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 32px;
}
.boy-pillar:last-child { margin-bottom: 0; }

.boy-pillar-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,162,39,0.18);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold-light);
  border: 1px solid rgba(201,162,39,0.3);
}
.boy-pillar-title {
  font-weight: 700;
  font-size: 1rem;
  color: var(--gold-light);
  margin-bottom: 5px;
  font-family: var(--font-body);
}
.boy-pillar-desc {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin: 0;
}

.boy-content .section-label { margin-bottom: 10px; }
.boy-content h2 { margin-bottom: 20px; }
.boy-content p { color: var(--gray); margin-bottom: 16px; }

.boy-benefits {
  margin: 28px 0 32px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.boy-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-dark);
  font-weight: 500;
}
.boy-benefit-check {
  width: 22px;
  height: 22px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 800;
}

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  padding: 88px 28px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(58,123,213,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
  position: relative;
}
.cta-banner p {
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 38px;
  font-size: 1.05rem;
  position: relative;
}
.cta-banner .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 40px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand-name {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.footer-brand-tagline {
  font-size: 0.68rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 16px;
  margin-top: 3px;
}
.footer-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.48);
  line-height: 1.72;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 700;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--gold); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.55);
}
.footer-contact-icon { color: var(--gold); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 28px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  width: 100%;
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 72px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--blue), var(--gold));
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.68); max-width: 580px; margin: 0 auto; font-size: 1.05rem; }

/* ================================================
   ABOUT PAGE
   ================================================ */
.team-section { padding: 88px 0; }

.team-member {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
  padding: 64px 0;
  border-bottom: 1px solid var(--gray-light);
}
.team-member:first-child { padding-top: 0; }
.team-member:last-child  { border-bottom: none; }

.team-member.reverse {
  grid-template-columns: 1fr 280px;
}
.team-member.reverse .member-photo { order: 2; }
.team-member.reverse .member-info  { order: 1; }

.member-photo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}

/* Placeholder avatar — replace src="" with real photo path */
.member-avatar {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
  border: 6px solid var(--gold);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.member-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.member-initials {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  letter-spacing: 0.04em;
  user-select: none;
}

.member-email {
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}
.member-email a:hover { text-decoration: underline; }

.member-name-display {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}
.member-title-display {
  font-size: 0.8rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.member-info .member-role-tag {
  display: inline-block;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.member-info h2 { margin-bottom: 8px; }
.member-info p  { color: var(--gray); font-size: 1rem; line-height: 1.8; margin-bottom: 14px; }

.values-section { background: var(--off-white); padding: 88px 0; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 52px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.value-icon {
  font-size: 2.6rem;
  margin-bottom: 18px;
  display: block;
}
.value-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
.value-card p  { font-size: 0.88rem; color: var(--gray); }

/* ================================================
   PODCAST PAGE
   ================================================ */
.podcast-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 100px 0 88px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.podcast-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--gold), var(--blue), var(--gold));
}
.podcast-mic {
  font-size: 4.5rem;
  display: block;
  margin-bottom: 24px;
}
.podcast-hero h1 { color: var(--white); margin-bottom: 16px; }
.podcast-hero p  {
  color: rgba(255,255,255,0.68);
  max-width: 640px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
}

.coming-soon-section { padding: 88px 0; }
.coming-soon-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  padding: 60px 48px;
  border: 2px dashed var(--gray-light);
  text-align: center;
}
.coming-soon-box .cs-icon { font-size: 3.5rem; display: block; margin-bottom: 20px; }
.coming-soon-box h3 { font-size: 1.5rem; margin-bottom: 14px; }
.coming-soon-box p  { color: var(--gray); font-size: 1rem; margin-bottom: 28px; }

.topic-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 32px;
}
.topic-pill {
  background: var(--navy);
  color: rgba(255,255,255,0.9);
  padding: 7px 20px;
  border-radius: 30px;
  font-size: 0.83rem;
  font-weight: 500;
}

.notify-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 52px 40px;
  text-align: center;
  color: var(--white);
  max-width: 620px;
  margin: 52px auto 0;
}
.notify-box h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.notify-box p  { color: rgba(255,255,255,0.65); font-size: 0.95rem; margin-bottom: 28px; }
.notify-input-row {
  display: flex;
  gap: 12px;
  max-width: 420px;
  margin: 0 auto;
}
.notify-input-row input {
  flex: 1;
  padding: 12px 18px;
  border: 2px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color var(--transition);
}
.notify-input-row input::placeholder { color: rgba(255,255,255,0.4); }
.notify-input-row input:focus { border-color: var(--gold); }

/* ================================================
   BLOG PAGE
   ================================================ */
.blog-section { padding: 88px 0; background: var(--off-white); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.article-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.article-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.article-card h3 { font-size: 1.2rem; color: var(--navy); }
.article-excerpt { color: var(--gray); font-size: 0.95rem; line-height: 1.7; flex-grow: 1; }
.blog-empty-msg { text-align: center; color: var(--gray); font-size: 1rem; padding: 24px 0; }

/* ================================================
   BLOG POST MANAGER (blogchangeupload.html — internal tool)
   ================================================ */
.admin-header {
  background: var(--navy);
  padding: 20px 0;
}
.admin-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.admin-wrap { padding: 48px 0 88px; background: var(--off-white); min-height: 100vh; }

.admin-instructions {
  background: var(--blue-pale);
  border: 1px solid rgba(58,123,213,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-bottom: 40px;
}
.admin-instructions h3 { margin-bottom: 10px; }
.admin-instructions ol { margin: 12px 0 12px 20px; color: var(--text); }
.admin-instructions li { margin-bottom: 6px; }
.admin-instructions code {
  background: rgba(13,43,90,0.08);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 0.9em;
}
.load-status { color: var(--blue); font-size: 0.9rem; font-weight: 600; margin-top: 8px; margin-bottom: 0; }

.post-editor-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  margin-bottom: 28px;
}
.post-editor-card h3 { margin-bottom: 18px; }
.post-editor-card-existing { border-left: 4px solid var(--gold); }

.post-editor-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.post-delete-btn:hover { background: #dc2626; color: var(--white); border-color: #dc2626; }

.admin-list-section { margin-top: 48px; }
.admin-list-hint { color: var(--gray); font-size: 0.9rem; margin-bottom: 20px; }

.admin-download-bar {
  text-align: center;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 2px dashed var(--gray-light);
}

/* ================================================
   CONTACT PAGE
   ================================================ */
.contact-section { padding: 88px 0; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 64px;
  align-items: start;
}

.contact-info h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-info .ci-subtitle {
  color: var(--gray);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}
.ci-icon-wrap {
  width: 48px;
  height: 48px;
  background: var(--blue-pale);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
  color: var(--blue);
}
.ci-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.ci-value {
  color: var(--navy);
  font-weight: 600;
  font-size: 1rem;
}
.ci-value a:hover { text-decoration: underline; }
.ci-note {
  font-size: 0.83rem;
  color: var(--gray);
  margin-top: 4px;
}

.book-call-box {
  background: linear-gradient(140deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  margin-top: 36px;
  position: relative;
  overflow: hidden;
}
.book-call-box::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--gold), var(--blue));
}
.book-call-box h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-family: var(--font-body);
}
.book-call-box p {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  margin-bottom: 22px;
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-light);
}
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 6px; }
.form-subtitle        { color: var(--gray); font-size: 0.9rem; margin-bottom: 32px; }

.form-group  { margin-bottom: 22px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.96rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(58,123,213,0.1);
}
textarea { resize: vertical; min-height: 148px; }

.form-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 18px;
  text-align: center;
}

/* ================================================
   RESPONSIVE / MOBILE
   ================================================ */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {
  .steps-grid          { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .blog-grid           { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .boy-grid            { grid-template-columns: 1fr; gap: 44px; }
  .team-member,
  .team-member.reverse { grid-template-columns: 1fr; gap: 40px; }
  .team-member.reverse .member-photo,
  .team-member.reverse .member-info { order: unset; }
  .member-photo        { margin: 0 auto; }
  .values-grid         { grid-template-columns: 1fr; max-width: 380px; margin: 52px auto 0; }
  .contact-grid        { grid-template-columns: 1fr; gap: 44px; }
  .hero-stats-inner    { flex-wrap: wrap; }
  .hero-stat-item      { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); max-width: 100%; width: 50%; }
}

@media (max-width: 768px) {
  :root { --nav-height: 84px; }

  .nav-toggle     { display: flex; }
  .nav-container  { padding: 12px 20px; }
  .nav-logo-img   { height: 54px; }
  .nav-logo-main  { font-size: 1rem; }
  .nav-logo-accent{ font-size: 0.6rem; }

  /* Dropdown menu — collapses to exactly zero height when closed
     (rather than sliding off-screen) so it can never bleed above
     or below the navbar. */
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    border-top: 1px solid transparent;
    box-shadow: var(--shadow-lg);
    transition: max-height 0.35s ease, opacity 0.25s ease, padding 0.35s ease;
  }
  .nav-links.open {
    max-height: 480px;
    opacity: 1;
    padding: 16px 20px 24px;
    border-top-color: rgba(255,255,255,0.08);
  }
  .nav-links a    { padding: 12px 16px; border-radius: var(--radius); font-size: 1rem; }
  .nav-cta        { text-align: center; margin-left: 0 !important; margin-top: 8px !important; }
}

@media (max-width: 640px) {
  .section, .team-section, .contact-section { padding: 60px 0; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .coming-soon-box { padding: 40px 24px; }
  .notify-input-row { flex-direction: column; }
  .notify-input-row .btn { width: 100%; justify-content: center; }
  .cta-banner .cta-buttons { flex-direction: column; align-items: center; }
  .cta-banner .cta-buttons .btn { width: 100%; max-width: 340px; }
  .hero-stat-item { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .hero-stat-item:last-child { border-bottom: none; }
}

/* ================================================
   ANIMATIONS
   ================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ================================================
   UTILITIES
   ================================================ */
.text-center  { text-align: center; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-blue    { color: var(--blue); }
.text-gray    { color: var(--gray); }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
