/* ── Safyra Global Styles — White Theme ───────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Great+Vibes&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --red:    #D62B2B;
  --yellow: #E09600;
  --blue:   #2B7FC1;
  --green:  #3DAA4E;
  --dark:   #1A1A2E;
  --dark2:  #2D2D2D;
  --white:  #FFFFFF;
  --off-white: #F7F8FA;
  --light:  #EEF1F6;
  --gray:   #6B7280;
  --gray-light: #E5E7EB;
  --text:   #111827;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-light);
  padding: 0 2rem;
  height: 70px;
  display: flex; align-items: center; justify-content: space-between;
}

.nav-logo { display: flex; align-items: center; gap: 0.6rem; text-decoration: none; }
.nav-logo img { height: 48px; display: block; }
.nav-logo-text {
  font-family: 'Bickham Script Pro', 'Bickham Script One', 'Great Vibes', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--dark);
  letter-spacing: 0.02em;
  line-height: 1;
}
.nav-logo-text strong {
  font-weight: 400;
  text-transform: uppercase;
}

.nav-links {
  display: flex; gap: 2rem; list-style: none; align-items: center;
}
.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--dark); }

.nav-cta {
  background: var(--dark) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 5px;
  font-weight: 600 !important;
  transition: opacity 0.2s !important;
}
.nav-cta:hover { opacity: 0.85; color: var(--white) !important; }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--dark); border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 8rem 2rem 4rem;
  position: relative; overflow: hidden;
  background: var(--off-white);
}

.hero-bg {
  position: absolute; inset: 0; z-index: 0; overflow: hidden;
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.1;
}
.hero-orb-1 { width: 500px; height: 500px; background: var(--red);    top: -120px; right: -80px; }
.hero-orb-2 { width: 400px; height: 400px; background: var(--blue);   bottom: -100px; left: -60px; }
.hero-orb-3 { width: 300px; height: 300px; background: var(--yellow); top: 60%; right: 15%; }
.hero-orb-4 { width: 250px; height: 250px; background: var(--green);  top: 20%; left: 10%; }

.hero-content { position: relative; z-index: 1; max-width: 820px; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--dark);
  margin-bottom: 1.5rem;
  background: rgba(26,26,46,0.07);
  padding: 0.3rem 1rem; border-radius: 20px;
  border: 1px solid rgba(26,26,46,0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600; line-height: 1.1;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.hero h1 em { font-style: italic; color: var(--red); }

.hero-sub {
  font-size: 1.1rem; color: var(--gray);
  max-width: 580px; margin: 0 auto 2.5rem; line-height: 1.8;
}

.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--dark); color: var(--white);
  padding: 0.85rem 2rem; border-radius: 5px;
  font-weight: 600; font-size: 0.95rem; text-decoration: none;
  transition: opacity 0.2s, transform 0.2s; display: inline-block;
}
.btn-primary:hover { opacity: 0.85; transform: translateY(-1px); }

.btn-outline {
  border: 1.5px solid var(--dark); color: var(--dark);
  padding: 0.85rem 2rem; border-radius: 5px;
  font-weight: 500; font-size: 0.95rem; text-decoration: none;
  transition: background 0.2s; display: inline-block;
}
.btn-outline:hover { background: rgba(26,26,46,0.06); }

/* ── SECTIONS ─────────────────────────────────────────────── */
.section { padding: 6rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-light   { background: var(--off-white); }
.section-darker  { background: var(--light); }
.section-white   { background: var(--white); }

.section-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--dark);
  margin-bottom: 0.75rem; display: block;
  opacity: 0.5;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600; line-height: 1.2;
  color: var(--text); margin-bottom: 1rem;
}

.section-sub {
  color: var(--gray); font-size: 1rem;
  max-width: 560px; line-height: 1.8;
}

/* ── STAT ROW ─────────────────────────────────────────────── */
.stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; margin-top: 4rem;
}
.stat-card {
  text-align: center; padding: 2rem;
  border: 1px solid var(--gray-light);
  border-radius: 12px; background: var(--white);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 3.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.5rem;
}
.stat-label { font-size: 0.9rem; color: var(--gray); }

/* ── OFFERINGS GRID ───────────────────────────────────────── */
.offerings-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.offering-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  border: 1.5px solid var(--gray-light);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  text-decoration: none; color: inherit; display: block;
}
.offering-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.08); }
.offering-card:hover.red-card    { border-color: var(--red); }
.offering-card:hover.yellow-card { border-color: var(--yellow); }
.offering-card:hover.blue-card   { border-color: var(--blue); }
.offering-card:hover.green-card  { border-color: var(--green); }

.offering-icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 1.25rem;
}
.red-icon    { background: rgba(214,43,43,0.1);   color: var(--red); }
.yellow-icon { background: rgba(224,150,0,0.12);  color: var(--yellow); }
.blue-icon   { background: rgba(43,127,193,0.1);  color: var(--blue); }
.green-icon  { background: rgba(61,170,78,0.1);   color: var(--green); }

