/* ----------------------------------
   Global Styles
----------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', sans-serif;
  background: #FAFAFC;
  line-height: 1.6;
  color: #283038;
  scroll-behavior: smooth;
}

/* --------------------------...--------
   Navbar (unchanged)
---------------------------------- */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 10px 0;
  display: flex;
  justify-content: center;
  z-index: 100;
}
.navbar {
  width: 95%;
  max-width: 1200px;
  padding: 8px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
}
.logo {
  width: 35px;
  height: 35px;
  margin-right: 12px;
}
.company-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: #333F48;
  letter-spacing: 0.01em;
}
.navbar-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.navbar-menu li a {
  position: relative;
  color: #333F48;
  font-size: 0.85rem;
  text-decoration: none;
  padding: 4px 8px;
  transition: color 0.3s ease;
}
.navbar-menu li a::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  opacity: 0;
  filter: blur(8px);
  transition: opacity 0.3s ease;
}
.navbar-menu li a:hover::after {
  opacity: 1;
}
.navbar-menu li a:hover {
  color: #725EE1;
  font-weight: 1000;
}

.mobile-menu-toggle {
  display: none;
}

/* Hide the mobile overlay menu on desktop */
.mobile-menu {
  display: none;
}

/* Ensure dropdown container is positioned relative */
.navbar-menu li.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  padding: 0.5rem 0;
  margin: 0;             /* remove default margin */
  list-style: none;      /* remove bullets */
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 175px;
  z-index: 1000;
}

/* Show dropdown on hover */
.navbar-menu li.dropdown:hover .dropdown-menu {
  display: block;
}

/* Dropdown Menu item styling */
.dropdown-menu li a {
  display: block;
  padding: 0.5rem 1rem;
  color: #333F48;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s ease;
}

.brand-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand-link .logo {
  margin-right: 8px; /* Optional: adjust spacing between logo and name */
}

.scrolled {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* ----------------------------------
   Footer (reuse from homepage)
---------------------------------- */
.site-footer {
  background: #1F1235;
  color: #fff;
  padding: 2rem 1rem;
  font-size: 0.95rem;
}
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-logo {
  width: 40px;
  height: 40px;
}
.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 600;
}
.footer-columns {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.footer-column a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-column a:hover {
  color: #ddd;
}
.footer-bottom {
  margin-top: 2rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 1rem;
  color: #bbb;
}

/* ----------------------------------
   Contact Hero Section
---------------------------------- */
.contact-hero {
  position: relative;
  padding: 6rem 1rem;
  text-align: center;
  background: url('/images/contact-hero-bg.webp') no-repeat center center/cover;
  color: #283038;
}

.contact-hero-content {
  max-width: 800px;
  margin: 6rem auto 6rem auto; /* Adjust top margin if needed to avoid overlap with nav */
  padding: 0 2rem;
  z-index: 1;
  position: relative;
}

.contact-hero-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.contact-hero-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: #505a63;
}

