 .contact-main {
  padding: 0px 16px 80px;
  max-width: 1300px;
  margin: 0 auto;
  color: #0f172a;
}

@media (max-width: 1000px) {
  .contact-main {
    padding: 0px 12px 40px;
  }
}

.range-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  height: 200px;      
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  margin-bottom: 40px; 
}

.range-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../Pictures/Service/Feature 2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: brightness(0.6);            
  transform: scale(1.05);            
}

.range-hero-content {
  position: relative;
  max-width: 900px;
  padding: 20px 16px;
}

.range-hero-content h1 {
  font-size: 36px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.range-hero-content p {
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 700px) {
  .range-hero {
    height: 150px;
  }

  .range-hero-content h1 {
    font-size: 26px;
    letter-spacing: 0.12em;
  }

  .range-hero-content p {
    font-size: 14px;
  }
}

.range-section {
  max-width: 1400px;     
  margin: 0 auto;
  padding: 0px 3vw 70px; 
}

.range-header {
  text-align: center;
  margin-bottom: 32px;
}

.range-header h1 {
  font-size: 28px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #111827;
}

.range-header p {
  font-size: 14px;
  color: #6b7280;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 28px;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.info-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
  font-size: 13px;
}

.info-card h2 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 4px;
}

.info-card p a {
  color: #2f7fdc;
  font-weight: 600;
}

.contact-map h2,
.contact-social h2,
.contact-right h2 {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #111827;
  margin-bottom: 8px;
}

.contact-map {
  margin-bottom: 14px;
}

.map-frame {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
}

.map-frame iframe {
  width: 100%;
  height: 260px;
  border: 0;
}

.contact-social p a {
  color: #2f7fdc;
  font-size: 13px;
}

/* RIGHT SIDE: FORM */

.contact-right {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px 22px;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  font-size: 14px;
}

.contact-form {
  margin-top: 8px;
}

.form-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.form-row label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #6b7280;
  margin-bottom: 4px;
}

.form-row input,
.form-row textarea {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 8px 10px;
  font-size: 14px;
  outline: none;
  font-family: inherit;
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: #2f7fdc;
  box-shadow: 0 0 0 1px rgba(47, 127, 220, 0.2);
}

.contact-submit {
  margin-top: 6px;
  display: inline-block;
  padding: 10px 22px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border-radius: 999px;
  border: 1px solid #2f7fdc;
  background: #2f7fdc;
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.contact-submit:hover {
  background: #1f5fb0;
  transform: translateY(-2px);
}

.form-note {
  margin-top: 10px;
  font-size: 12px;
  color: #6b7280;
}

@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-right {
    order: -1;
  }

  .map-frame iframe {
    height: 220px;
  }
}

@media (max-width: 600px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }


}
