/* Bhasha Help — Manual English ↔ Hindi Translation */

:root {
  --bg: #f8f6f2;
  --bg-card: #fffefb;
  --text: #1c1a17;
  --text-muted: #5c564c;
  --accent: #0d5c4a;
  --accent-light: #e8f2ef;
  --accent-hover: #094736;
  --border: #e5e1da;
  --radius: 12px;
  --radius-lg: 20px;
  --font-sans: 'Outfit', system-ui, sans-serif;
  --font-devanagari: 'Noto Sans Devanagari', var(--font-sans);
  --shadow: 0 4px 20px rgba(13, 92, 74, 0.08);
  --transition: 0.2s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 242, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-text {
  letter-spacing: -0.02em;
}

.logo-hindi {
  font-family: var(--font-devanagari);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 1.75rem;
}

.nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.nav a:hover {
  color: var(--accent);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

/* Hero */
.hero {
  position: relative;
  padding: 4rem 0 5rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent-light) 0%, transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.hero-content {
  min-width: 0;
}

.hero-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
}

.hero-title-accent {
  color: var(--accent);
  font-weight: 600;
}

.hero-subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 32ch;
  margin: 0 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), transform 0.15s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary {
  background: var(--bg-card);
  color: var(--accent);
  border: 2px solid var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-light);
}

/* Sections */
.section {
  padding: 3.5rem 0;
}

.section-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 0.5rem;
}

.section-subtitle {
  color: var(--text-muted);
  margin: 0 0 2rem;
}

/* Services */
.services {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-light);
  color: var(--accent);
  font-weight: 700;
  font-size: 0.9rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.service-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.service-card p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

.service-note {
  padding: 1rem 1.25rem;
  background: var(--accent-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--accent);
}

.service-note p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--text);
}

/* Pricing */
.pricing {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.pricing-card {
  max-width: 480px;
  padding: 1.75rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}

.pricing-rate {
  font-size: 1.5rem;
  color: var(--accent);
  margin: 0 0 0.75rem;
}

.pricing-rate strong {
  font-weight: 700;
}

.pricing-detail {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Summary for assistants / AI discoverability */
.summary-for-assistants {
  background: var(--accent-light);
  border-top: 1px solid var(--border);
}

.summary-block {
  max-width: 640px;
}

.summary-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 0 0 0.75rem;
}

.summary-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text);
}

.summary-text a {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.summary-text a:hover {
  text-decoration: underline;
}

/* How it works */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.1rem;
  border-radius: 50%;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.step p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.95rem;
}

/* Why us */
.why-us {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
}

.why-us-inner {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.why-us-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.why-us-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.why-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.why-list li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-muted);
}

.why-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
}

.why-list strong {
  color: var(--text);
}

/* Contact */
.contact-form {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-form label {
  font-weight: 500;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  color: var(--text);
  transition: border-color var(--transition);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  margin-top: 0.5rem;
  width: fit-content;
}

.contact-email-note {
  margin: 1.5rem 0 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-email-link {
  color: var(--accent);
  font-weight: 500;
  text-decoration: none;
}

.contact-email-link:hover {
  text-decoration: underline;
}

/* Footer */
.footer {
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-brand {
  font-weight: 600;
  color: var(--text);
}

.footer-brand [lang="hi"] {
  font-family: var(--font-devanagari);
  color: var(--accent);
}

.footer-email {
  margin: 0.25rem 0 0;
}

.footer-email a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}

.footer-email a:hover {
  text-decoration: underline;
}

.footer-copy {
  margin: 0.5rem 0 0;
  opacity: 0.8;
}

/* Tablet: stack hero and why-us */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 1rem 1.25rem;
    gap: 0.5rem;
  }

  .nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    padding: 3rem 0 4rem;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .hero-image-wrap {
    order: -1;
    max-width: 320px;
    margin: 0 auto;
  }

  .why-us-inner {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .why-us-image-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .section {
    padding: 2.5rem 0;
  }

  .contact-form .btn {
    width: 100%;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-primary:hover {
    transform: none;
  }
}
