@media (max-width: 1024px) {
  .root-body {
  padding-bottom: 70px;
  }
}

.header {
  background-color: #0000FF;
  border-bottom: 2px solid #FFC700;
  padding: 1.25rem 2rem;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
}

@media (max-width: 1024px) {
  .header {
  padding: 1rem;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .header-inner {
  flex-direction: column;
  gap: 1.25rem;
  align-items: center;
  }
}

.logo-svg-wrapper {
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  list-style: none;
}

@media (max-width: 1024px) {
  .nav-menu {
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 0;
  }
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.phone-btn {
  background-color: #FFC700;
  color: #0B1325;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(255, 199, 0, 0.2);
}

.services-section {
  padding: 7rem 2rem;
  background-color: #f8fafc;
}

@media (max-width: 1024px) {
  .services-section {
  padding: 4rem 1rem;
  }
}

.section-title {
  font-size: 2.75rem;
  font-weight: 900;
  color: #0B1325;
  text-align: center;
  margin-bottom: 0.75rem;
  font-family: "Outfit", "Inter Variable", sans-serif;
  letter-spacing: -0.01em;
}

@media (max-width: 1024px) {
  .section-title {
  font-size: 2rem;
  }
}

.section-subtitle {
  font-size: 1.15rem;
  color: #475569;
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4.5rem auto;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .section-subtitle {
  margin-bottom: 3rem;
  font-size: 1.05rem;
  }
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .services-grid {
  grid-template-columns: 1fr;
  gap: 1.25rem;
  }
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 2.5rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

@media (max-width: 1024px) {
  .service-card {
  padding: 1.75rem;
  align-items: center;
  text-align: center;
  }
}

.service-icon {
  background-color: rgba(0, 0, 255, 0.08);
  color: #0000FF;
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.service-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: #0B1325;
  margin-bottom: 0.75rem;
  font-family: "Outfit", "Inter Variable", sans-serif;
}

.service-desc {
  font-size: 0.975rem;
  color: #475569;
  line-height: 1.6;
}

.why-section {
  background-color: #0B1325;
  color: #ffffff;
  padding: 7rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

@media (max-width: 1024px) {
  .why-section {
  padding: 4rem 1rem;
  }
}

.why-eyebrow {
  font-size: 0.8rem;
  font-weight: 800;
  color: #FFC700;
  background-color: rgba(0, 0, 255, 0.25);
  border: 1px solid #0000FF;
  padding: 0.35rem 1rem;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 1.5rem;
  text-align: center;
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  font-family: "Outfit", "Inter Variable", sans-serif;
}

.why-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  max-width: 650px;
  margin: 0 auto 4.5rem auto;
  line-height: 1.65;
}

@media (max-width: 1024px) {
  .why-subtitle {
  margin-bottom: 3rem;
  font-size: 1.05rem;
  }
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 3.5rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1024px) {
  .why-grid {
  grid-template-columns: 1fr;
  gap: 2.5rem;
  }
}

.why-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-icon {
  background-color: #0000FF;
  color: #FFC700;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.why-title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  font-family: "Outfit", "Inter Variable", sans-serif;
}

.why-desc {
  font-size: 0.975rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.6;
}

.areas-section {
  padding: 6rem 2rem;
  background-color: #ffffff;
  text-align: center;
}

@media (max-width: 1024px) {
  .areas-section {
  padding: 4rem 1rem;
  }
}

.areas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
  max-width: 900px;
  margin: 0 auto;
}

.area-tag {
  background-color: rgba(0, 0, 255, 0.05);
  border: 1px solid rgba(0, 0, 255, 0.15);
  color: #0000FF;
  padding: 0.65rem 1.35rem;
  border-radius: 9999px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.2s ease;
  cursor: default;
}

.info-section {
  padding: 7rem 2rem;
  background-color: #f8fafc;
  border-top: 1px solid #e2e8f0;
}

@media (max-width: 1024px) {
  .info-section {
  padding: 4rem 1rem;
  }
}

.info-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  width: 100%;
}

@media (max-width: 1024px) {
  .info-inner {
  grid-template-columns: 1fr;
  gap: 3.5rem;
  }
}

.info-col-left {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.info-icon {
  color: #0000FF;
  margin-top: 0.25rem;
}

.info-label {
  display: block;
  font-weight: 800;
  color: #0B1325;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
  font-family: "Outfit", "Inter Variable", sans-serif;
}

.info-val {
  display: block;
  color: #475569;
  font-size: 1rem;
  line-height: 1.6;
  text-decoration: none;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background-color: #ffffff;
  padding: 2.5rem;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 10px 15px -3px rgba(15, 37, 92, 0.03), 0 4px 6px -4px rgba(15, 37, 92, 0.03);
}

@media (max-width: 1024px) {
  .hours-list {
  padding: 1.5rem;
  }
}

.hours-row {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.975rem;
  color: #475569;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed #e2e8f0;
}

.hours-day {
  font-weight: 700;
  color: #1e293b;
}

.footer {
  background-color: #0000FF;
  color: #ffffff;
  padding: 6rem 2rem 3rem 2rem;
  border-top: 4px solid #FFC700;
}

@media (max-width: 1024px) {
  .footer {
  padding: 4rem 1rem 2.5rem 1rem;
  }
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 5rem;
  margin-bottom: 4rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-inner {
  grid-template-columns: 1fr;
  gap: 3rem;
  text-align: center;
  }
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .footer-col {
  align-items: center;
  }
}

.footer-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 320px;
}

@media (max-width: 1024px) {
  .footer-desc {
  max-width: 100%;
  }
}

.footer-heading {
  font-size: 1.1rem;
  font-weight: 800;
  color: #FFC700;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  margin-bottom: 0.5rem;
  font-family: "Outfit", "Inter Variable", sans-serif;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  list-style: none;
  padding: 0;
}

@media (max-width: 1024px) {
  .footer-links {
  align-items: center;
  }
}

.footer-link {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
  width: 100%;
}

@media (max-width: 1024px) {
  .footer-bottom {
  flex-direction: column;
  gap: 1.25rem;
  text-align: center;
  }
}

.mobile-action-bar {
  display: none;
}

@media (max-width: 1024px) {
  .mobile-action-bar {
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: #0B1325;
  border-top: 2px solid #FFC700;
  padding: 0.75rem 1rem;
  gap: 0.75rem;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.3);
  }
}

.mab-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 0.4rem;
  border-radius: 8px;
  font-weight: 800;
  font-size: 0.75rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition: all 0.2s ease;
  text-align: center;
  line-height: 1.2;
}

.mab-btn-call {
  background-color: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.mab-btn-quote {
  background-color: #FFC700;
  color: #0B1325;
}

.nav-link:hover {
  color: #FFC700;
}

.phone-btn:hover {
  background-color: #eab308;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(255, 199, 0, 0.3);
}

.book-btn:hover {
  background-color: #FFC700;
  color: #0B1325;
}

.btn-primary:hover {
  background-color: #facc15;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(234, 179, 8, 0.35);
}

.btn-secondary:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-1px);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 255, 0.12), 0 10px 10px -5px rgba(0, 0, 255, 0.06);
  border-color: #0000FF;
}

.service-card:hover .service-icon {
  background-color: #0000FF;
  color: #ffffff;
}

.area-tag:hover {
  background-color: #0000FF;
  color: #ffffff;
  border-color: #0000FF;
  transform: scale(1.03);
}

.footer-link:hover {
  color: #FFC700;
}