:root {
    --pasa-blue:#2E8BC0;
    --pasa-hover:#333;
    --pasa-grey:#444;
    --pasa-orange:#f59e0b;
    --pasa-border:#e5e7eb;
    
  }
  
/* =========================
   Contact Section Styles
========================= */

.contact-section {
  padding-top: 8rem;   
  padding-bottom: 4rem; 
  background-color:rgb(155, 175, 197); 
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827; 
  margin-bottom: 1rem;
}

.contact-description {
  font-size: 1.125rem;
  color: black; 
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.6;
}


@media (min-width: 768px) {
  .contact-title {
    font-size: 3rem;
  }
}


.contact-section svg {
  width: 24px;
  height: 24px;
  display: inline-block;
  flex-shrink: 0;
}

/* ===============================
   Main Section & Container
================================ */
.contact-main-section {
  padding: 4rem 0;
  background: #fff;
}

.contact-main-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 1rem;
}

/* ===============================
   Grid Layout
================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* ===============================
   Form Card
================================ */
.contact-form-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 2rem;
  border: 1px solid var(--pasa-border);
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.contact-card-title {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Form */
.contact-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}

.contact-field input,
.contact-field textarea {
  border: 1px solid silver;
  border-radius: 0.5rem;
  padding: 0.6rem 0.75rem;
  font-size: 0.95rem;
  background-color: rgb(229, 231, 235);
}


/* Button */
.contact-submit-btn {
  width: 100%;
  background: var(--pasa-blue);
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.75rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}
.contact-submit-btn:hover{
  background: #3581ad;
}

/* ===============================
   Info Section
================================ */
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon-box {
  width: 48px;
  height: 48px;
  background: var(--pasa-blue);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-a{
    color: black;
}

/* ===============================
   Business Hours
================================ */
.contact-hours-card {
  background: slategray;
  border-radius: 1.25rem;
  padding: 1.5rem;
}
.contact-hours-icon{
     width: 38px;
  height: 38px;
  background: var(--pasa-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-hours-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.contact-hours-list div {
  display: flex;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--pasa-border);
}

/* ===============================
   Map
================================ */
.contact-map-section {
  margin-top: 4rem;
  text-align: center;
}

.contact-map-box {
  height: 400px;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--pasa-border);
}

.contact-map-box iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===============================
   SVG GLOBAL FIX
================================ */
.contact-main-section svg {
  width: 22px;
  height: 22px;
  stroke: #fff;
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}


