/* VARIABLES */
:root {
  --primary: #0d4d91;
  --white: #ffffff;
  --black: #000000;
  --translucent-dark: rgba(0,0,0,0.75);
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* GLOBAL */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #fff; }

/* ===== Custom Scrollbar ===== */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0d4d91, #093769);
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(13, 77, 145, 0.5);
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #0f5db3, #0b3f79);
}

/* Firefox Scrollbar Styling */
* {
  scrollbar-width: thin;
  scrollbar-color: #0d4d91 rgba(255, 255, 255, 0.05);
}


/* NAVBAR */
.nav-wrap {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  transition: background 0.4s var(--ease);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 5%;
}
.logo { height: 50px;
border-radius: 60px; transform: scale(1.1); }

.nav-center {
  display: flex;
  gap: 2rem;
}
.nav-center a {
  text-decoration: none;
  color: var(--white);
  font-weight: 500;
  transition: color .3s;
}
.nav-center a:hover {
  color: var(--primary);
}

.search-btn {
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.2rem;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
}

.nav-wrap.scrolled {
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
}

.nav-wrap.scrolled .nav-center a,
.nav-wrap.scrolled .search-btn svg path {
  color: var(--white);
}
.nav-wrap.scrolled .nav-toggle span {
  background: var(--white);
}


/* MOBILE */
@media (max-width: 900px) {
  .nav-center { display: none; }
  .search-btn { display: none; }
  .menu-toggle { display: flex; }
}

/* Hamburger button */
.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
  position: relative;
}

.menu-toggle span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: white;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay background */
.overlay-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

/* Slide-in menu */
.slide-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  transition: right 0.35s ease;
  z-index: 1001;
}

/* Menu header */
.menu-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.slide-logo {
  max-height: 50px;
  border-radius: 50px;
}

.btn-close {
  font-size: 28px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}

