/* GENERAL STYLES */
:root {
  --primary-text: #171D3A;
}
body {
  margin: 0;
  font-family: 'Inter', 'Montserrat', sans-serif;
  background-color: #E5E9FD;
  color: var(--primary-text);
}

h1, h2, h3, .section-title {
  font-family: 'Inter', serif;
}
input, textarea {
  min-width: 0;
}

html, body {
  margin: 0;
  padding: 0;
  max-width: 100vw;	
}
.g-recaptcha {
  margin-bottom: 1rem;
}
/* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #94ABF9;
  padding: 1rem 0;
  width: 100%;
}


.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px; /* Matches logo height */
}

.logo-container {
  height: 120px;
  display: flex;
  align-items: center;
}
.logo {
  width: 120px; /* adjust as needed */
  height: 120px; /* keep same as width for a perfect circle */
  border-radius: 50%;
  object-fit: cover;
}

.nav-links {
	 color: #171D3A; 
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  font-size: 2rem;
  color: white;
  cursor: pointer;
}

@media (max-width: 768px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    background-color: #94ABF9;
    width: 100%;
    padding: 1rem 2rem;
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 1000;
  }

  .nav-links.show {
    display: flex;
  }

  .nav-links a {
    padding: 0.75rem 0;
  }
}

/* HERO */
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background-color: #94ABF9;
}

.hero .section-content {
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 500;
  color: white;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 600px;
  margin: 0 auto;
  color: white;
}

/* GENERAL SECTION STYLES */
section {
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 500;
  text-align: left;
  margin-bottom: 2rem;
  margin-top: 0;
}

.section-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: left;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: opacity 0.3s ease;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.learn-more-btn {
  background-color: #171D3A;
  color: white;
}

.view-all-btn, .contact-us-btn, .send-btn {
  background-color: #F598FF;
  color: black;
}

.btn:hover {
  opacity: 0.85;
}

/* ABOUT SECTION */
#about {
  background-color: #E5E9FD;
}

.about-container {
  display: grid;
  grid-template-columns: 60% 35%;
  gap: 5%;
  align-items: start; /* 👈 This is good */
}

.about-text p {
  font-size: 1rem;
  line-height: 2;
}
.about-contact {
  padding-left: 1.5rem;
}
.about-contact h3 {
  margin-top: 0;
}

.word-counter-box {
  margin-bottom: 2rem;
}

.word-counter-label {
  font-size: 1.25rem;
  font-weight: 600;
  font-family: 'Inter', sans-serif;
  color: #171D3A;
  margin-bottom: 0.25rem;
}

.word-counter-number {
  font-size: 2rem;
  font-weight: 500;
  font-family: 'Inter', serif;
  color: #171D3A;
}

/* SERVICES SECTION */
#services {
  background-color: #94ABF9;
  color: white;
}

#services .section-title {
  margin-left: 0;
}

.service {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.service-inner {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 1rem;
  width: 85%;
}

.service-title {
  font-size: 1.2rem;
  font-weight: 500;
}

.service-desc {
  font-size: 1rem;
  line-height: 1.6;
}

/* SERVICE DIVIDERS */
.service::after, .service:first-of-type::before {
  content: "";
  display: block;
  height: 1px;
  width: 85%;
  background-color: white;
  margin: 2rem 0;
}

.hidden-service {
  display: none;
}

/* QUOTE SECTION */
#quote {
  background-color: #E5E9FD;
  display: flex;
  justify-content: flex-start;
}

.quote-container {
  max-width: 85%;
  text-align: left;
}

.quote-text {
  font-size: 2.5rem;
  color: #171D3A;
  margin-bottom: 1.5rem;
}

.quote-author {
  font-size: 1.1rem;
}

/* CONTACT / GET IN TOUCH SECTION */
#contact {
  background-color: #E5E9FD;
  color: var(--primary-text);
}

.contact-message {
  font-size: 1.1rem;
  color: white;
  line-height: 1.7;
}
.contact-header {
  background-color: #94ABF9;
  padding: 6rem 2rem;
}
.contact-header .section-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.contact-title, .contact-message {
  color: var(--primary-text);
}
.contact-title {
  font-family: 'Inter', sans-serif;
  font-size: 3rem;
  font-weight: 500;
  color: white;
  margin: 0;
  text-align: left;
}
.contact-container {
  max-width: 85%;
  text-align: left;
}
/* BLOG  */
.text-link {
  color: #4F46E5; /* dark indigo or use your brand color */
  font-weight: 500;
  text-decoration: underline;
}

.text-link:hover {
  text-decoration: none;
}

/* CONTACT / CONTACT FORM */

#contact-form {
  background-color: #E8EDFF;
  padding: 4rem 2rem;
}
/* hide the honeypot field visually but keep it in the DOM */
.honeypot { 
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: hidden;
}

.form-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info {
  flex: 1 1 40%;
  min-width: 280px;
  font-size: 1rem;
  line-height: 1.7;
}

.name-fields {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-form {
  flex: 1 1 55%;
  min-width: 320px;
}
.name-fields input {
  flex: 1;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  margin-bottom: 1.25rem;
  box-sizing: border-box;
}

.send-btn {
  background-color: #F598FF;
  color: var(--primary-text);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  border-radius: 0;
}

.send-btn:hover {
  opacity: 0.85;
}
/* RESPONSIVE*/
@media (max-width: 768px) {
  .section-content {
    padding: 0 1rem;
  }

  .about-container {
    grid-template-columns: 1fr; /* Stack columns vertically */
    gap: 2rem;
  }

  .service-inner {
    grid-template-columns: 1fr; /* Stack title and text */
  }

  .service::after,
  .service:first-of-type::before {
    width: 100%;
  }

  .quote-text {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
.form-container {
  width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

  .contact-info,
  .contact-form {
    width: 100%;
    flex: none;
    padding-left: 0;
    margin-left: 0;
  }

.name-fields {
  flex-direction: column;
  gap: 1rem;
}

  .contact-form input,
  .contact-form textarea {
    width: 100% !important;
    max-width: 100%;
    font-size: 1rem;
    box-sizing: border-box;
  }
.form-container,
.contact-form,
.contact-info {
  width: 100%;
  max-width: 100%;
 min-width: 0 !important;  /* 👈 Chrome fix */
  box-sizing: border-box;
}
  .send-btn {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 480px) {
  .section-title {
    font-size: 1.5rem;
  }

  .contact-message,
  .contact-info {
    font-size: 0.95rem;
  }

.name-fields {
  flex-direction: column;
  gap: 1rem;
}

  .send-btn {
    font-size: 1rem;
    padding: 1rem;
  }
}
