/* ============================================================
   PERAZA CONSULTING — Shared Stylesheet
   perazaconsulting.com
   ============================================================ */

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

/* CSS Variables */
:root {
  --navy: #1F3A5F;
  --blue: #2563EB;
  --blue-light: #EFF6FF;
  --blue-mid: #BFDBFE;
  --finance-gold: #D97706;
  --finance-light: #FFFBEB;
  --finance-mid: #FDE68A;
  --ai-purple: #7C3AED;
  --ai-light: #F5F3FF;
  --ai-mid: #DDD6FE;
  --notary-teal: #0D9488;
  --notary-light: #F0FDFA;
  --notary-mid: #99F6E4;
  --text-primary: #0F172A;
  --text-secondary: #64748B;
  --text-muted: #94A3B8;
  --surface: #F8FAFC;
  --border: #E2E8F0;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 12px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 4px 8px rgba(0,0,0,0.06);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; color: var(--text-primary); background: var(--white); line-height: 1.7; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 19px; font-weight: 600; color: var(--navy);
  letter-spacing: -0.3px;
}
.nav-logo span { color: var(--blue); }
.nav-logo-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--navy));
}
.nav-center { display: flex; align-items: center; gap: 2rem; }
.nav-center a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; padding: 4px 0;
  border-bottom: 2px solid transparent;
}
.nav-center a:hover { color: var(--navy); border-bottom-color: var(--blue); }
.nav-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--text-secondary); font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 20px; cursor: pointer;
  transition: all 0.2s; font-family: 'Inter', sans-serif;
  display: flex; align-items: center; gap: 6px;
}
.lang-toggle:hover { background: var(--border); color: var(--text-primary); }
.btn-nav {
  background: var(--blue); color: var(--white);
  font-size: 13px; font-weight: 500;
  padding: 8px 20px; border-radius: 20px;
  border: none; cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s; box-shadow: 0 2px 8px rgba(37,99,235,0.3);
}
.btn-nav:hover { background: #1D4ED8; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(37,99,235,0.35); }

/* ============================================================
   HERO — HOME
   ============================================================ */
.hero-home {
  background: linear-gradient(135deg, #0F172A 0%, #1F3A5F 50%, #1e4a8a 100%);
  padding: 5rem 5% 4rem;
  display: grid; grid-template-columns: 1fr auto;
  gap: 4rem; align-items: center;
  position: relative; overflow: hidden;
}
.hero-home::before {
  content: ''; position: absolute;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -200px; right: 100px; pointer-events: none;
}
.hero-home::after {
  content: ''; position: absolute;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
  bottom: -100px; left: 10%; pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: #93C5FD; font-size: 13px; font-weight: 500;
  padding: 6px 16px; border-radius: 20px; margin-bottom: 1.5rem;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: #60A5FA; flex-shrink: 0;
}
.hero-home h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500; color: var(--white);
  line-height: 1.25; margin-bottom: 1.25rem;
  letter-spacing: -0.5px; max-width: 580px;
}
.hero-home h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #60A5FA, #A78BFA);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-home p {
  font-size: 16px; color: #CBD5E1; max-width: 480px;
  line-height: 1.75; margin-bottom: 2rem;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.btn-primary {
  background: var(--blue); color: var(--white);
  font-size: 15px; font-weight: 500; padding: 12px 28px;
  border-radius: 24px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 15px rgba(37,99,235,0.4);
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: #1D4ED8; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,99,235,0.45); }
.btn-secondary {
  background: transparent; color: var(--white);
  font-size: 15px; font-weight: 500; padding: 12px 28px;
  border-radius: 24px; border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer; font-family: 'Inter', sans-serif;
  transition: all 0.2s;
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); }
.hero-photo-wrap {
  position: relative; z-index: 1;
}
.hero-photo {
  width: 220px; height: 220px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  object-fit: cover; background: #1F3A5F;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-photo-placeholder {
  width: 220px; height: 220px; border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.2);
  background: linear-gradient(135deg, #1e3a5f, #2563EB);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: rgba(255,255,255,0.6);
  font-size: 13px; text-align: center; gap: 8px;
}
.hero-photo-ring {
  position: absolute; top: -12px; left: -12px;
  width: 244px; height: 244px; border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.15);
}
.hero-stats {
  display: flex; gap: 2rem; margin-top: 2.5rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat { text-align: left; }
.hero-stat-num { font-size: 24px; font-weight: 600; color: var(--white); }
.hero-stat-label { font-size: 12px; color: #94A3B8; margin-top: 2px; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section { padding: 5rem 5%; background: var(--surface); }
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 0.75rem;
}
.section-header h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 3vw, 32px); font-weight: 500;
  color: var(--text-primary); margin-bottom: 0.75rem;
}
.section-header p { font-size: 16px; color: var(--text-secondary); max-width: 520px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2rem;
  transition: all 0.25s; position: relative; overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 4px; border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}