/* Menu links */
.menu-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.menu-links a {
  color: #fff;
  border-bottom: 2px solid white;
  padding: 5px;
  border-radius: 5px;
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.menu-links a:hover {
  color: #1fabeb;
}

/* Active states */
.overlay-bg.active {
  opacity: 1;
  pointer-events: all;
}

.slide-menu.active {
  right: 0;
}

/* Hamburger animation to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile-first: everything is visible by default (as you have it) */

/* Desktop and larger screens: hide menu & toggle */
@media (min-width: 992px) {
  .menu-toggle {
    display: none; /* hide hamburger */
  }

  .overlay-bg {
    display: none; /* hide overlay */
  }

  .slide-menu {
    display: none; /* hide side menu */
  }
}



:root {
  --brand-blue: #1fa6eb;
  --black: #000000;
  --white: #ffffff;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 40vh;
  background: url('images/e15.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  animation: zoomIn 2s ease forwards;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* dim effect for readability */
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1rem;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

/* ZOOM ANIMATION */
@keyframes zoomIn {
  0% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }
}

:root {
  --brand-blue: #1fa6eb;
  --black: #000000;
  --white: #ffffff;
  --ease: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Contact Section */
.contact-section {
  width: 100%;
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
}

.contact-card {
  display: flex;
  max-width: 1200px;
  width: 100%;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  flex-wrap: wrap;
  overflow: hidden;
}

/* Left: Info */
.contact-info {
  flex: 1;
  min-width: 300px;
  background: linear-gradient(to right, var(--brand-blue), #f0faff);
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--black);
}

.contact-info h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.contact-info p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.info-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.info-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.info-list li i {
  color: var(--black);
  font-size: 1.2rem;
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 1rem;
}

.social-icons a {
  font-size: 1.5rem;
  color: var(--white);
  background: var(--black);
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s var(--ease);
}

.social-icons a:hover {
  transform: scale(1.2);
  color: var(--brand-blue);
  background: var(--black);
}

/* Divider */
.divider {
  width: 2px;
  background: linear-gradient(to bottom, var(--brand-blue), transparent);
  margin: 1rem 0;
}

/* Right: Form */
.contact-form {
  flex: 1;
  min-width: 300px;
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-form h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--brand-blue);
}

.contact-form p {
  margin-bottom: 1.5rem;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-form input {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s var(--ease);
}

.contact-form textarea {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-family: 'Inter', sans-serif;
  resize: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brand-blue);
  box-shadow: 0 0 10px rgba(31, 166, 235, 0.3);
}

.contact-form button {
  padding: 1rem 2rem;
  border: none;
  color: var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  border-radius: 8px;
  font-size: 1.1rem;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.contact-form button:hover {
  background: var(--brand-blue);
  color: var(--black);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-card {
    flex-direction: column;
    text-align: center;
  }

  .divider {
    width: 80%;
    height: 2px;
    margin: 2rem auto;
    background: linear-gradient(to right, var(--brand-blue), transparent, var(--brand-blue));
  }

  .contact-info, .contact-form {
    width: 100%;
    padding: 2rem 1.5rem;
    align-items: center;
  }

  .contact-form form {
    width: 100%;
    max-width: 500px;
  }
}

:root {
  --brand-blue: #1fa6eb;
  --black: #000000;
  --white: #ffffff;
}

/* FAQ SECTION */
.faq-section {
  padding: 4rem 2rem;
  background: var(--white);
  color: var(--black);
  font-family: 'Montserrat', sans-serif;
}

.faq-section .container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.5rem;
  color: var(--black);
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.faq-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--brand-blue);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

/* FAQ CARD */
.faq-card {
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 6px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.faq-card:hover {
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  padding: 1rem 1.5rem;
  background: none;
  border: none;
  border-radius: 10px;
  border-bottom: 3px solid #000000;
  color: var(--black);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-answer {
  padding: 1rem 1.5rem;
  display: none;
  background: #f9f9f9;
  color: var(--black);
  font-weight: 400;
  line-height: 1.6;
}

.faq-toggle {
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-card.active .faq-answer {
  display: block;
}

.faq-card.active .faq-toggle {
  transform: rotate(45deg);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }

  .faq-question {
    font-size: 1rem;
  }
}



.maps-section {
  padding: 4rem 2rem;
  background-color: white;
  font-family: 'Montserrat', sans-serif;
}

.maps-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.maps-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  transition: transform 0.5s ease;
}

.maps-container:hover iframe {
  transform: scale(1.02); /* subtle zoom effect */
}

/* Overlay Info Card */
.map-info-card {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(to right, black, #1fa6eb, black); /* brand blue */
  color: white;
  padding: 1.5rem 2rem;
  min-width: 250px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.map-info-card h3 {
  margin-bottom: 0.8rem;
  font-size: 1.5rem;
}

.map-info-card p {
  margin: 0.5rem 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-info-card:hover {
  transform: translateY(-5px);
  opacity: 0.95;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .maps-container iframe {
    height: 300px;
  }

  .map-info-card {
    top: 15px;
    right: 15px;
    padding: 1rem 1.2rem;
    min-width: 200px;
  }

  .map-info-card h3 {
    font-size: 1.2rem;
  }

  .map-info-card p {
    font-size: 0.9rem;
  }
}



/* ---------- PREMIUM FOOTER STYLES ---------- */
.fd-footer { 
  --brand: #1fa6eb;
  --black: #020204;
  --glass: rgba(255,255,255,0.06);
  font-family: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, 'Montserrat', sans-serif;
  color: #fff;
  position: relative;
  z-index: 40;
}

/* lighter, professional gradient footer */
.fd-footer .fd-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 64px 24px;
  background: linear-gradient(
    120deg,
    #ffffff 0%,        /* soft white */
    #1fabeb 70%         /* light professional blue */
  );
  box-shadow: 0 10px 40px rgba(3, 6, 18, 0.15), /* lighter shadow for airy feel */
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
}


/* grid layout */
.fd-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 28px;
  align-items: start;
}

/* Brand column */
.fd-brand { text-align: left; }
.fd-logo { height: 56px; display:block; margin-bottom:18px; filter: drop-shadow(0 6px 18px rgba(0,0,0,0.6)); transform: scale(2.5); margin-left: 30px; }
.fd-blurb {
  color: rgba(0, 0, 0, 0.92);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 420px;
  font-weight: 300;
}

/* Social icons */
.fd-socials { display:flex; gap:12px; margin-top:6px; }
.fd-socials .social {
  display:inline-flex;
  width:40px;height:40px;border-radius:10px;align-items:center;justify-content:center;
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color: #000000; text-decoration:none; border:1px solid rgba(255,255,255,0.06);
  transition: transform .22s cubic-bezier(.2,.9,.3,1), box-shadow .22s;
}
.fd-socials .social:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(13,77,145,0.28);
  background: linear-gradient(90deg, rgba(255,255,255,0.06), var(--brand));
}

/* Columns: links */
.fd-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: #000000;
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 0%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0.4) 100%
  );
  background-position: bottom;
  background-size: 100% 2px;
  background-repeat: no-repeat;
}