.offering-name {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 600; margin-bottom: 0.25rem;
}
.red-card .offering-name    { color: var(--red); }
.yellow-card .offering-name { color: var(--yellow); }
.blue-card .offering-name   { color: var(--blue); }
.green-card .offering-name  { color: var(--green); }

.offering-sub { font-size: 0.8rem; color: var(--gray); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
.offering-desc { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }
.offering-link { display: inline-block; margin-top: 1rem; font-size: 0.85rem; font-weight: 600; text-decoration: none; }
.red-card .offering-link    { color: var(--red); }
.yellow-card .offering-link { color: var(--yellow); }
.blue-card .offering-link   { color: var(--blue); }
.green-card .offering-link  { color: var(--green); }

/* ── DIFFERENTIATORS ──────────────────────────────────────── */
.diff-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.diff-card {
  background: var(--white); border: 1.5px solid var(--gray-light);
  border-radius: 14px; padding: 2rem;
}
.diff-num {
  font-family: var(--font-display);
  font-size: 3rem; font-weight: 700; line-height: 1; opacity: 0.15;
  margin-bottom: 0.75rem; color: var(--dark);
}
.diff-title { font-size: 1.05rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text); }
.diff-body  { font-size: 0.95rem; color: var(--gray); line-height: 1.7; }

/* ── HOW WE WORK ──────────────────────────────────────────── */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.step-card {
  background: var(--white); border-radius: 12px; padding: 1.75rem;
  border: 1.5px solid var(--gray-light);
}
.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem; font-weight: 700; line-height: 1; margin-bottom: 0.75rem;
}
.step-title { font-size: 1rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--text); }
.step-body  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── PILLAR CARDS ─────────────────────────────────────────── */
.pillars-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-top: 3.5rem;
}
.pillar-card {
  background: var(--white); border-radius: 14px; padding: 2rem;
  border: 1.5px solid var(--gray-light); text-align: center;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 700; margin-bottom: 0.5rem; line-height: 1;
}
.pillar-title { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.75rem; color: var(--text); }
.pillar-body  { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ── CONTACT FORM ─────────────────────────────────────────── */
.contact-wrap {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: start;
}
.contact-info h2 { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; margin-bottom: 1rem; color: var(--text); }
.contact-info p  { color: var(--gray); line-height: 1.8; margin-bottom: 2rem; }
.contact-detail  { display: flex; flex-direction: column; gap: 1rem; }
.contact-item    { display: flex; align-items: center; gap: 0.85rem; font-size: 0.95rem; }
.contact-item-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1rem; flex-shrink: 0; }
.contact-item a  { color: var(--text); text-decoration: none; }
.contact-item a:hover { color: var(--red); }

.contact-form { background: var(--off-white); border-radius: 16px; padding: 2.5rem; border: 1.5px solid var(--gray-light); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gray); margin-bottom: 0.5rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 8px; padding: 0.8rem 1rem;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  width: 100%; background: var(--dark); color: var(--white);
  border: none; padding: 1rem; border-radius: 8px;
  font-family: var(--font-body); font-size: 1rem; font-weight: 700;
  cursor: pointer; transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.85; transform: translateY(-1px); }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success .checkmark { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 0.5rem; color: var(--text); }
.form-success p  { color: var(--gray); }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: var(--dark); padding: 6rem 2rem; text-align: center;
}
.cta-banner .section-title { color: var(--white); }
.cta-banner .section-sub   { color: rgba(255,255,255,0.6); margin: 1rem auto 2.5rem; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer {
  background: var(--dark); border-top: 1px solid rgba(255,255,255,0.08);
  padding: 3rem 2rem;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo img { height: 40px; }
.footer-links { display: flex; gap: 1.5rem; list-style: none; }
.footer-links a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.875rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-copy { color: rgba(255,255,255,0.25); font-size: 0.8rem; width: 100%; text-align: center; margin-top: 1rem; }

/* ── PAGE HERO (inner pages) ──────────────────────────────── */
.page-hero {
  padding: 10rem 2rem 5rem; text-align: center;
  background: var(--off-white);
  position: relative; overflow: hidden;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 600; line-height: 1.2;
  color: var(--text); margin-bottom: 1rem;
}
.page-hero p { color: var(--gray); font-size: 1.05rem; line-height: 1.8; }

.hero-eyebrow {
  display: inline-block;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  padding: 0.3rem 1rem; border-radius: 20px;
}

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; left: 0; right: 0; background: var(--white); padding: 1.5rem 2rem; gap: 1.25rem; border-bottom: 1px solid var(--gray-light); }
  .nav-links.open { display: flex; }
  .nav-hamburger { display: flex; }
  .offerings-grid, .diff-grid, .steps-grid, .pillars-row { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .form-row { grid-template-columns: 1fr; }
}
