/* =====================================================
   BRAND VARIABLES
===================================================== */
:root {
  --primary-color: #060270;
  --secondary-color: #EE0E82;
  --accent-color: #FE9900;
  --light-bg: #f5f9ff;
}

/* =====================================================
   GLOBAL SAFE REFINEMENTS (NO BOOTSTRAP OVERRIDES)
===================================================== */
.section-title {
  color: var(--primary-color);
  margin-bottom: 30px;
  position: relative;
  padding-bottom: 15px;
  font-weight: 700;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

/* =====================================================
   NAVBAR (SCOPED & SAFE)
===================================================== */
.navbar {
  background-color: var(--primary-color);
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-top: 10px;
}

.navbar-brand img {
  height: 70px;
}

.nav-link {
  color: var(--accent-color);
  font-weight: 500;
}

/* =====================================================
   CONTACT HERO
===================================================== */
.contact-hero {
  background:
    linear-gradient(rgba(0,51,102,0.2), rgba(0,51,102,0.2)),
    url('https://images.pexels.com/photos/32500692/pexels-photo-32500692.png?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=2');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 120px 0;
  text-align: center;
  margin-top: 20px;
}

.contact-hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* =====================================================
   CONTACT SECTION (GRID-BASED – FINAL)
===================================================== */
.contact-section {
  padding: 30px 15px;
}

.contact-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.contact-form,
.contact-info {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Form fields */
.form-group label {
  font-weight: 600;
  color: #000066;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.form-group textarea {
  min-height: 120px;
}

/* Consent fix */
.form-group.consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
}

.form-group.consent label {
  font-size: 13px;
  line-height: 1.5;
}

/* Submit */
.submit-btn {
  width: 100%;
  padding: 14px;
  font-weight: 600;
  background: var(--primary-color);
  border: none;
  color: #ffffff;
  border-radius: 8px;
}

/* =====================================================
   MAP
===================================================== */
.map-container {
  margin-top: 40px;
  border-radius: 12px;
  overflow: hidden;
}

/* =====================================================
   FAQ & CONNECT (FINAL GRID VERSION)
===================================================== */
.combined-section {
  background-color: var(--light-bg);
  padding: 80px 0;
}

.faq-connect-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.faq-column,
.connect-column {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* Accordion */
.accordion-item {
  border: none;
  margin-bottom: 12px;
}

.accordion-button:not(.collapsed) {
  background-color: rgba(0,51,102,0.05);
  color: var(--primary-color);
  font-weight: 600;
}

.accordion-body {
  font-size: 14px;
  line-height: 1.6;
}

/* Social buttons */
.social-buttons {
  display: flex;
  gap: 14px;
  margin-top: 20px;
}

.social-button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-button:hover {
  background: var(--secondary-color);
  transform: translateY(-3px);
}

/* =====================================================
   FOOTER (SCOPED)
===================================================== */
footer {
  background-color: var(--primary-color);
  color: #ffffff;
}

footer h5 {
  color: var(--accent-color);
}

footer a {
  color: #ddd;
}

/* =====================================================
   FLOATING CHAT
===================================================== */
.floating-action {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.chat-button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--secondary-color);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   TOP BAR
===================================================== */
.top-bar {
  background-color: var(--secondary-color);
  color: #ffffff;
  padding: 10px 0;
  font-weight: 700;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 992px) {
  .contact-container,
  .faq-connect-container {
    grid-template-columns: 1fr;
  }
}
