/* --- Reset & Variables --- */
:root {
  --font-family: "Inter", sans-serif;
  --color-text-main: #111;
  --color-text-light: #555;
  --color-dark-green: #4a6326;
  --color-cream-bg: #f0f2eb;
  --color-input-bg: #fff;
  --color-input-border: #e5e5e5;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  color: var(--color-text-main);
  background: #fff;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

/* Utilities */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.bg-white {
  background-color: #fff;
}

.bg-cream {
  background-color: var(--color-cream-bg);
}

.bg-light-cream {
  background: url("./assets/pricing-bg-3.png") no-repeat center/cover;
  background-color: #f5f6f2;
}

/* --- Navigation --- */
.navbar {
  height: 72px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #eee;
  background: #fff;
  position: relative;
  z-index: 100;
}

.nav-wrapper {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  display: flex;
  align-items: center;
}

.bag-icon {
  width: 16px;
  height: 12px;
  background: #000;
  border-radius: 2px;
  display: inline-block;
  position: relative;
  margin: 0 1px;
}

.bag-icon::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 4px;
  background: var(--color-dark-green);
  border-radius: 50%;
}

.nav-menu {
  display: flex;
  gap: 32px;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-actions {
  display: flex;
  gap: 20px;
  align-items: center;
}

.login-link {
  font-weight: 600;
  font-size: 14px;
}

.btn-nav {
  background: var(--color-dark-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 24px;
  height: 3px;
  background: #000;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  width: 100%;
  background: #fff;
  padding: 20px;
  border-bottom: 1px solid #eee;
}

.mobile-menu.open {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* --- 1. Contact Hero --- */
.contact-hero {
  background: url("./assets/pricing-bg-3.png") no-repeat center/cover;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* Subtle lines pattern */
.hero-bg-lines {
  position: absolute;
  inset: 0;
  background: repeating-conic-gradient(from 45deg at 120% 120%,
      transparent 0deg 10deg,
      rgba(75, 101, 39, 0.05) 10deg 11deg);
  pointer-events: none;
}

.contact-hero h1 {
  font-size: 48px;
  font-weight: 800;
  color: #111;
  letter-spacing: -1px;
  margin: 0;
}

/* --- 2. Main Contact Section --- */
.contact-main {
  padding: 60px 0 100px;
  background: #fff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;
  align-items: stretch;
}

/* Left Side: Visuals */
.contact-visuals {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-img {
  border-radius: 12px;
  /* height: 75%; */
  object-fit: cover;
  width: 100%;
}

.contact-info-card {
  background-color: var(--color-cream-bg);
  padding: 32px;
  border-radius: 12px;
}

.info-group {
  margin-bottom: 20px;
  font-size: 14px;
}

.info-group:last-child {
  margin-bottom: 0;
}

.info-group strong {
  display: block;
  color: #111;
  margin-bottom: 4px;
  font-weight: 700;
}

.info-group p,
.info-group a {
  color: #555;
  font-weight: 400;
  text-decoration: none;
}

/* Right Side: Form */
.contact-form-wrapper h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}

.form-subtext {
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
}

.contact-form {
  background-color: var(--color-cream-bg);
  padding: 40px;
  border-radius: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

input,
select,
textarea {
  width: 100%;
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  background: #fff;
}

textarea {
  resize: vertical;
  margin-bottom: 20px;
  height: 110px;
}

.form-checkbox {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 25px;
  font-size: 15.4px;
  color: #555;
}

.form-checkbox input {
  width: auto;
  margin-top: 4px;
}

.form-checkbox a {
  color: var(--color-dark-green) !important;
  font-weight: 600;
  text-decoration: underline !important;
}

.btn-submit {
  background-color: var(--color-dark-green);
  color: #fff;
  border: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  background-color: #3d5220;
}

.submit-btn {
  margin-top: 40px;
}

/* --- 3. Features Grid --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 12px;
}

.section-header p {
  color: #666;
  font-size: 16px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card-clean {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 32px;
  background: #fff;
}

.dot-icon {
  background: #E8EC67;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 10px;
  color: #333;
  margin-bottom: 20px;
}

.feature-card-clean h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-card-clean p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.5;
}

.stat-highlight {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-dark-green);
}

.card-divider {
  border: none;
  border-top: 2px solid #e8e8e8;
  margin: 20px 0 16px;
}

/* --- 4. FAQ --- */
.faq-section {
  padding: 80px 0;
  background: #fff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid #ddd;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  font-weight: 600;
  cursor: pointer;
  color: #111;
  user-select: none;
  font-size: 20px;
}

.faq-question:hover {
  color: var(--color-dark-green);
}

.plus {
  font-size: 45px;
  font-weight: 300;
  transition: transform 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .plus {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}

.faq-answer p {
  font-size: 14.5px;
  color: #000000;
  line-height: 1.7;
  padding-bottom: 20px;
}

/* --- Footer --- */
.footer-section {
  background: var(--color-cream-bg);
  padding: 80px 0 30px;
  font-size: 14px;
  color: #333;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-links-grid {
  display: flex;
  gap: 60px;
}

.footer-links-grid h4 {
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-links-grid a {
  color: #555;
  display: block;
  margin-bottom: 8px;
}

.contact-details p {
  font-size: 13px;
  margin-bottom: 8px;
  color: #555;
}

.footer-newsletter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  margin-bottom: 0px;
}

.nl-form input {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 250px;
  margin-right: 10px;
}

.btn-dark {
  background: var(--color-dark-green);
  color: #fff;
  padding: 10px 20px;
  border-radius: 4px;
  border: none;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: #777;
}

/* --- Responsive --- */
@media (max-width: 992px) {

  .nav-menu,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  /* Stack visuals and form */
  .contact-visuals {
    flex-direction: row;
  }

  /* Put info next to image on tablet? */
  .contact-img {
    width: 50%;
    height: auto;
  }

  .contact-info-card {
    width: 50%;
  }

  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-links-grid {
    flex-wrap: wrap;
    gap: 30px;
  }
}

@media (max-width: 600px) {

  /* --- Hero --- */
  .contact-hero {
    padding: 36px 0;
  }

  .contact-hero h1 {
    font-size: 28px;
    letter-spacing: -0.5px;
  }

  /* --- Contact Main --- */
  .contact-main {
    padding: 36px 0 48px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* Reorder: form first, visuals below */
  .contact-form-wrapper {
    order: -1;
  }

  .contact-form-wrapper h2 {
    font-size: 22px;
    line-height: 1.3;
  }

  .form-subtext {
    font-size: 14px;
    margin-bottom: 24px;
  }

  /* Remove cream background from form on mobile */
  .contact-form {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  input,
  select,
  textarea {
    padding: 16px 14px;
    font-size: 14px;
    border-radius: 8px;
  }

  textarea {
    height: 100px;
  }

  .form-checkbox {
    align-items: flex-start;
    font-size: 13px;
    gap: 10px;
  }

  .form-checkbox input {
    margin-top: 3px;
  }

  /* Submit button full width */
  .submit-btn {
    margin-top: 24px;
  }

  .btn-submit {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    border-radius: 8px;
  }

  /* Visuals stack vertically */
  .contact-visuals {
    flex-direction: column;
    order: 1;
  }

  .contact-img,
  .contact-info-card {
    width: 100%;
  }

  .contact-img {
    border-radius: 10px;
  }

  /* Remove cream background from contact info on mobile */
  .contact-info-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
  }

  .info-group {
    margin-bottom: 12px;
    font-size: 14px;
  }

  /* --- Features Section --- */
  .section-padding {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-header h2 {
    font-size: 22px;
  }

  .section-header p {
    font-size: 14px;
  }

  .grid-3 {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-card-clean {
    padding: 24px;
  }

  .feature-card-clean h3 {
    font-size: 16px;
  }

  .feature-card-clean p {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .dot-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 16px;
  }

  .stat-highlight {
    font-size: 18px;
  }

  .card-divider {
    margin: 14px 0 12px;
  }

  /* --- FAQ Section --- */
  .faq-section {
    padding: 48px 0;
  }

  .faq-question {
    font-size: 16px;
    padding: 16px 0;
  }

  .plus {
    font-size: 32px;
  }

  .faq-answer p {
    font-size: 13px;
    padding-bottom: 16px;
  }

  /* --- Footer --- */
  .footer-newsletter {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }

  .nl-form {
    width: 100%;
  }

  .nl-form input {
    width: 100%;
    margin-bottom: 10px;
  }
}