.service-card.finance::before { background: linear-gradient(90deg, var(--finance-gold), #FBBF24); }
.service-card.ai::before { background: linear-gradient(90deg, var(--ai-purple), #A78BFA); }
.service-card.notary::before { background: linear-gradient(90deg, var(--notary-teal), #2DD4BF); }
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-icon-wrap {
  width: 64px; height: 64px; border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem; position: relative;
}
.service-icon-wrap.finance { background: var(--finance-light); }
.service-icon-wrap.ai { background: var(--ai-light); }
.service-icon-wrap.notary { background: var(--notary-light); }
.service-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 0.75rem; color: var(--text-primary); }
.service-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 1.5rem; }
.service-features { list-style: none; margin-bottom: 1.75rem; }
.service-features li {
  font-size: 13px; color: var(--text-secondary);
  padding: 4px 0; display: flex; align-items: center; gap: 8px;
}
.service-features li::before {
  content: '✓'; font-weight: 600; font-size: 12px; flex-shrink: 0;
}
.service-card.finance .service-features li::before { color: var(--finance-gold); }
.service-card.ai .service-features li::before { color: var(--ai-purple); }
.service-card.notary .service-features li::before { color: var(--notary-teal); }
.service-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 600; padding: 10px 20px;
  border-radius: 20px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif; transition: all 0.2s;
  text-decoration: none;
}
.service-card.finance .service-cta { background: var(--finance-light); color: var(--finance-gold); }
.service-card.ai .service-cta { background: var(--ai-light); color: var(--ai-purple); }
.service-card.notary .service-cta { background: var(--notary-light); color: var(--notary-teal); }
.service-cta:hover { filter: brightness(0.95); transform: translateX(3px); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  padding: 5rem 5%; display: grid;
  grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; max-width: 420px; border-radius: var(--radius-xl);
  object-fit: cover; box-shadow: var(--shadow-lg);
  background: var(--surface);
}
.about-img-placeholder {
  width: 100%; max-width: 420px; height: 360px;
  border-radius: var(--radius-xl); background: linear-gradient(135deg, var(--blue-light), #DBEAFE);
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; color: var(--text-secondary); font-size: 14px;
  border: 2px dashed var(--blue-mid); gap: 12px;
}
.about-card {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.25rem; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.about-card-num { font-size: 28px; font-weight: 600; color: var(--navy); }
.about-card-label { font-size: 12px; color: var(--text-muted); }
.about-eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--blue); margin-bottom: 0.75rem;
}
.about-text h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(22px, 2.5vw, 32px); font-weight: 500;
  color: var(--text-primary); margin-bottom: 1.25rem; line-height: 1.3;
}
.about-text p { font-size: 15px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 1rem; }
.credentials {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 1.75rem;
}
.credential-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 6px 14px;
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
}
.credential-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  background: linear-gradient(135deg, #0F172A, #1F3A5F);
  padding: 5rem 5%; text-align: center; position: relative; overflow: hidden;
}
.contact-section::before {
  content: ''; position: absolute;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.15) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.contact-section h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(24px, 3vw, 36px); font-weight: 500;
  color: var(--white); margin-bottom: 1rem; position: relative;
}
.contact-section p {
  font-size: 16px; color: #94A3B8; max-width: 480px;
  margin: 0 auto 2.5rem; position: relative;
}
.contact-methods {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 1.5rem; margin-bottom: 2.5rem; position: relative;
}
.contact-method {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px; padding: 12px 20px;
  color: #E2E8F0; font-size: 14px; transition: all 0.2s;
  text-decoration: none;
}
.contact-method:hover { background: rgba(255,255,255,0.14); transform: translateY(-2px); }
.contact-method svg { flex-shrink: 0; }
.btn-calendly-large {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white); color: var(--navy);
  font-size: 16px; font-weight: 600; padding: 14px 36px;
  border-radius: 28px; border: none; cursor: pointer;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: all 0.2s; position: relative;
}
.btn-calendly-large:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.25); }
.free-badge {
  background: #DCFCE7; color: #166534;
  font-size: 11px; font-weight: 600; padding: 3px 8px;
  border-radius: 10px; text-transform: uppercase; letter-spacing: 0.04em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 2.5rem 5%;
}
.footer-inner {
  display: flex; justify-content: space-between;
  align-items: flex-start; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.footer-logo span { color: var(--blue); }
.footer p { font-size: 12px; color: var(--text-muted); }
.disclaimer {
  font-size: 11px; color: var(--text-muted); line-height: 1.6;
  max-width: 600px; margin-top: 8px; padding-top: 8px;
  border-top: 1px solid var(--border);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { font-size: 13px; color: var(--text-secondary); transition: color 0.2s; }
.footer-links a:hover { color: var(--blue); }

/* ============================================================
   SERVICE PAGE HERO
   ============================================================ */
.service-hero {
  padding: 4rem 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; min-height: 360px;
}
.service-hero.finance { background: linear-gradient(135deg, #FFFBEB, #FEF3C7); }
.service-hero.ai { background: linear-gradient(135deg, #F5F3FF, #EDE9FE); }
.service-hero.notary { background: linear-gradient(135deg, #F0FDFA, #CCFBF1); }
.service-hero-text .eyebrow {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.service-hero.finance .eyebrow { color: var(--finance-gold); }
.service-hero.ai .eyebrow { color: var(--ai-purple); }
.service-hero.notary .eyebrow { color: var(--notary-teal); }
.service-hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(28px, 3.5vw, 42px); font-weight: 500;
  color: var(--text-primary); margin-bottom: 1rem; line-height: 1.25;
}
.service-hero p { font-size: 16px; color: var(--text-secondary); line-height: 1.75; margin-bottom: 2rem; max-width: 480px; }
.service-hero-img {
  width: 100%; max-width: 440px; height: 280px;
  border-radius: var(--radius-xl); object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.service-hero-img-placeholder {
  width: 100%; max-width: 440px; height: 280px;
  border-radius: var(--radius-xl); display: flex;
  flex-direction: column; align-items: center; justify-content: center;
  border: 2px dashed; color: var(--text-muted); gap: 12px; font-size: 13px;
}
.service-hero.finance .service-hero-img-placeholder { background: #FFFBEB; border-color: var(--finance-mid); }
.service-hero.ai .service-hero-img-placeholder { background: #F5F3FF; border-color: var(--ai-mid); }
.service-hero.notary .service-hero-img-placeholder { background: var(--notary-light); border-color: var(--notary-mid); }

/* ============================================================
   SERVICE DETAIL SECTIONS
   ============================================================ */
.service-detail { padding: 4rem 5%; }
.service-detail h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(20px, 2.5vw, 28px); font-weight: 500;
  color: var(--text-primary); margin-bottom: 2rem;
}
.offerings-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 3rem; }
.offering-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.offering-icon {
  width: 44px; height: 44px; border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; font-size: 22px;
}
.offering-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 6px; color: var(--text-primary); }
.offering-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }
.pricing-box {
  background: var(--surface); border-radius: var(--radius-lg);
  border: 1px solid var(--border); padding: 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem; margin-top: 2rem;
}
.pricing-text h3 { font-size: 20px; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.pricing-text p { font-size: 14px; color: var(--text-secondary); }
.pricing-badge {
  background: #DCFCE7; color: #166534;
  font-size: 13px; font-weight: 600; padding: 6px 16px;
  border-radius: 20px; display: inline-block; margin-bottom: 8px;
}
.price { font-size: 36px; font-weight: 600; color: var(--navy); }
.price span { font-size: 16px; color: var(--text-muted); font-weight: 400; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  .hero-home { grid-template-columns: 1fr; }
  .hero-photo-wrap { display: none; }
  .about-section { grid-template-columns: 1fr; }
  .about-card { display: none; }
  .service-hero { grid-template-columns: 1fr; }
  .service-hero-img-placeholder { display: none; }
  .nav-center { display: none; }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; }
}
