/* ===== RelationshipVision Global Styles ===== */
:root {
  --primary: #045384;
  --primary-light: #0A6FA8;
  --primary-dark: #033A5C;
  --accent: #C0872E;
  --accent-light: #D4A54A;
  --warm: #FFF9F0;
  --warm-mid: #F5EDE0;
  --text: #2D2D2D;
  --text-light: #5A5A5A;
  --text-muted: #8A8A8A;
  --bg: #FFFFFF;
  --card-bg: #FFFFFF;
  --border: #E8E0D4;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 24px rgba(0,0,0,0.08);
}

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

body {
  font-family: 'Source Serif 4', 'Georgia', serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Georgia', serif;
  line-height: 1.3;
  font-weight: 700;
  color: var(--primary);
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.3rem; }
p { margin-bottom: 1rem; }

a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--accent); }

.container { max-width: 1060px; margin: 0 auto; padding: 0 24px; }

/* ===== Navigation ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
}

.nav-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--primary);
}

.logo span { color: var(--accent); font-weight: 400; }

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.2s;
  letter-spacing: 0.2px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 6px 0;
  transition: 0.3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.25s;
  text-decoration: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 14px rgba(4,83,132,0.25);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(4,83,132,0.35);
}

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 14px rgba(192,135,46,0.25);
}

.btn-accent:hover {
  background: #A8741F;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ===== Hero ===== */
.hero {
  padding: 80px 0 60px;
  text-align: center;
  background: linear-gradient(160deg, var(--warm) 0%, #E8EEF4 100%);
}

.hero h1 { margin-bottom: 20px; color: var(--primary); }

.hero .tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto 28px;
  line-height: 1.8;
}

.hero .btn-group {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ===== Sections ===== */
.section { padding: 70px 0; }
.section-alt { background: var(--warm); }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 44px;
}

.section-header .label {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 20px;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: #D6E6F2;
  color: var(--primary);
  margin-bottom: 14px;
}

.section-header p { color: var(--text-light); font-size: 1.05rem; }

/* ===== Cards ===== */
.card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

/* ===== Service Cards ===== */
.service-card .service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: #D6E6F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.93rem; color: var(--text-light); }

/* ===== Two Column Layout ===== */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }

/* ===== Quote Block ===== */
.quote-block {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  margin: 32px 0;
}

.quote-block blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.6;
}

.quote-block blockquote span {
  color: var(--accent-light);
}

.quote-block cite {
  font-family: 'Inter', sans-serif;
  font-style: normal;
  opacity: 0.8;
  font-size: 0.9rem;
}

/* ===== Bullet Lists ===== */
.check-list {
  list-style: none;
  padding: 0;
}

.check-list li {
  padding: 8px 0 8px 32px;
  position: relative;
  font-size: 1rem;
}

.check-list li::before {
  content: '~';
  position: absolute;
  left: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* ===== Article Cards ===== */
.article-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.article-card .article-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--warm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.article-card .article-img {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  object-fit: cover;
}

.article-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.article-card p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }

/* ===== Book Section ===== */
.book-cover {
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 8px 8px 24px rgba(0,0,0,0.15);
}

.value-wins li {
  padding: 6px 0;
  font-size: 0.95rem;
}

/* ===== Contact Form ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 1rem;
  color: var(--text);
  background: white;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(4,83,132,0.1);
}

.form-group textarea { min-height: 140px; resize: vertical; }

/* ===== Contact Info ===== */
.contact-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.contact-info-item:last-child { border-bottom: none; }

.contact-info-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #D6E6F2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-item strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

/* ===== CTA Banner ===== */
.cta-banner {
  text-align: center;
  padding: 56px 24px;
  background: linear-gradient(135deg, #E8EEF4 0%, var(--warm) 100%);
  border-radius: var(--radius-lg);
}

.cta-banner h2 { margin-bottom: 14px; }
.cta-banner p { color: var(--text-light); margin-bottom: 24px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* ===== Footer ===== */
footer {
  padding: 36px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: var(--warm);
}

.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 14px;
}

.footer-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  color: var(--text-light);
}

footer p {
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Dharma ===== */
.dharma {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--primary);
  text-align: center;
  padding: 24px;
  border-left: 3px solid var(--accent);
  background: var(--warm);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 24px 0;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .two-col.reverse { direction: ltr; }

  .card-grid { grid-template-columns: 1fr; }

  nav .nav-links { display: none; }
  .hamburger { display: block; }

  nav .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    gap: 18px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
  }

  .hero { padding: 50px 0 40px; }
  .section { padding: 44px 0; }
  .quote-block { padding: 28px 20px; }
  .quote-block blockquote { font-size: 1.1rem; }
  .book-cover { max-width: 240px; margin: 0 auto; display: block; }
}