.fd-links ul, .fd-resources ul { list-style:none; padding:0; margin:0; }
.fd-links li, .fd-resources li { margin-bottom:10px; }
.fd-links a, .fd-resources a {
  color: rgba(0, 0, 0, 0.9);
  text-decoration:none;
  font-weight: 500;
  transition: color .18s;
}
.fd-links a:hover, .fd-resources a:hover { color: var(--brand); text-decoration: underline; text-underline-offset:4px; }

/* CTA column */
.fd-cta .fd-cta-box {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.04);
  padding: 18px;
  border-radius: 12px;
}
.fd-cta h4 { margin-top:0; margin-bottom:6px; }
.fd-cta .muted { color: rgba(0, 0, 0, 0.8); font-size:0.95rem; margin-bottom:12px; }

/* newsletter form */
.fd-news { display:flex; gap:10px; align-items:center; margin-bottom:12px; }
.fd-news input[type="email"]{
  flex:1; padding:10px 12px; border-radius:10px; border:1px solid rgba(255,255,255,0.08);
  background: rgba(0,0,0,0.35); color:#000000; outline:none; font-size:0.95rem;
}
.fd-news input::placeholder { color: rgba(255,255,255,0.6); }
.fd-news .btn-ghost {
  background: linear-gradient(90deg, rgba(255,255,255,0.06), var(--brand));
  color:#000000; padding:10px 14px; border-radius:10px; border:none; cursor:pointer;
  font-weight:600;
  transition: transform .18s, box-shadow .18s;
}
.fd-news .btn-ghost:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(13,77,145,0.26); }

/* policy links */
.policies { display:flex; gap:12px; margin-top:8px; flex-wrap:wrap; }
.policies a { color: rgba(255,255,255,0.75); font-size:0.92rem; text-decoration:none; }
.policies a:hover { color: var(--brand); text-decoration:underline; }

/* large divider */
.fd-divider {
  width: 90%;
  margin: 28px auto;
  border: none;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border-radius:2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.02) inset;
}

/* bottom row */
.fd-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding: 12px 10px 6px;
}
.fd-bottom p, .fd-bottom a { color: rgba(0, 0, 0, 0.7); font-size:0.92rem; text-decoration:none; }
.fd-legal { display:flex; gap:16px; align-items:center; }

