body {
  font-family: "Source Sans 3";
}

/* Hero Section */
.hero-section {
  max-width: 100%;
  margin: 0 60px 0 60px;
  padding: 40px 20px;
}

.hero-header {
  margin-bottom: 30px;
}

.hero-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.hero-header h1 span {
  color: #CD684A;
}

.hero-breadcrumb {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
}

.hero-breadcrumb a {
  color: #243A5E;
  text-decoration: none;
}

.hero-breadcrumb span {
  margin: 0 2px;
}

.hero-breadcrumb .active {
  color: #CD684A;
  font-weight: 600;
}

.underline{
  display: block;
  margin-top: 7px;
  width: 150px;
  height: 2px;
  background:#243A5E; 
}

.hero-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
}

/* LARGE SCREENS (1400px+) */
@media (min-width: 1400px) {

  .hero-image img {
    height: 460px;
  }
}

/* LAPTOPS (1024px – 1399px) */
@media (max-width: 1399px) {

  .hero-image img {
    height: 400px;
  }
}

/* TABLETS (769px – 1024px) */
@media (max-width: 1024px) {
  .hero-section {
    margin: 0 30px;
    padding: 32px 20px;
  }

  .hero-header h1 {
    font-size: 36px;
  }

  .hero-image img {
    height: 340px;
    border-radius: 12px;
  }
}

/* SMALL TABLETS (600px – 768px) */
@media (max-width: 768px) {
  .hero-section {
    margin: 0 20px;
    padding: 28px 16px;
  }

  .hero-header h1 {
    font-size: 30px;
  }

  .hero-breadcrumb {
    font-size: 13px;
  }

  .hero-image img {
    height: 280px;
  }
}

/* MOBILE (≤ 480px) */
@media (max-width: 480px) {
  .hero-section {
    margin: 0 12px;
    padding: 24px 12px;
  }

  .hero-header {
    margin-bottom: 20px;
  }

  .hero-header h1 {
    font-size: 24px;
  }

  .hero-breadcrumb {
    font-size: 12px;
  }

  .hero-image img {
    height: 220px;
    border-radius: 10px;
  }
}

/* Get a Consultation */
.consultation-section {
  padding: 60px 20px;
}

.consultation-container {
  max-width: 1200px;
  margin: auto;
  background:#DADEE4;
  border-radius: 12px;
  padding: 50px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
}

.section-tag {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color:#222222;
  display: inline-block;
  margin-bottom: 5px;
}

.consultation-underline{
  display:block;
  right: 20px;
  width: calc(40% + 10px);
  height: 2.5px;
  background:#243A5E;
  margin-bottom: 20px;
}

.consultation-left h2 {
  font-size: 36px;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222222;
}

.consultation-left h2 span {
  color:#CD684A;
}

.consultation-left p {
  font-size: 15px;
  line-height: 1.7;
  color:#4A5565;
  max-width: 420px;
}

.contact-info {
  list-style: none;
  margin-top: 30px;
}

.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
  color:#4A5565;
}

#text{
  color:#4A5565;
}

.contact-info .icon {
  width: 36px;
  height: 36px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.consultation-form {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
  display: block;
  color:#222222;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #F3F3F3;
  font-size: 14px;
  outline: none;
}

.form-group textarea {
  min-height: 100px;
  resize: none;
}

.full-width {
  grid-column: 1 / -1;
  margin-top: 20px;
}

.submit-btn {
  margin-top: 20px;
  padding: 12px 28px;
  background: #1f3b73;
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  cursor: pointer;
}

/* LAPTOPS (1024px – 1199px) */
@media (max-width: 1199px) {

  .consultation-container {
    gap: 40px;
    padding: 40px;
  }

  .consultation-left h2 {
    font-size: 32px;
  }
}

/* TABLETS (768px – 1023px) */
@media (max-width: 1023px) {

  .consultation-container {
    grid-template-columns: 1fr;
    padding: 36px;
    gap: 40px;
  }

  .consultation-left p {
    max-width: 100%;
  }

  .consultation-form {
    padding: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-width {
    margin-top: 10px;
  }
}

/* MOBILE LARGE (481px – 767px) */
@media (max-width: 767px) {

  .consultation-section {
    padding: 40px 14px;
  }

  .consultation-container {
    padding: 28px;
    border-radius: 10px;
  }

  .consultation-left h2 {
    font-size: 26px;
  }

  .consultation-left p {
    font-size: 14px;
  }

  .contact-info li {
    font-size: 13px;
  }

  .contact-info .icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .consultation-form {
    padding: 22px;
  }

  .submit-btn {
    width: 100%;
    padding: 14px;
  }
}

/* MOBILE SMALL (≤480px) */
@media (max-width: 480px) {

  .consultation-section {
    padding: 32px 12px;
  }

  .consultation-container {
    padding: 22px;
  }

  .section-tag {
    font-size: 11px;
  }

  .consultation-left h2 {
    font-size: 22px;
  }

  .consultation-left p {
    font-size: 13px;
  }

  .form-group input,
  .form-group select,
  .form-group textarea {
    font-size: 13px;
    padding: 11px 12px;
  }

  .submit-btn {
    font-size: 13px;
  }
}

/* MAP SECTION */
.map-section {
  padding: 40px 20px;
}

.map-container {
  max-width: 1200px;
  margin: auto;
  border-radius: 16px;
  overflow: hidden;
}

.map-container img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

/* Plan with Confidence */
.cta-section {
  padding: 80px 20px;
}

.cta-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 24px;
  align-items: stretch;
}

/* LEFT IMAGE */
.cta-image-box {
  border-radius: 18px;
  overflow: hidden;
}

.cta-image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* RIGHT CONTENT */
.cta-content-box {
  background: #243A5E;
  border-radius: 18px;
  padding: 60px 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* TAG */
.cta-tag {
  font-size: 12px;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.85;
  margin-bottom: 6px;
}

.cta-underline {
  width: calc(20%);
  height: 2px;
  background: #ffffff;
  margin-bottom: 26px;
  opacity: 0.8;
}

/* HEADING */
.cta-content-box h2 {
  font-size: 36px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 18px;
  font-weight: 600;
}

/* PARAGRAPH */
.cta-content-box p {
  font-size: 15px;
  line-height: 1.6;
  color: #FFFFFF;
  max-width: 520px;
  margin: 0 auto 34px;
}

/* BUTTONS */
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  padding: 14px 30px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* PRIMARY BUTTON (WHITE) */
.btn.primary {
  background: #ffffff;
  color: #223a5e;
  border: none;
}

/* SECONDARY BUTTON (TEXT) */
.btn.secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid  #ffffff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .cta-content-box {
    padding: 40px 30px;
  }

  .cta-content-box h2 {
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .cta-content-box h2 {
    font-size: 26px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }
}
