/* ============================
   Get in Touch Section
============================ */
.get-in-touch-section {
  background: #203147;
  color: #f5f5f5;
  padding: 3rem 0;
  font-family: 'Poppins', sans-serif;
}

/* Ensure the heading uses the brand warning color */
.get-in-touch-section .text-warning {
  color: #f7a600 !important;
}

.get-in-touch-flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5rem; /* reduced for responsiveness */
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.get-in-touch-left,
.get-in-touch-right {
  flex: 1;
  min-width: 280px;
}

/* Left Side - Intro + Details */
.get-in-touch-intro h3 {
  color: #f7a600;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.get-in-touch-intro p {
  color: #f5f5f5;
  margin-bottom: 1rem;
}

.get-in-touch-social {
  margin-bottom: 1.5rem;
}

.get-in-touch-social a {
  display: inline-block;
  margin-right: 1rem;
  color: #f7a600;
  font-size: 1.5rem;
  transition: color 0.3s;
}

.get-in-touch-social a:hover {
  color: #d79b52;
}

/* Details */
.get-in-touch-details {
  color: #f5f5f5;
  font-size: 1rem;
}

.get-in-touch-details p {
  margin: 1rem 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.get-in-touch-details i {
  color: #f7a600;
  width: 20px;
  text-align: center;
}

/* ============================
   Right Side - Contact Form
============================ */
.get-in-touch-right {
  max-width: 500px;
  width: 100%;
}

.get-in-touch-right h4 {
  color: #f7a600;
  font-size: 1.6rem;
  margin-bottom: 1rem;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Form Fields */
.get-in-touch-right .form-control {
  width: 100%;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.45rem 0.75rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.get-in-touch-right .form-control:focus {
  border-color: #f7a600;
  box-shadow: 0 0 0 2px rgba(247, 166, 0, 0.15);
  outline: none;
}

/* Button */
.btn-cta-sm {
  background: #f7a600;
  color: #fff;
  border: none;
  padding: 0.5rem 1.3rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.3s, transform 0.2s;
  cursor: pointer;
}

.btn-cta-sm:hover {
  background: #d79b52;
  transform: translateY(-1px);
}

/* Flex row adjustments */
.get-in-touch-right .row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.get-in-touch-right .col-md-6 {
  flex: 1 1 calc(50% - 0.6rem);
}

.get-in-touch-right .col-12 {
  flex: 1 1 100%;
}

/* ============================
   Footer
============================ */
.footer {
  background: #203147;
  color: #f5f5f5;
  padding: 2rem 0;
  text-align: center;
}

.footer-contact {
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-contact a {
  color: #f7a600;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  font-size: 1.2rem;
}

.footer-social a {
  color: #f7a600;
  margin: 0 0.5rem;
  transition: color 0.3s;
}

.footer-social a:hover {
  color: #d79b52;
}

/* ============================
   Responsive Breakpoints
============================ */

/* Tablet */
@media (max-width: 992px) {
  .get-in-touch-flex {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
  }

  .get-in-touch-details p {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .get-in-touch-intro h3 {
    font-size: 1.5rem;
  }

  .get-in-touch-intro p,
  .get-in-touch-details {
    font-size: 0.9rem;
  }

  .get-in-touch-right h4 {
    font-size: 1.4rem;
  }

  /* Stack Name & Email on mobile */
  .get-in-touch-right .col-md-6 {
    flex: 1 1 100%;
  }

  .get-in-touch-right .form-control {
    font-size: 0.85rem;
    padding: 0.4rem 0.6rem;
  }

  .btn-cta-sm {
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
  }
}