/* ===== GLOBAL STYLES ===== */
* { box-sizing: border-box; }

body {
  font-family: 'Segoe UI', Tahoma, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f6f8fb;
  color: #333;
  line-height: 1.6;
}

/* ===== LAYOUT CONTAINER ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.site-header {
  background: linear-gradient(135deg, #1f3c88, #4b7bec);
  padding: 25px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* Logo */
.logo-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.4px;
  font-size: 1.9rem;
  line-height: 1.1;
  display: inline-block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.logo-link:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.site-header h1 {
  margin: 0;
  color: #ffffff;
}

/* ===== NAVIGATION ===== */
.main-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.main-nav a,
.site-header a:visited {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.main-nav a:hover {
  background-color: rgba(255, 255, 255, 0.15);
}

.main-nav a.active {
  background-color: rgba(255, 255, 255, 0.25);
}

/* CTA link in nav (use class="nav-cta") */
.main-nav a.nav-cta {
  background-color: #ffffff;
  color: #1f3c88;
  font-weight: 700;
  border-radius: 999px;
  padding: 8px 18px;
}

.main-nav a.nav-cta:hover {
  background-color: #e6ecff;
}

/* ===== HERO SECTION ===== */
.hero {
  background: #ffffff;
  padding: 70px 20px;   /* slightly smaller */
  text-align: center;
}

.hero h1,
.hero h2 {
  font-size: 2.1rem;    /* smaller heading */
  color: #1f3c88;
  line-height: 1.25;
  margin-bottom: 18px;
}

.hero p {
  max-width: 620px;
  margin: 0 auto 28px;
  font-size: 1.05rem;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: #4b7bec;
  color: #ffffff;
  padding: 11px 24px;     /* smaller button */
  border-radius: 26px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #3867d6;
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.75);
  padding: 11px 24px;
  border-radius: 26px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: #ffffff;
  transform: translateY(-2px);
}

.section-cta {
  text-align: center;
  margin: 2rem 0;
}

/* ===== SERVICES (SERVICE-CARDS SYSTEM) ===== */
.services h2 {
  text-align: center;
  color: #1f3c88;
  margin-bottom: 40px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.service-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  padding: 20px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #1f3c88;
  font-size: 1.2rem;
  margin: 10px 0;
}

.service-card p {
  font-size: 0.95rem;
  color: #444;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background: #f6f8fb;
  padding: 60px 20px;
  text-align: center;
}

.testimonials h2 {
  color: #1f3c88;
  margin-bottom: 40px;
}

.testimonial {
  max-width: 800px;
  margin: 0 auto 1.8rem;
  font-style: italic;
  color: #333;
}

.client-name {
  font-weight: 700;
  margin-top: 0.6rem;
  text-align: right;
}