/* small helpers */
.muted { color: rgba(0, 0, 0, 0.8); }
.sr-only { position:absolute !important; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; border:0; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .fd-top { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .fd-brand { order: 1; grid-column: 1 / -1; }
  .fd-cta { order: 4; grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .fd-container { padding: 36px 18px;}
  .fd-top { grid-template-columns: 1fr; gap:18px; }
  .fd-brand { text-align: center; }
  .fd-blurb { margin: 0 auto 12px; max-width: 100%; }
  .fd-socials { justify-content: center; }
  .fd-col h4 { text-align: center; }
  .fd-links ul, .fd-resources ul { display:flex; flex-direction:column; gap:8px; align-items:center; }
  .fd-bottom { flex-direction: column; gap:8px; text-align:center; }
  .fd-divider { width: 100%; }
}


/* === PAGE TRANSITION OVERLAY === */
#page-transition {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

#page-transition.active {
  opacity: 1;
  pointer-events: all;
}

/* === CORNERS === */
.corner {
  position: absolute;
  width: 50%;
  height: 50%;
/* Glassmorphism style */ background: rgba(255, 255, 255, 0.15);-webkit-backdrop-filter: blur(10px);; backdrop-filter: blur(10px);
  transform: scale(0);
  transform-origin: center;
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Corner positions */
.corner-top-left {
  top: 0;
  left: 0;
  transform-origin: top left;
}
.corner-top-right {
  top: 0;
  right: 0;
  transform-origin: top right;
}
.corner-bottom-left {
  bottom: 0;
  left: 0;
  transform-origin: bottom left;
}
.corner-bottom-right {
  bottom: 0;
  right: 0;
  transform-origin: bottom right;
}

/* Active animation */
#page-transition.active .corner {
  transform: scale(1);
}

/* === LOGO === */
.logo-wrapper {
  position: relative;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 1s ease 1.2s, transform 1s ease 1.2s;
}

#page-transition.active .logo-wrapper {
  opacity: 1;
  transform: scale(1);
}

.logo-wrapper img {
  width: 300px;
  max-width: 75vw;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* === FADE OUT === */
#page-transition.fade-out {
  opacity: 0;
  transition: opacity 0.8s ease;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .logo-wrapper img {
    width: 160px;
  }
}

.phone-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1px 2px; /* vertical and horizontal spacing */
  margin-top: 20px;
  justify-content: flex-start;
}

.phone-links h3 {
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: #000000;
}

.phone-links a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  padding: 10px 16px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.phone-links a i {
  font-size: 20px;
  color: #1fa6eb;
}

.phone-links a:hover {
  background-color: #1fa6eb;
  color: #fff;
}

.phone-links a:hover i {
  color: #fff;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .phone-links {
    justify-content: center;
    gap: 10px 15px;
  }
  .phone-links a {
    width: 100%;
    max-width: 300px;
    padding: 12px 16px;
    font-size: 16px;
  }
  .phone-links a i {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  .phone-links a {
    font-size: 15px;
    padding: 10px 14px;
    gap: 8px;
  }
  .phone-links a i {
    font-size: 16px;
  }
}

/* Responsive adjustments */
@media (max-width: 600px) {
  .phone-links {
    flex-direction: column;
    gap: 0px;
    justify-content: center;
  }
  .phone-links a {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    padding: 12px;
    font-size: 16px;
  }
  .phone-links a i {
    font-size: 16px;
  }
}
/* Service Areas Section */
.service-areas-section {
  width: 100%;
  padding: 3rem 2rem;
  display: flex;
  justify-content: center;
  background: #f9faff;
}

.service-areas-card {
  max-width: 800px;
  width: 100%;
  background: #ffffff;
  padding: 2rem 2.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
}

.service-areas-card h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: 2rem;
  color: #1fa6eb;
  margin-bottom: 1rem;
}

.service-areas-card p {
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.service-areas-card ul {
  list-style: disc inside;
  margin-bottom: 1.5rem;
  padding-left: 0;
  line-height: 1.7;
}

.service-areas-card ul li {
  margin-bottom: 0.5rem;
}

.visit-office-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  color: #1fa6eb;
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.visit-office-btn:hover {
  background: #0e84c7;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .service-areas-card {
    padding: 1.5rem 1.5rem;
  }

  .service-areas-card h2 {
    font-size: 1.8rem;
  }

  .visit-office-btn {
    padding: 0.7rem 1.5rem;
  }
}
