/* PurposeCrowd — Main Stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Georgia:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --pc-navy:     #1e3a5f;
  --pc-navy-mid: #2d5189;
  --pc-navy-lt:  #3a6899;
  --pc-gold:     #c9954c;
  --pc-gold-lt:  #f5e6d0;
  --pc-white:    #ffffff;
  --pc-bg:       #f4f6f9;
  --pc-border:   #dde3ec;
  --pc-text:     #1a2535;
  --pc-muted:    #5a6a7e;
}

* { box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--pc-text); margin: 0; }
h1,h2,h3,h4,h5,h6 { font-family: 'Georgia', serif; }

/* ── Navbar ──────────────────────────────────────────────── */
.pc-navbar {
  background: var(--pc-navy);
  padding: 10px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,.25);
  z-index: 1000;
}
.pc-navbar .navbar-brand img { transition: opacity .15s; }
.pc-navbar .navbar-brand:hover img { opacity: .88; }
.pc-navbar .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.pc-navbar .nav-link {
  color: rgba(255,255,255,.82);
  font-size: .88rem;
  font-weight: 500;
  padding: .4rem .85rem;
  border-radius: 6px;
  transition: all .15s;
}
.pc-navbar .nav-link:hover { color: #fff; background: rgba(255,255,255,.1); }
.pc-navbar .nav-link.active { color: #fff; font-weight: 700; }

/* Buttons */
.pc-btn-gold     { background: var(--pc-gold);  border-color: var(--pc-gold);  color: #fff; font-weight: 600; }
.pc-btn-gold:hover { background: #b8843b; border-color: #b8843b; color: #fff; }
.pc-btn-navy     { background: var(--pc-navy);  border-color: var(--pc-navy);  color: #fff; font-weight: 600; }
.pc-btn-navy:hover { background: var(--pc-navy-mid); border-color: var(--pc-navy-mid); color: #fff; }
.pc-btn-outline-white { border: 2px solid rgba(255,255,255,.7); color: #fff; background: transparent; font-weight: 600; }
.pc-btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: #fff; color: #fff; }

/* ── Hero ────────────────────────────────────────────────── */
.pc-hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0f2040 60%, #1a3560 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.pc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.pc-hero-eyebrow {
  display: inline-block;
  background: var(--pc-gold);
  color: var(--pc-navy);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .35rem 1.1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}
.pc-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.18;
  margin-bottom: 1.25rem;
}
.pc-hero h1 .gold { color: var(--pc-gold); }
.pc-hero .lead {
  font-size: 1.15rem;
  color: rgba(255,255,255,.82);
  max-width: 600px;
  line-height: 1.7;
}
.pc-hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}
.pc-hero-stat { text-align: center; }
.pc-hero-stat .num { font-size: 2rem; font-weight: 700; color: var(--pc-gold); font-family: 'Georgia', serif; line-height: 1; }
.pc-hero-stat .lbl { font-size: .75rem; color: rgba(255,255,255,.65); margin-top: .2rem; }

/* Hero right panel */
.pc-hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 2rem;
  backdrop-filter: blur(8px);
}
.pc-hero-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.pc-hero-pillar:last-child { border-bottom: none; }
.pc-hero-pillar .icon {
  width: 42px;
  height: 42px;
  background: var(--pc-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
  color: var(--pc-navy);
}
.pc-hero-pillar .text-white-50 { font-size: .82rem; }

/* ── Section Styles ──────────────────────────────────────── */
.pc-section { padding: 80px 0; }
.pc-section-alt { background: var(--pc-bg); }
.pc-eyebrow {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--pc-gold);
  margin-bottom: .5rem;
}
.pc-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--pc-navy);
  margin-bottom: 1rem;
}
.pc-section-sub {
  font-size: 1.05rem;
  color: var(--pc-muted);
  max-width: 620px;
  line-height: 1.7;
}

/* ── Service Cards ───────────────────────────────────────── */
.pc-service-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  transition: all .2s;
  border-top: 4px solid var(--pc-gold);
}
.pc-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(30,58,95,.12);
}
.pc-service-icon {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, var(--pc-navy), var(--pc-navy-mid));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.pc-service-card h4 { color: var(--pc-navy); font-size: 1.1rem; margin-bottom: .75rem; }
.pc-service-card p { color: var(--pc-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── Why Us Pillars ──────────────────────────────────────── */
.pc-pillar {
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--pc-border);
  height: 100%;
  transition: all .2s;
}
.pc-pillar:hover { box-shadow: 0 8px 30px rgba(30,58,95,.1); transform: translateY(-3px); }
.pc-pillar-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--pc-navy), var(--pc-navy-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.8rem;
  margin: 0 auto 1.25rem;
}
.pc-pillar h4 { color: var(--pc-navy); font-size: 1.2rem; margin-bottom: .75rem; }
.pc-pillar p  { color: var(--pc-muted); font-size: .9rem; line-height: 1.7; margin: 0; }