.hero-ctas {
  display: inline-flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* Primary CTA Button */
.cta-button {
  display: inline-block;
  background: linear-gradient(90deg, #B840A9, #9B4CFF);
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background: linear-gradient(90deg, #9A3598, #843ED6);
}

/* Secondary CTA Button (Outline Style) */
.cta-button.cta-secondary {
  background: transparent;
  color: #B840A9;
  border: 2px solid #B840A9;
}
.cta-button.cta-secondary:hover {
  background: #B840A9;
  color: #fff;
}

/* ----------------------------------
   Book a 1:1 Call Section
---------------------------------- */
.book-call-section {
  background: linear-gradient(130deg, #ffd1dc, #ffefd5, #ffffff, #ffffff);
  padding: 4rem 1rem;
}

.book-call-container {
  max-width: 1200px;
  margin: 0 auto;
  align-items: flex-start;
  flex-wrap: wrap; /* Stacks on small screens */
}

.book-call-heading {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: #283038;
}

.book-call-desc {
  font-size: 1rem;
  line-height: 1.6;
  color: #505a63;
  margin-bottom: 2rem;
}

.book-call-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.book-call-list li {
  position: relative;
  margin-bottom: 1.25rem; /* More space between bullets */
  padding-left: 2rem; /* room for tick icon */
  color: #505a63;
  font-size: 1rem;
  line-height: 1.6;
}

/* Tick icon for each bullet */
.book-call-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.15rem;
  width: 20px;
  height: 20px;
  background: url('tick-icon.webp') no-repeat center/cover;
}

.book-call-container iframe {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* ----------------------------------
   Get in Touch Section (Message)
---------------------------------- */

.help-heading {
  text-align: center;   /* center above both columns */
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: #283038;
}

/* 1) Container & Layout */
.help-section {
  background: #FDFDFD;
  padding: 2rem 1rem;
}
.help-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

/* 2) Testimonial (left) */
.help-left p {
  color: #374151;
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.help-left .contact-info {
  margin: 2rem 0;
  font-size: 1rem;
  color: #374151;
  font-family: 'Inter', sans-serif;
}
.help-left .contact-info p {
  margin-bottom: 0.5rem;
}
.help-left .contact-info a {
  color: #B840A9;
  text-decoration: none;
}
.help-left .contact-info a:hover {
  text-decoration: underline;
}


/* 3) Contact‑card (right) */
.contact-card {
  background: #FFF;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.form-group input,
.form-group textarea {
  font-family: 'Inter', sans-serif;
}

/* 4) Form grid & fields */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #1F2937;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #D1D5DB;
  border-radius: 8px;
  font-size: 1rem;
  color: #111827;
  background: #F9FAFB;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #B840A9;
  box-shadow: 0 0 0 3px rgba(184,64,169,0.2);
}

/* 5) Privacy checkbox */
.privacy {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
  color: #4B5563;
  margin-bottom: 1.5rem;
}
.privacy input {
  margin-right: 0.5rem;
  accent-color: #B840A9;
}
.privacy a {
  color: #B840A9;
  text-decoration: none;
}
.privacy a:hover {
  text-decoration: underline;
}

/* 6) Submit button */
.submit-btn {
  width: 100%;
  padding: 1rem;
  background: #111827;
  color: #FFF;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.3s;
}
.submit-btn:hover {
  opacity: 0.9;
}
/* ----------------------------------
   Tablet & Small Desktop: ≤ 900px
---------------------------------- */

@media (max-width: 800px) {

  .navbar {
    padding: 1.25rem;
    background: transparent;
}

.mobile-menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #283038;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1002;
}

/* Full screen mobile menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #f8f9ff 0%, #ffffff 100%);
    padding: 1.25rem;
    box-sizing: border-box;
    z-index: 1001;
    overflow-y: auto;
}

.mobile-menu.open {
    display: block;
}

/* Hide the navbar hamburger when mobile menu is open */
.navbar.mobile-open .mobile-menu-toggle:not(.mobile-menu-header .mobile-menu-toggle) {
    display: none;
}

/* Mobile menu header */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.mobile-menu-header .brand-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #283038;
}

.mobile-menu-header .logo {
    width: 35px;
    height: 35px;
    margin-right: 0.75rem;
}

.mobile-menu-header .company-name {
    font-size: 1.25rem;
    font-weight: 600;
}

/* Only show the close button in the mobile menu when it's open */
.mobile-menu-header .mobile-menu-toggle {
    font-size: 1.5rem;
    color: #283038;
    padding: 0.5rem;
}

.mobile-menu:not(.open) .mobile-menu-header .mobile-menu-toggle {
    display: none;
}

/* Mobile menu items */
.mobile-menu li {
    list-style: none;
    margin: 1.5rem 0;
}

.mobile-menu li a {
    display: block;
    font-size: 1.125rem;
    color: #283038;
    text-decoration: none;
    padding: 0.5rem 0;
}

/* Mobile dropdown */
.mobile-dropdown {
    margin: 1.5rem 0;
}

.mobile-dropdown-label {
    display: block;
    font-size: 1.125rem;
    color: #283038;
    padding: 0.5rem 0;
    cursor: pointer;
}

.mobile-dropdown-menu {
    display: none;
    margin-left: 1rem;
    margin-top: 0.5rem;
}

.mobile-dropdown-menu.open {
    display: block;
}

.mobile-dropdown-menu li {
    margin: 0.75rem 0;
}

.mobile-dropdown-menu a {
    font-size: 1rem;
    color: #505a63;
}

/* Hide desktop menu on mobile */
.navbar-menu {
    display: none;
}

  /* Reduce top/bottom padding around the hero */
  .contact-hero {
    padding: 8rem 1rem;
    padding-bottom: 2rem;
  }

  .contact-hero-content {
    padding: 0 1rem;
    margin: 0 auto 0 auto;
    margin-bottom: 1.5rem;
  }

  /* Headings & text sizes */
  .contact-hero-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }
  .contact-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }

  /* Stack CTAs and make them full-width for easy tapping */
  .hero-ctas {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: center;
    margin-top: 1rem;
        margin-bottom: 0;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .cta-button.cta-secondary {
    margin-top: 0;
  }

  #my-cal-inline {
  width: 100%;
  min-height: 600px;        /* or however tall you want it */
  overflow-y: auto !important;
  height: auto !important;  /* override the inline height:100% */
}

/* 1) Stack left + right into one column */
  .help-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding: 0 1rem;
  }
  .help-left,
  .help-right {
    width: 100%;
  }

  /* 2) Make the form card full width */
  .contact-card {
    padding: 1.5rem;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
  }

  /* 3) Collapse the two‑column grid into one */
  .form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  /* 4) Shrink bottom of the form a bit */
  .submit-btn {
    padding: 0.75rem;
    font-size: 1rem;
  }
}