/* ===== ABOUT: MY STORY / TRUST ===== */
.my-story {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.my-story p {
  margin-left: auto;
  margin-right: auto;
  max-width: 780px;
}

.trust-points {
  margin: 2.5rem 0;
  text-align: center;
}

.trust-points ul {
  list-style: none;
  padding: 0;
  margin: 1rem auto 0;
  max-width: 720px;
}

.trust-points li {
  margin: 0.6rem 0;
}

/* ===== VALUES (choose ONE layout) ===== */
/* If you're using values-cards layout */
.values {
  text-align: center;
  padding: 3rem 1rem;
}

.values-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.value-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 6px 15px rgba(0,0,0,0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

.value-icon {
  font-size: 2.4rem;
  margin-bottom: 0.6rem;
}

.value-card h3 {
  color: #1f3c88;
  margin-bottom: 0.6rem;
}

.value-card p {
  line-height: 1.6;
  font-size: 1rem;
  color: #444;
}

/* ===== CONTACT ===== */
.contact-info,
.contact-form {
  max-width: 820px;
  margin: 2.5rem auto;
  padding: 0 20px;
  text-align: center;
}

.contact-form form {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
  text-align: left;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 1rem;
}

.contact-form label {
  font-weight: 600;
  display: block;
  margin-top: 10px;
}

.privacy-note {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-top: 12px;
  text-align: center;
}

.contact-info a {
  color: #4b7bec;
  font-weight: 600;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

.book-call {
  text-align: center;
  background: #f4fbf6;
  padding: 2.5rem 1.5rem;
  margin-top: 2rem;
}

.book-call h2 {
  color: #1f3c88;
  margin-bottom: 0.5rem;
}

.book-call p {
  margin-bottom: 1rem;
}

.calendly-embed {
  margin: 2.5rem auto;
  max-width: 920px;
  text-align: center;
}

.calendly-embed h2 {
  margin-bottom: 1rem;
  color: #1f3c88;
}

/* ===== PRICING ===== */
.pricing {
  padding: 3rem 0;
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.pricing-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 8px 18px rgba(0,0,0,0.06);
  position: relative;
  text-align: left;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 800;
  margin: 0.25rem 0;
}

.pricing-card .price span {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.8;
}

.pricing-card .hours {
  font-weight: 700;
  margin-bottom: 1rem;
}

.pricing-card ul {
  margin: 0 0 1.25rem;
  padding-left: 1.1rem;
  line-height: 1.7;
}

.pricing-card.featured {
  border: 2px solid rgba(75, 123, 236, 0.6);
  transform: translateY(-6px);
}

.badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #4b7bec;
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
}

.pricing-details {
  max-width: 900px;
  margin: 2.5rem auto;
  padding: 0 20px;
}

.pricing-details ul,
.pricing-details ol {
  line-height: 1.8;
}

.small-note {
  margin-top: 1.5rem;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.site-footer,
footer {
  background: #1f3c88;
  color: #ffffff;
  text-align: center;
  padding: 25px;
  font-size: 0.95rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card.featured { transform: none; }
}

@media (max-width: 768px) {
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
  }
}

@media (max-width: 520px) {
  .hero h1, .hero h2 { font-size: 1.75rem; }
}
/* ===== HEADER LAYOUT FIX ===== */
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo-link {
  font-size: 1.6rem;
  font-weight: 800;
  margin-right: 1rem;
}

/* Make nav sit beside logo */
.main-nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
/* ===== MOBILE SPACING TWEAKS ===== */
@media (max-width: 768px) {

  /* Header spacing */
  .site-header {
    padding: 14px 0;
  }

  /* Logo + nav stack neatly */
  .logo-nav {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .logo-link {
    font-size: 1.4rem;
    margin-right: 0;
  }

  /* Nav links tighter */
  .main-nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.6rem;
  }

  .main-nav a {
    padding: 6px 10px;
    font-size: 0.9rem;
  }

  .main-nav a.nav-cta {
    padding: 6px 14px;
    font-size: 0.9rem;
  }

  /* Hero spacing */
  .hero {
    padding: 45px 18px;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.7rem;
    margin-bottom: 14px;
  }

  .hero p {
    font-size: 1rem;
    margin-bottom: 22px;
  }

  /* Buttons */
  .btn-primary {
    padding: 9px 20px;
    font-size: 0.9rem;
  }
}

/* Extra small phones */
@media (max-width: 420px) {

  .logo-link {
    font-size: 1.25rem;
  }

  .hero h1,
  .hero h2 {
    font-size: 1.55rem;
  }

  .main-nav a {
    font-size: 0.85rem;
    padding: 5px 8px;
  }
}
/* ===== ABOUT PAGE: TESTIMONIALS REFINEMENT ===== */
.about-testimonials {
  text-align: center;
  max-width: 720px;   /* keeps it compact */
  margin: 2.5rem auto;
  padding: 0 20px;
}

.about-testimonials h2 {
  font-size: 1.4rem;  /* smaller heading */
  margin-bottom: 1.25rem;
}

.about-testimonials .testimonial {
  font-size: 0.95rem;  /* slightly smaller text */
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.about-testimonials .client-name {
  font-size: 0.9rem;
  text-align: center;
}
/* ===== ABOUT PAGE CTA CENTERING ===== */
.about-cta {
  text-align: center;
  max-width: 720px;
  margin: 3rem auto;
  padding: 0 20px;
}

.about-cta h2 {
  margin-bottom: 1.2rem;
}

.about-cta .btn-primary {
  margin: 0 auto;
}
/* ===== ABOUT PAGE PROFILE PHOTO ===== */
.profile-photo {
  width: 180px;
  height: 180px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}
/* ===== SOFT SECTION BACKGROUNDS ===== */
.hero {
  background: linear-gradient(
    180deg,
    #f4fbf6 0%,
    #ffffff 100%
  );
}

.values {
  background-color: #f4fbf6;
}
/* ===== PREMIUM LOOK: SECTION DIVIDERS + SOFT MOTION ===== */

/* subtle background texture (Option 2) */
.section-bg {
  background-color: #f6f8fb;
  background-image: radial-gradient(rgba(31, 60, 136, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* subtle divider between sections */
.section-divider {
  height: 1px;
  width: 100%;
  max-width: 980px;
  margin: 3rem auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
}

/* hover lift (cards + value cards) */
.service-card,
.value-card,
.pricing-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover,
.value-card:hover,
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

/* gentle fade-in on load */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

/* apply animation to key sections */
.hero,
.services,
.services-preview,
.values,
.about-testimonials,
.contact-form,
.pricing {
  animation: fadeUp 0.55s ease both;
}

/* respect reduced-motion */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .services,
  .services-preview,
  .values,
  .about-testimonials,
  .contact-form,
  .pricing {
    animation: none;
  }
}
/* ===== PREMIUM LOOK: TEXTURE + DIVIDERS + MOTION ===== */

/* Option 2: subtle texture background */
.section-bg {
  background-color: #f6f8fb;
  background-image: radial-gradient(rgba(31, 60, 136, 0.06) 1px, transparent 1px);
  background-size: 18px 18px;
}

/* Subtle section divider */
.section-divider {
  height: 1px;
  width: 100%;
  max-width: 980px;
  margin: 3rem auto;
  background: linear-gradient(
    to right,
    transparent,
    rgba(0, 0, 0, 0.12),
    transparent
  );
}

/* Gentle card lift */
.service-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.14);
}

/* Gentle fade-in */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero,
.services-preview {
  animation: fadeUp 0.55s ease both;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero,
  .services-preview {
    animation: none;
  }
}
/* ===== SPLIT SECTION LAYOUT ===== */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 20px;
}

.split-text h2 {
  font-size: 2.1rem;
  margin-bottom: 1rem;
}

.split-text p {
  font-size: 1.05rem;
  line-height: 1.75;
  max-width: 480px;
}

.split-visual {
  border-radius: 18px;
  overflow: hidden;
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile */
@media (max-width: 900px) {
  .split-section {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .split-text p {
    margin: 0 auto;
  }
}