/* ── About / Founder ─────────────────────────────────────── */
.pc-about-badge {
  background: var(--pc-gold);
  color: var(--pc-navy);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  display: inline-block;
}
.pc-about-badge .num { font-size: 2.8rem; font-weight: 700; font-family: 'Georgia', serif; line-height: 1; }
.pc-about-badge .lbl { font-size: .8rem; font-weight: 600; }
.pc-check-list { list-style: none; padding: 0; margin: 0; }
.pc-check-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 0;
  font-size: .95rem;
  color: var(--pc-text);
  border-bottom: 1px solid var(--pc-border);
}
.pc-check-list li:last-child { border-bottom: none; }
.pc-check-list li i { color: var(--pc-gold); font-size: 1.05rem; flex-shrink: 0; }

/* ── ProjectDNA Feature Section ──────────────────────────── */
.pc-dna-section {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0f2040 100%);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.pc-dna-section::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,149,76,.15) 0%, transparent 70%);
}
.pc-dna-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(201,149,76,.18);
  border: 1px solid rgba(201,149,76,.35);
  color: var(--pc-gold);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}
.pc-dna-stat {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.1rem 1.25rem;
  text-align: center;
}
.pc-dna-stat .num { font-size: 1.8rem; font-weight: 700; color: var(--pc-gold); font-family: 'Georgia', serif; line-height: 1; }
.pc-dna-stat .lbl { font-size: .72rem; color: rgba(255,255,255,.6); margin-top: .25rem; }
.pc-dna-feature {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: .85rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.88);
  font-size: .9rem;
}
.pc-dna-feature:last-child { border-bottom: none; }
.pc-dna-feature i { color: var(--pc-gold); font-size: 1.1rem; flex-shrink: 0; margin-top: .1rem; }

/* ── Testimonials ────────────────────────────────────────── */
.pc-testi-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  padding: 2rem;
  height: 100%;
  position: relative;
}
.pc-testi-card::before {
  content: '\201C';
  position: absolute;
  top: .5rem; left: 1.25rem;
  font-size: 5rem;
  color: var(--pc-gold);
  opacity: .18;
  font-family: Georgia, serif;
  line-height: 1;
}
.pc-testi-card p { font-style: italic; color: var(--pc-text); font-size: .92rem; line-height: 1.75; margin-bottom: 1.25rem; }
.pc-testi-card .name { font-weight: 700; color: var(--pc-navy); font-size: .9rem; }
.pc-testi-card .title { color: var(--pc-muted); font-size: .8rem; }
.pc-stars { color: var(--pc-gold); font-size: .88rem; margin-bottom: .5rem; }

/* ── CTA Banner ──────────────────────────────────────────── */
.pc-cta-section {
  background: var(--pc-gold);
  padding: 70px 0;
}

