/* FORCE SAME HEADER AS OTHER PAGES */

.topbar {
    background: #062B5A !important;
}

.navbar,
.header,
.main-header {
    background: #ffffff !important;
}

.nav-links a {
    color: #062B5A !important;
}

.nav-links a.active {
    color: #1DA7B2 !important;
}

.quote-btn,
.get-quote-btn {
    background: linear-gradient(90deg, #062B5A, #1DA7B2) !important;
    color: #fff !important;
}



:root {

  /* BRAND COLORS */
  --primary: #1DA7B2;
  --primary-dark: #062B5A;

  --secondary: #103A68;

  --light-teal: #38C4C9;

  --dark: #062B5A;

  --muted: #C9D4D8;

  --light-bg: #EDEDED;

  --white: #ffffff;
}

/* GLOBAL STYLES */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {

  color: var(--dark);

  background: var(--white);

  line-height: 1.6;

  margin: 0;
  padding: 0;

  scroll-behavior: smooth;
}

/* ========== HERO SECTION ========== */

.contact-hero {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;

  padding: 60px 10% 80px;
  margin-top: 0;

  background: linear-gradient(180deg,#ffffff,#EDEDED);

  overflow: hidden;
}

/* LEFT COLUMN */

.contact-hero .left {

  flex: 1;

  padding-top: 30px;

  animation: fadeInLeft 1s ease forwards;

  opacity: 0;
}

/* RIGHT COLUMN */

.contact-hero .right {

  flex: 1;

  background: #ffffff;

  border-radius: 14px;

  padding: 35px 28px;

  border: 1px solid #C9D4D8;

  box-shadow: 0 10px 28px rgba(6,43,90,0.08);

  animation: fadeInRight 1.2s ease forwards;

  opacity: 0;
}

/* BADGE */

.badge {

  display: inline-block;

  background: linear-gradient(
    135deg,
    #062B5A,
    #1DA7B2
  );

  color: #ffffff;

  padding: 10px 18px;

  font-size: 16px;

  font-weight: 600;

  border-radius: 6px;

  letter-spacing: 0.6px;

  margin-bottom: 15px;

  animation: fadeInUp 1.2s ease forwards;

  opacity: 0;
}

/* HEADINGS */

.contact-hero h1 {

  font-size: 42px;

  margin: 20px 0;

  line-height: 1.3;

  color: #062B5A;

  animation: fadeInUp 1.4s ease forwards;

  opacity: 0;
}

.contact-hero p {

  font-size: 16px;

  color: #555;

  margin-bottom: 20px;

  line-height: 1.7;

  text-align: justify;

  animation: fadeInUp 1.6s ease forwards;

  opacity: 0;
}

/* PHONE NUMBER */

.contact-hero h3{

  color:#1DA7B2;

  font-size:1.3rem;

  margin-bottom:24px;
}

/* FORM TITLE */

form h2 {

  text-align: center;

  margin-bottom: 20px;

  font-size: 22px;

  color: #062B5A;
}

/* FORM FIELDS */

form input,
form select,
form textarea {

  width: 100%;

  padding: 12px;

  margin: 8px 0;

  border: 1px solid #C9D4D8;

  border-radius: 6px;

  font-size: 14px;

  outline: none;

  transition: all 0.25s ease;

  box-sizing: border-box;

  background:#ffffff;

  color:#062B5A;
}

form input:focus,
form select:focus,
form textarea:focus {

  border-color: #1DA7B2;

  box-shadow: 0 0 0 3px rgba(29,167,178,0.15);
}

/* ROW */

.form-row {

  display: flex;

  gap: 15px;

  flex-wrap: wrap;
}

/* BUTTON */

.btn-submit {

  background: linear-gradient(
    135deg,
    #062B5A,
    #1DA7B2
  );

  color: #ffffff;

  padding: 12px;

  width: 100%;

  border: none;

  border-radius: 6px;

  cursor: pointer;

  font-size: 15px;

  font-weight: 600;

  transition: all 0.3s ease;
}

.btn-submit:hover {

  background: linear-gradient(
    135deg,
    #103A68,
    #38C4C9
  );

  transform: translateY(-2px);

  box-shadow: 0 10px 22px rgba(6,43,90,0.18);
}

/* MESSAGE */

#formMsg {

  margin-top: 10px;

  font-size: 14px;

  color: #1DA7B2;

  text-align: center;
}

/* BENEFITS */

.benefits {

  list-style: none;

  padding: 0;

  margin-top: 25px;
}

.benefits li {

  margin-bottom: 10px;

  font-size: 15px;

  color: #103A68;

  display: flex;

  align-items: center;

  gap: 8px;
}

.benefits li::before {

  content: "✔";

  color:#1DA7B2;

  font-weight:700;
}
/* ========== LOCATIONS SECTION ========== */
.locations {
  padding: 80px 7%;
  text-align: center;
  margin-top: -123px;
  background: var(--white);
}

.locations h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.subtext {
  width: 60%;
  margin: 0 auto 40px;
  color: #777;
  font-size: 15px;
}

.location-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.location-box {
  width: 30%;
  text-align: left;
  border-left: 3px solid var(--primary);
  padding-left: 20px;
  box-sizing: border-box;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 12px rgba(11, 94, 215, 0.1);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== RESPONSIVENESS ========== */
@media (max-width: 1024px) {
  .contact-hero {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 80px 6%;
  }

  .contact-hero .right {
    max-width: 600px;
    width: 100%;
  }

  .contact-hero h1 {
    font-size: 34px;
  }

  .contact-hero p {
    font-size: 15px;
  }

  .location-box {
    width: 45%;
  }

  .subtext {
    width: 80%;
  }
}

@media (max-width: 768px) {
  .contact-hero {
    padding: 60px 5%;
  }

  .contact-hero h1 {
    font-size: 30px;
  }

  .contact-hero p {
    font-size: 14px;
    font-size: 1.2rem;
  }

  .location-box {
    width: 80%;
    text-align: center;
    border-left: none;
    border-top: 3px solid var(--primary);
    padding-left: 0;
    padding-top: 15px;
  }

  .subtext {
    width: 90%;
  }
}

@media (max-width: 576px) {

  .contact-hero {
    padding: 60px 5%;
    margin-top: 0;
    gap: 25px;
  }


  .contact-hero h1 {
    font-size: 24px;
  }

  form h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  form input,
  form select,
  form textarea {
    font-size: 13px;
    padding: 10px;
  }

  .btn-submit {
    padding: 10px;
    font-size: 14px;
  }

  .subtext {
    width: 100%;
  }

  .location-box {
    width: 100%;
    padding-top: 12px;
  }
}

@media (max-width: 400px) {
  .contact-hero h1 {
    font-size: 22px;
    line-height: 1.3;
  }

  .contact-hero p {
    font-size: 13px;
  }

  .btn-submit {
    font-size: 13px;
    padding: 9px;
  }

  .benefits li {
    font-size: 14px;
  }

  .subtext {
    font-size: 14px;
  }
}
/* FIX HEADER FONT */

.nav-links a{
    font-family: 'Poppins', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color:#062B5A !important;
}

.nav-links a.active,
.nav-links a:hover{
    color:#1DA7B2 !important;
}

.topbar{
    background:#062B5A !important;
}

.navbar{
    background:#ffffff !important;
}
/* ===== EXACT HEADER FONT FIX ===== */

header,
.navbar,
.nav-links,
.nav-links a,
.topbar,
.quote-btn {
    font-family: 'Poppins', sans-serif !important;
}

.nav-links a{
    font-size: 18px !important;
    font-weight: 600 !important;
    letter-spacing: 0 !important;
    text-transform: none !important;
    color:#062B5A !important;
}

.quote-btn{
    font-size:18px !important;
    font-weight:600 !important;
}
/* ===== FORCE HEADER FONT EXACTLY LIKE OTHER PAGE ===== */

/* FIX HEADER FONT WITHOUT BREAKING ICONS */

header,
.navbar,
nav,
.menu,
.nav-links,
.nav-links a {
    font-family: 'Poppins', sans-serif !important;
}

/* MENU LINKS */
header nav ul li a,
.navbar nav ul li a,
.nav-links a{
    font-family:'Poppins',sans-serif !important;
    font-size:16px !important;
    font-weight:600 !important;
    color:#062B5A !important;
    letter-spacing:0 !important;
    text-transform:none !important;
}

/* ACTIVE LINK */
header nav ul li a:hover,
header nav ul li a.active{
    color:#1DA7B2 !important;
}

/* BUTTON */
.quote-btn,
.get-quote-btn{
    font-family:'Poppins',sans-serif !important;
    font-weight:600 !important;
}
/* FIX CONTACT SECTION BELOW HEADER */

.contact-hero{
    margin-top: 120px;
}