* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

:root {
  --nav-color: #1565C0;          /* FICER Blue */
  --button-text-footer: #0a2e52; /* Deep Navy */
  --badge-color: #1976D2;        
  --extra-color: #ffffff;
  --default-color: #546e7a;
}

/* =========================================
   HERO BANNER
   ========================================= */
.contact-hero {
  background-image: url('https://images.unsplash.com/photo-1423666639041-f56000c27a9a?q=80&w=2074&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, rgba(10, 46, 82, 0.9) 0%, rgba(21, 101, 192, 0.8) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hero .container { position: relative; z-index: 2; text-align: center; max-width: 800px; }

.hero-title { color: var(--extra-color); font-size: 56px; font-weight: 700; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 2px; }
.hero-subtitle { color: rgba(255, 255, 255, 0.9); font-size: 20px; max-width: 600px; margin: 0 auto; }

/* =========================================
   CONTACT SECTIONS
   ========================================= */
.contact-details { margin-top: -50px; position: relative; z-index: 3; }

.contact-sections {
  margin: 20px;
  background-color: var(--extra-color);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.contact-info { margin-top: 10px; }

.contact-head {
  color: var(--button-text-footer) !important;
  font-weight: 700;
  font-size: 32px;
  border-left: 5px solid var(--nav-color);
  padding-left: 15px;
}

.contact-para { color: var(--default-color) !important; text-align: justify; font-size: 16px; line-height: 1.6; margin-top: 20px; margin-bottom: 30px; }

.contact-detail-box {
  border-radius: 12px;
  margin-right: 10px;
  margin-left: 10px;
  margin-bottom: 20px;
  background-color: #f4f7f6;
  padding: 20px 10px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-detail-box:hover { transform: translateY(-5px); box-shadow: 0 5px 15px rgba(21, 101, 192, 0.1); }

.contact-heading { display: inline-block; color: var(--button-text-footer) !important; padding-left: 5px; font-weight: 600; font-size: 18px; margin-top: 10px; }
.inner-contact-para { font-size: 14px; text-align: center; color: var(--default-color) !important; margin-bottom: 0; }

.contact-icon-box {
  display: inline-flex; align-items: center; justify-content: center;
  width: 50px; height: 50px; border-radius: 50%;
  background-color: rgba(21, 101, 192, 0.1);
}

.fa-envelope, .fa-location-dot, .fa-clock, .fa-phone { color: var(--nav-color) !important; font-size: 20px; opacity: 1 !important; }

/* Form */
label { font-size: 16px; margin-top: 15px; margin-bottom: 5px; color: var(--button-text-footer) !important; font-weight: 500; }

.form-control {
  border: 1px solid #cfd8dc; border-radius: 8px; padding: 12px;
  font-size: 15px; color: var(--button-text-footer); transition: all 0.3s ease;
}

.form-control:focus { border-color: var(--nav-color) !important; box-shadow: 0 0 0 0.2rem rgba(21, 101, 192, 0.15) !important; }

.contact-form-submit { margin-top: 25px; display: flex; justify-content: center; }

.contact-submit-btn {
  background-color: var(--nav-color); border: 2px solid var(--nav-color);
  color: var(--extra-color) !important; padding: 12px 40px; border-radius: 50px;
  font-weight: 600; font-size: 16px; transition: all 0.3s ease;
}

.contact-submit-btn:hover { background-color: var(--button-text-footer) !important; border-color: var(--button-text-footer) !important; color: var(--extra-color) !important; transform: translateY(-2px); }

/* =========================================
   MAP SECTION (TWO MAPS)
   ========================================= */
.map-container { margin-top: 60px; margin-bottom: 0px; }

.map-wrapper {
  background-color: var(--extra-color);
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border: 1px solid #e0e0e0;
  height: 100%;
}

.map-heading {
  color: var(--button-text-footer);
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

.map-heading i {
  color: var(--nav-color);
}

.map { 
  display: flex; 
  justify-content: center; 
}

iframe { 
  border-radius: 12px; 
  box-shadow: 0 4px 15px rgba(0,0,0,0.05); 
  border: 1px solid #e0e0e0; 
  width: 100%; 
}

/* Responsive for Maps */
@media (max-width: 768px) {
  .contact-hero { min-height: 300px; }
  .hero-title { font-size: 36px; }
  .contact-details { margin-top: -30px; }
  .contact-sections { padding: 20px; margin: 10px; }
  
  .map-wrapper {
    margin-bottom: 20px;
  }
}

/* Subtitle (Same as other pages) */
.subtitle { font-size: large; color: var(--nav-color); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-main-heading { color: var(--button-text-footer) !important; font-weight: 700 !important; }

/* =========================================
   FAQ SECTION (Animated Accordion)
   ========================================= */
.faq-item {
  border: 1px solid #e0e0e0 !important;
  border-radius: 12px !important;
  margin-bottom: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  background-color: var(--extra-color);
}

.faq-item:hover {
  border-color: rgba(21, 101, 192, 0.3) !important;
  box-shadow: 0 5px 15px rgba(21, 101, 192, 0.08);
}

.faq-button {
  font-size: 17px;
  font-weight: 600;
  color: var(--button-text-footer) !important;
  background-color: var(--extra-color) !important;
  padding: 20px 25px;
  box-shadow: none !important;
  transition: all 0.3s ease;
}

.faq-button:hover {
  color: var(--nav-color) !important;
  background-color: rgba(21, 101, 192, 0.03) !important;
}

/* When Accordion is Open */
.faq-button:not(.collapsed) {
  color: var(--nav-color) !important;
  background-color: rgba(21, 101, 192, 0.05) !important;
  border-bottom: 2px solid var(--nav-color) !important;
}

/* Accordion Icon */
.faq-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%231565C0'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
  transition: all 0.3s ease;
}

.faq-body {
  padding: 20px 25px;
  color: var(--default-color);
  font-size: 15px;
  line-height: 1.6;
  text-align: justify;
}

/* Responsive */
@media (max-width: 768px) {
  .contact-hero { min-height: 300px; }
  .hero-title { font-size: 36px; }
  .contact-details { margin-top: -30px; }
  .contact-sections { padding: 20px; margin: 10px; }
}


/* Professional Map Styles */
#ficer-map { 
  height: 500px; 
  width: 100%; 
  border-radius: 16px; 
  z-index: 1;
}

.map-wrapper-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(21, 101, 192, 0.1);
  border: 1px solid #e0eaff;
  overflow: hidden;
  margin-bottom: 50px;
}

/* Satellite/Street Toggle Button Style */
.leaflet-control-layers {
  border-radius: 10px !important;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
  border: none !important;
  padding: 8px 12px !important;
  font-family: 'Inter', sans-serif !important;
}

/* Locate Me Button */
.locate-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  font-size: 16px;
  color: #1565C0;
  background: white;
  text-decoration: none;
}
.locate-btn a:hover {
  background: #f4f7f6;
}

/* Leaflet Popup Custom Style */
.leaflet-popup-content-wrapper {
  border-radius: 12px !important;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2) !important;
}
.leaflet-popup-tip {
  background: #fff !important;
}

@media (max-width: 768px) {
  #ficer-map { height: 350px; }
}