/* ── Contact Page ────────────────────────────────────────── */
.pc-form-label { font-size: .85rem; font-weight: 600; color: var(--pc-navy); margin-bottom: .3rem; }
.pc-form-control {
  border: 1px solid var(--pc-border);
  border-radius: 8px;
  padding: .65rem 1rem;
  font-size: .92rem;
  transition: border-color .15s, box-shadow .15s;
}
.pc-form-control:focus {
  border-color: var(--pc-gold);
  box-shadow: 0 0 0 3px rgba(201,149,76,.15);
  outline: none;
}
.pc-contact-info-card {
  background: var(--pc-navy);
  border-radius: 14px;
  padding: 2rem;
  color: #fff;
  height: 100%;
}
.pc-contact-info-card h3 { color: #fff; }
.pc-contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.pc-contact-item .ci-icon {
  width: 42px; height: 42px;
  background: rgba(255,255,255,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--pc-gold);
  font-size: 1.15rem;
  flex-shrink: 0;
}

/* ── ProjectDNA Page ─────────────────────────────────────── */
.pc-dna-page-hero {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0f2040 100%);
  padding: 90px 0 70px;
}
.pc-layer-card {
  background: #fff;
  border: 1px solid var(--pc-border);
  border-radius: 12px;
  border-top: 4px solid var(--pc-gold);
  padding: 2rem;
  height: 100%;
}
.pc-layer-num {
  width: 36px; height: 36px;
  background: var(--pc-gold);
  color: var(--pc-navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  margin-bottom: 1rem;
}
.pc-vs-chip {
  display: inline-block;
  background: var(--pc-bg);
  border: 1px solid var(--pc-border);
  border-radius: 6px;
  padding: .3rem .7rem;
  font-size: .78rem;
  color: var(--pc-navy);
  font-weight: 500;
  margin: .2rem;
}
.pc-ai-feature {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  padding: 1.25rem;
}
.pc-ai-feature h5 { color: #fff; font-size: .95rem; margin-bottom: .4rem; }
.pc-ai-feature p  { color: rgba(255,255,255,.7); font-size: .84rem; margin: 0; }

/* ── Footer ──────────────────────────────────────────────── */
.pc-footer { background: var(--pc-navy); }
.footer-links { margin: 0; padding: 0; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { color: rgba(255,255,255,.55); font-size: .85rem; text-decoration: none; transition: color .15s; }
.footer-links a:hover { color: var(--pc-gold); }
.pc-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  font-size: 1rem;
  text-decoration: none;
  transition: all .15s;
}
.pc-social-link:hover { background: var(--pc-gold); color: #fff; }
.pc-footer-dna-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  transition: all .15s;
}
.pc-footer-dna-card:hover { background: rgba(255,255,255,.1); border-color: var(--pc-gold); }

/* ── Page Header ─────────────────────────────────────────── */
.pc-page-hero {
  background: linear-gradient(135deg, var(--pc-navy) 0%, #0f2040 100%);
  padding: 70px 0 60px;
  text-align: center;
}
.pc-page-hero h1 { color: #fff; margin-bottom: .75rem; }
.pc-page-hero p { color: rgba(255,255,255,.75); font-size: 1.1rem; max-width: 580px; margin: 0 auto; }

/* ── Alert / Messages ────────────────────────────────────── */
.alert-success-pc {
  background: #d7eee3;
  border: 1px solid #b2ddc5;
  color: #1a5c42;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}
.alert-error-pc {
  background: #fde8e8;
  border: 1px solid #f5c2c2;
  color: #7a1a1a;
  border-radius: 8px;
  padding: 1rem 1.25rem;
}

/* ── Utilities ───────────────────────────────────────────── */
.text-gold { color: var(--pc-gold) !important; }
.text-navy { color: var(--pc-navy) !important; }
.bg-navy   { background: var(--pc-navy) !important; }
.fw-600    { font-weight: 600; }

@media (max-width: 991px) {
  .pc-hero { min-height: auto; padding: 80px 0 60px; }
  .pc-navbar .navbar-collapse { padding: 1rem 0; }
  .pc-navbar .nav-link { padding: .5rem 1rem; }
}
