/* =========================
   HEADER / NAVIGATION
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-bg);
  border-bottom: 1px solid #e2e8f0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__brand {
  display: flex;
  align-items: center;
}

.nav__logo {
  line-height: 0;
}

.nav__logo img {
  max-height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  transition: opacity 0.2s ease;
}

.nav__logo:hover img {
  opacity: 0.85;
}

.nav__links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

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

.nav__links a:hover {
  color: var(--color-primary);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav__toggle {
  display: none;
}

/* =========================
   LANGUAGE SWITCH
========================= */

.lang-switch {
  display: flex;
  gap: 0.25rem;
}

.lang-switch button {
  padding: 0.4rem 0.6rem;
  border: 1px solid #cbd5e1;
  background: transparent;
  border-radius: 6px;
  cursor: pointer;
}

.lang-switch button.active {
  background: var(--color-primary);
  color: #fff;
}

/* =========================
   BUTTONS
========================= */

.btn {
  padding: 0.6rem 1.1rem;
  font-size: 0.95rem;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

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

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

.btn--large {
  font-size: 1.1rem;
  padding: 1rem 2rem;
  margin-top: 1.5rem;
}

/* =========================
   HERO
========================= */

.hero {
  padding: 5rem 0;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.hero__problem {
  margin-top: 1rem;
  font-size: 1.1rem;
}

.hero__solution {
  margin-top: 1rem;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--color-text);
}

.hero__image img {
  width: 100%;
  max-width: 520px;
  margin-left: auto;
  display: block;
}

/* =========================
   SECTIONS
========================= */

.section {
  padding: 5rem 0;
}

.section--muted {
  background: #f1f5f9;
}

.section__header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 1rem;
}

.section__header h2 {
  font-size: clamp(1.75rem, 3vw, 2.75rem);
  margin-bottom: 1rem;
}

.section__intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  font-size: 1.1rem;
}

/* =========================
   BENEFITS
========================= */

.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.benefit {
  background: #fff;
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid #e2e8f0;
  font-weight: 500;
}

/* =========================
   STEPS
========================= */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 4rem;
}

.step {
  text-align: center;
}

.step__circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__tagline {
  text-align: center;
  margin-top: 3rem;
  font-size: 1.25rem;
  font-weight: 500;
}

/* =========================
   SERVICES – ANALYSIS CARD
========================= */

.analysis-wrapper {
  display: flex;
  justify-content: center;
}

.analysis-card {
  width: 100%;
  max-width: 900px;
  background: #fff;
  border-radius: 16px;
  padding: 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.analysis-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.analysis-row {
  display: grid;
  grid-template-columns: minmax(220px, 30%) 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.analysis-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.analysis-row h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-text);
}

/* ✅ FIXED LIST (NO DOTS, ONLY ✓) */
.analysis-row ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.analysis-row li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
  color: var(--color-muted);
}

.analysis-row li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 600;
}

/* =========================
   ABOUT
========================= */

.about {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  align-items: center;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--color-primary);
}

.stat span {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* =========================
   TEAM
========================= */

.team {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  align-items: center;
}

.team__image img {
  max-width: 320px;
  width: 100%;
  border-radius: 16px;
  margin: 0 auto;
  display: block;
}

.team__role {
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

/* =========================
   CTA
========================= */

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

/* =========================
   FOOTER – NAVBAR STYLE
========================= */

.footer {
  background: var(--color-bg);
  border-top: 1px solid #e2e8f0;
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 24px; /* same as nav */
}

.footer__brand {
  color: var(--color-muted);
  font-weight: 500;
}

.footer__nav {
  display: flex;
  gap: 2rem;
}

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

.footer__nav a:hover {
  color: var(--color-primary);
}


/* ========== CONSULTATION PAGE ========== */

.consultation-hero {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.calendly-wrapper {
  margin-top: 2rem;
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
}

.calendly-wrapper iframe {
  width: 100%;
  height: 650px;
  border: 0;
}

.contact-alt {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-form {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.profile {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  align-items: center;
}

/* =========================
   CONTACT FORM STYLING
========================= */

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: 1px solid #cbd5e1; /* light grey border */
  border-radius: 10px;
  outline: none;
  transition: border 0.2s ease, box-shadow 0.2s ease;
  background-color: #fff;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(27, 54, 93, 0.15); /* subtle primary color glow */
}

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

.contact-form button {
  background: var(--color-primary);
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
}

.contact-form button:hover {
  background: #16314d; /* slightly darker primary */
  transform: translateY(-1px);
}

.contact-form button:active {
  transform: translateY(0);
}

/* Optional: Add a subtle box around the form */
.contact-alt {
  background: #f8fafc;
  padding: 2.5rem 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}


/* THANK YOU PAGE COMPONENTS */

.thankyou-page {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  margin: 0;
  padding: 0;
}

.thankyou-container {
  max-width: var(--container);
  margin: auto;
  padding: 100px 20px;
  text-align: center;
}

.thankyou-container h1 {
  font-size: 2.5rem;
  color: var(--color-primary);
  margin-bottom: 20px;
}

.thankyou-container p {
  font-size: 1.2rem;
  color: var(--color-muted);
  margin-bottom: 30px;
}

.btn-home {
  display: inline-block;
  padding: 12px 30px;
  background-color: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: var(--color-secondary);
}

.thankyou-page .footer {
  margin-top: auto;
  padding: 20px 0;
  background-color: var(--color-primary);
  color: #fff;
  text-align: center;
}


/* THANK YOU OVERLAY */
.thankyou-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 54, 93, 0.85); /* semi-transparent primary color */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.thankyou-box {
  background: #fff;
  color: var(--color-text);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  max-width: 500px;
  width: 90%;
}

.thankyou-box h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: var(--color-primary);
}

.thankyou-box p {
  font-size: 1.1rem;
  color: var(--color-muted);
  margin-bottom: 25px;
}

.thankyou-box #thankyouClose {
  padding: 10px 25px;
  font-weight: bold;
  border-radius: var(--radius);
  background-color: var(--color-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.thankyou-box #thankyouClose:hover {
  background-color: var(--color-secondary);
}
