/* ==========================================
   Introduction Section Styles
   ========================================== */
.intro-consultation-section {
  background-color: var(--white);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Montserrat', sans-serif;
}

.intro-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
  align-items: center;
}

/* Left Text Block */
.intro-text-block h2 {
  font-size: 3.2rem;
  line-height: 1.15;
  font-weight: 300;
  color: var(--text-dark);
  margin-top: 1rem;
  margin-bottom: 2rem;
  letter-spacing: -0.5px;
}

.intro-lead {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--blob-green);
  margin-bottom: 1.5rem;
}

.intro-body {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.85;
}

/* Right Promise Card */
.promise-card {
  background-color: var(--bg-color);
  border-radius: 32px;
  padding: 3.5rem;
}

.promise-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
}

.promise-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.promise-list li {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.promise-list li i {
  color: var(--blob-green);
  font-size: 0.9rem;
}

.promise-footer {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
  border-top: 1px solid rgba(2, 55, 93, 0.1);
  padding-top: 1.5rem;
}

/* Responsive Scaling */
@media (max-width: 1024px) {
  .intro-container {
    gap: 3rem;
  }
  .intro-text-block h2 {
    font-size: 2.6rem;
  }
}

@media (max-width: 768px) {
  .intro-consultation-section {
    padding: 4rem 5%;
  }
  .intro-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-text-block {
    align-items: center;
  }
  .promise-card {
    padding: 2.5rem 1.8rem;
  }
  .promise-list {
    align-items: center;
  }
}



/* ==========================================
   Consultation Section Styles
   ========================================== */
.consultation-services-section {
  background-color: var(--white);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.consultation-container {
  width: 100%;
  max-width: 1250px;
}

.consultation-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.consultation-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

.consultation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-col {
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: 30px;
  transition: transform 0.3s ease;
}

.service-col:hover {
  transform: translateY(-10px);
}

.service-col h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--blob-green);
  display: inline-block;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-list li {
  font-size: 1rem;
  color: var(--text-dark);
  opacity: 0.8;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.service-list li i {
  color: var(--blob-green);
  font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .consultation-grid {
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  .consultation-services-section {
    padding: 4rem 5%;
  }
  .consultation-grid {
    grid-template-columns: 1fr;
  }
  .service-col {
    padding: 2rem;
  }
}


/* ==========================================
   Contact Form Section Styles
   ========================================== */
.contact-section {
  background-color: var(--white);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  width: 100%;
  max-width: 1250px;
}

.contact-text-side {
  width: 45%;
}

.contact-form-card {
  width: 55%;
  background-color: var(--bg-color);
  padding: 4rem;
  border-radius: 40px;
}

.message-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row-twin {
  display: flex;
  gap: 1.2rem;
}

.input-group {
  flex: 1;
}

.input-group input, 
.input-group select, 
.input-group textarea {
  width: 100%;
  padding: 1.2rem;
  border-radius: 20px;
  border: 1px solid rgba(2, 110, 129, 0.1);
  background: var(--white);
  font-family: 'Montserrat', sans-serif;
  outline: none;
  transition: border 0.3s ease;
}

.input-group input:focus, 
.input-group select:focus, 
.input-group textarea:focus {
  border-color: var(--blob-green);
}

.btn-submit {
  background-color: var(--text-dark);
  color: var(--white);
  padding: 1.2rem 3rem;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s ease;
}

.btn-submit:hover {
  background-color: var(--blob-green);
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-container { flex-direction: column; }
  .contact-text-side, .contact-form-card { width: 100%; }
}

@media (max-width: 768px) {
  .form-row-twin { flex-direction: column; gap: 1.2rem; }
  .contact-form-card { padding: 2rem; }
}


/* ==========================================
   Contact Information Section Styles
   ========================================== */
.contact-info-section {
  background-color: var(--white);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.contact-info-container {
  width: 100%;
  max-width: 1250px;
}

.contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.contact-card {
  background-color: var(--bg-color);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-decoration: none;
  color: var(--text-dark);
  text-align: center;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-card:hover {
  background-color: var(--text-dark);
  color: var(--white);
  transform: translateY(-10px);
}

.icon-box {
  width: 60px;
  height: 60px;
  background-color: var(--white);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--blob-green);
  margin-bottom: 2rem;
  transition: background 0.3s ease;
}

.contact-card:hover .icon-box {
  background-color: var(--blob-green);
  color: var(--white);
}

.contact-card h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .contact-info-section { padding: 4rem 5%; }
  .contact-grid { grid-template-columns: 1fr; }
}


/* ==========================================
   Why Contact Lexaro Section Styles
   ========================================== */
.why-contact-section {
  background-color: var(--bg-color); /* Uses the soft background tone */
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.why-contact-container {
  width: 100%;
  max-width: 1250px;
}

.why-contact-header {
  text-align: center;
  margin-bottom: 5rem;
}

.why-contact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.advantage-card {
  background-color: var(--white);
  padding: 3rem 2rem;
  border-radius: 30px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  box-shadow: 0 10px 30px rgba(2, 110, 129, 0.03);
}

.advantage-card:hover {
  transform: translateY(-15px);
  box-shadow: 0 20px 40px rgba(2, 55, 93, 0.1);
}

.adv-icon-box {
  width: 70px;
  height: 70px;
  background-color: rgba(2, 110, 129, 0.05);
  color: var(--icon-color);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 2rem auto;
  transition: all 0.3s ease;
}

.advantage-card:hover .adv-icon-box {
  background-color: var(--blob-green);
  color: var(--white);
}

.advantage-card h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.advantage-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 1024px) {
  .why-contact-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .why-contact-section { padding: 4rem 5%; }
  .why-contact-grid { grid-template-columns: 1fr; }
}


/* ==========================================
   Consultation Process Section Styles
   ========================================== */
.process-section {
  background-color: var(--white);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.process-container {
  width: 100%;
  max-width: 1250px;
}

.process-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 5rem auto;
}

.process-chain {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

/* Connecting line decoration */
.process-chain::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 3rem;
  right: 3rem;
  height: 2px;
  background-color: var(--bg-color);
  z-index: 1;
}

.process-step-card {
  position: relative;
  z-index: 2;
  background: var(--white);
  padding-right: 1rem;
}

.step-number-badge {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--bg-color);
  margin-bottom: 1.5rem;
  line-height: 1;
  transition: color 0.3s ease;
}

.process-step-card:hover .step-number-badge {
  color: var(--blob-green);
}

.step-content h3 {
  font-size: 1.3rem;
  color: var(--text-dark);
  margin-bottom: 0.8rem;
}

.step-content p {
  font-size: 0.95rem;
  color: var(--text-dark);
  opacity: 0.7;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 1024px) {
  .process-chain { grid-template-columns: repeat(2, 1fr); gap: 4rem; }
  .process-chain::before { display: none; }
}

@media (max-width: 768px) {
  .process-section { padding: 4rem 5%; }
  .process-chain { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .process-step-card { align-items: center; }
}


/* ==========================================
   FAQ Section Styles
   ========================================== */
.faq-section {
  background-color: var(--bg-color);
  padding: 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.faq-container {
  width: 100%;
  max-width: 900px;
}

.faq-header {
  text-align: center;
  margin-bottom: 4.5rem;
}

.faq-accordion-stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.faq-item {
  background-color: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(2, 110, 129, 0.02);
  transition: box-shadow 0.3s ease;
}

.faq-trigger {
  padding: 1.8rem 2.2rem;
  list-style: none; /* Hides default marker */
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-trigger::-webkit-details-marker { display: none; }

.faq-trigger h3 {
  font-size: 1.25rem;
  color: var(--text-dark);
}

.faq-icon-indicator {
  color: var(--icon-color);
  background-color: rgba(2, 110, 129, 0.04);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s ease;
}

.faq-item[open] .faq-icon-indicator {
  transform: rotate(180deg);
}

.faq-answer-content {
  padding: 0 2.2rem 2rem 2.2rem;
}

.faq-answer-content p {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-dark);
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-section { padding: 4rem 5%; }
  .faq-trigger { padding: 1.5rem; }
  .faq-trigger h3 { font-size: 1.1rem; }
}



/* ==========================================
   Final CTA Section Styles
   ========================================== */
.final-cta-section {
  background-color: var(--white);
  padding: 4rem 4% 8rem 4%;
  width: 100%;
  display: flex;
  justify-content: center;
}

.final-cta-card {
  width: 100%;
  max-width: 1250px;
  background-color: var(--text-dark);
  border-radius: 40px;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 20px 50px rgba(2, 55, 93, 0.2);
}

.cta-glass-blur {
  position: absolute;
  top: -50%;
  left: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 168, 181, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 2;
  max-width: 850px;
}

.final-cta-content h2 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 1.8rem;
  font-weight: 300;
  line-height: 1.2;
}

.final-cta-subtitle {
  font-size: 1.15rem;
  color: var(--white);
  opacity: 0.8;
  margin-bottom: 3.5rem;
  line-height: 1.7;
}

.final-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Primary Button Styling */
.primary-final-cta {
  background-color: var(--white);
  color: var(--text-dark);
}

.primary-final-cta:hover {
  background-color: var(--blob-tan);
  color: var(--white);
}

/* Secondary Button Styling */
.secondary-final-cta {
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.secondary-final-cta:hover {
  background-color: var(--white);
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 768px) {
  .final-cta-card { padding: 3rem 1.5rem; }
  .final-cta-content h2 { font-size: 2.2rem; }
  .final-cta-buttons { flex-direction: column; gap: 1rem; }
}