.contact-hero {
  position: relative;
  width: 100%;
  height: 400px; /* adjust as needed */
  background: url("../images/contact-image.jpg") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
}

.contact-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

.contact-hero-content {
  color: #fff;
  max-width: 800px;
}

.contact-hero .contact-breadcrumbs {
  font-size: 16px;
  margin-bottom: 15px;
  color: #d1d5db;
}

.contact-hero .contact-breadcrumbs a {
  color: #fff;
  font-size: 20px;
}

.contact-hero .contact-breadcrumbs a:hover {
  text-decoration: underline;
}

.contact-hero h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: "Roboto", Arial, sans-serif;
}

.contact-hero .contact-description {
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
}

/* Contact upper section styling */
:root {
  --brand-red: #b72025;
  --text-dark: #333;
  --bg-light: #f9f9f9;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  padding: 40px;
  background-color: var(--bg-light);
}

.contact-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
  border-bottom: 4px solid transparent;
}

.contact-card:hover {
  transform: translateY(-5px);
  border-bottom: 4px solid #0a2f7e;
}

.icon-box {
  background: #0a2f7e;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}

.info h4 {
  margin: 0 0 15px 0;
  font-size: 1.25rem;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.info p,
.info a {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0;
  font-size: 0.98rem;
  line-height: 1.7;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #4b5563;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Links style */
.info a {
  color: #2563eb;
  font-weight: 600;
  position: relative;
}

/* Hover effect */
.info a:hover {
  color: #1d4ed8;
  transform: translateX(3px);
}

/* Animated underline */
.info a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  transition: width 0.3s ease;
}

.info a:hover::after {
  width: 100%;
}

.info span {
  font-weight: bold;
  color: #0a2f7e;
}

.info a:hover {
  color: #0a2f7e;
}

/* Quote section styling */
:root {
  --primary-red: #b72025;
  --dark-grey: #2d2d2d;
  --soft-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.expert-connect {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  background: #fdfdfd;
}

.container-1 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1100px;
  align-items: center;
  gap: 50px;
}

/* Image/Pattern Styling */
.image-wrapper {
  position: relative;
}

.dot-pattern {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 250px;
  background-image: radial-gradient(#d1d1d1 2px, transparent 2px);
  background-size: 20px 20px;
  z-index: 1;
}

.expert-img {
  width: 100%;
  position: relative;
  z-index: 2;
  filter: drop-shadow(10px 10px 20px rgba(0, 0, 0, 0.1));
}

/* Form Card Styling */
.form-card {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: var(--soft-shadow);
  border: 1px solid #f0f0f0;
}

.form-header h2 {
  font-size: 2.2rem;
  color: var(--dark-grey);
  margin-bottom: 10px;
}

.form-header span {
  color: #0a2f7e;
}

.accent-line {
  width: 50px;
  height: 4px;
  background: #0a2f7e;
  margin-bottom: 30px;
  border-radius: 2px;
}

/* Input Styling */
.input-group {
  margin-bottom: 20px;
}

input,
textarea {
  width: 100%;
  padding: 15px 0;
  border: none;
  border-bottom: 2px solid #e0e0e0;
  font-size: 1rem;
  transition: border-color 0.3s;
  outline: none;
}

input:focus,
textarea:focus {
  border-bottom-color: #0a2f7e;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin: 0;
  accent-color: #b72025;
}

.checkbox-group label {
  font-size: 16px;
  color: #b72025;
  cursor: pointer;
  line-height: 1;
  user-select: none;
  margin-left: 15px;
}

.checkbox-group label a {
  color: #333;
  text-decoration: none;
}

.checkbox-group label a:hover {
  text-decoration: underline;
}
.submit-btn {
  width: 100%;
  padding: 18px;
  background: #0a2f7e;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.3s;
}

.submit-btn:hover {
  background: #961a1e;
  transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container-1 {
    grid-template-columns: 1fr;
  }
  .image-wrapper {
    display: none;
  } /* Hide image on small mobile for focus */
  .form-card {
    padding: 30px;
  }
  .form-header h2 {
    font-size: 20px;
  }
}

/* location section styling */
.map-section {
  padding: 60px 0;
  background-color: #fdfdfd;
}

.map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.map-container iframe {
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 4px solid #fff;
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .map-container iframe {
    height: 300px;
  }
}
