:root {
  /* Brand Theme Colors */
  --primary-green: #212529;
  --primary-green-dark: #222222;
  --accent-orange: #e67e22;
  --accent-orange-dark: #d35400;
  
  /* Background & Text Colors */
  --bg-light: #f9fafb;
  --text-dark: #1a1a1a;
  --text-muted: #666666;
  --border-color: #e5e7eb;
}

.contact-page-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Scroll Animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
   1. CONTACT INFO CARDS
   ============================== */
.contact-info-wrapper {
  padding-right: 30px;
}

.sec-subtitle {
  color: var(--accent-orange);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}

.sec-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-green) !important;
  margin-bottom: 20px;
  line-height: 1.2;
}

.contact-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.info-card {
  display: flex;
  align-items: flex-start;
  background: var(--bg-light);
  padding: 25px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid var(--border-color);
  transition: all 0.4s ease;
}

.info-card:hover {
  transform: translateX(10px);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(43, 94, 44, 0.08); /* Slight green shadow */
  border-color: var(--primary-green);
}

.info-icon {
  width: 55px;
  height: 55px;
  background: rgba(43, 94, 44, 0.1);
  color: var(--primary-green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.4s ease;
}

.info-card:hover .info-icon {
  background: var(--primary-green);
  color: #ffffff;
  box-shadow: 0 5px 15px rgba(43, 94, 44, 0.2);
}

.info-content h4 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.info-content p,
.info-content a {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  text-decoration: none;
  display: block;
  transition: color 0.3s ease;
}

.info-content a:hover {
  color: var(--accent-orange);
  font-weight: 600;
}

/* ==============================
   2. MODERN CONTACT FORM
   ============================== */
.contact-form-box {
  background: #ffffff;
  padding: 45px;
  border-radius: 16px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
}

/* Top border highlight for form */
.contact-form-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
}

.contact-form-box h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.contact-form-box p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

.form-group {
  margin-bottom: 20px;
}

.form-control,
.form-select {
  width: 100%;
  padding: 15px 20px;
  background: var(--bg-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus,
.form-select:focus {
  background: #ffffff;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 4px rgba(230, 126, 34, 0.15); /* Orange glow on focus */
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  background: var(--primary-green); /* Primary button color */
  color: #ffffff;
  border: none;
  padding: 16px 35px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(43, 94, 44, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-submit:hover {
  background: var(--accent-orange); /* Hover color changes to Orange */
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

/* ==============================
   3. MAP SECTION
   ============================== */
.map-section {
  padding-bottom: 80px;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  height: 450px;
  border: 4px solid #ffffff;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==============================
   4. FAQ SECTION
   ============================== */
.faq-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.faq-accordion .accordion-item {
  border: 1px solid var(--border-color);
  border-radius: 12px !important;
  margin-bottom: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
  overflow: hidden;
  background: #ffffff;
}

.faq-accordion .accordion-button {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text-dark);
  padding: 20px 25px;
  background-color: #ffffff;
  box-shadow: none;
  transition: all 0.3s ease;
}

.faq-accordion .accordion-button:not(.collapsed) {
  color: #ffffff;
  background-color: var(--primary-green);
}

/* Change the default bootstrap arrow color when active */
.faq-accordion .accordion-button:not(.collapsed)::after {
  filter: brightness(0) invert(1);
}

.faq-accordion .accordion-body {
  padding: 20px 25px 25px 25px;
  color: var(--text-muted);
  line-height: 1.7;
  background-color: #ffffff;
  font-size: 1rem;
  border-top: 1px solid var(--border-color);
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .contact-info-wrapper {
    padding-right: 0;
    margin-bottom: 50px;
  }
  
  .sec-title {
    font-size: 2rem;
  }
  
  .contact-form-box {
    padding: 30px 20px;
  }
}