:root {
  --ocean: #0077b6;
  --sky: #00b4d8;
  --seafoam: #90e0ef;
  --sand: #f5efe2;
  --warm: #e9c46a;
  --coral: #f4a261;
  --dark: #193140;
  --mid: #446173;
  --light: #f4f9fc;
  --white: #ffffff;
  --text: #243746;
  --muted: #5a7080;
  --border: #d7e6ef;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(0, 119, 182, 0.94);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.4px;
}

.nav-logo span {
  color: var(--warm);
}

.nav-links {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav-links a:hover {
  color: var(--warm);
}

.nav-cta {
  background: var(--warm);
  color: var(--dark) !important;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: 800 !important;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.25s;
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 120;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 700;
}

.page-hero,
.hero {
  padding: 5rem 1.5rem;
  color: var(--white);
  text-align: center;
  background:
    linear-gradient(to bottom, rgba(7, 39, 61, 0.62), rgba(0, 89, 138, 0.55)),
    linear-gradient(135deg, #006994 0%, #0096c7 40%, #48cae4 100%);
}

.hero {
  min-height: 76vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-content,
.page-hero-inner {
  max-width: 920px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  margin-bottom: 1rem;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

h1,
.hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 5vw, 3.9rem);
  line-height: 1.1;
  font-weight: 800;
}

.hero p,
.page-hero p {
  max-width: 720px;
  margin: 0 auto 1.6rem;
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.9);
}

.hero-actions,
.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1.4rem;
}

.hero-review {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-review .stars {
  margin-bottom: 0;
  color: var(--warm);
  font-size: 1rem;
}

.hero-review-text {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 700;
}

.hero-review-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.5rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.2s, background 0.2s, color 0.2s;
}

.btn-primary {
  background: var(--warm);
  color: var(--dark);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-outline:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--white);
  color: var(--ocean);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, 0.82);
  color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.stat {
  min-width: 120px;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--white);
}

.stat span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.82);
  text-transform: uppercase;
  letter-spacing: 1px;
}

section {
  padding: 4.5rem 1.5rem;
}

.alt-section {
  background: var(--light);
}

.container {
  max-width: 1120px;
  margin: 0 auto;
}

.section-tag {
  margin-bottom: 0.5rem;
  color: var(--ocean);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.section-title {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.15;
  color: var(--dark);
}

.section-sub {
  max-width: 760px;
  margin: 0 0 2.25rem;
  color: var(--muted);
  font-size: 1rem;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-left: auto;
  margin-right: auto;
}

.grid-2,
.grid-3,
.grid-4,
.card-grid,
.blog-grid,
.city-grid,
.trust-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3,
.city-grid,
.blog-grid,
.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4,
.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card,
.city-card,
.blog-card,
.trust-card,
.content-card,
.faq-item,
.testimonial,
.policy-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  box-shadow: 0 8px 26px rgba(0, 78, 120, 0.08);
}

.card,
.trust-card,
.content-card,
.policy-box {
  padding: 1.5rem;
}

.city-card,
.blog-card {
  overflow: hidden;
}

.city-card img,
.blog-card img,
.feature-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.city-card-body,
.blog-card-body {
  padding: 1.5rem;
}

.city-card h3,
.blog-card h3,
.content-card h3,
.policy-box h3,
.trust-card h3,
.testimonial h3 {
  margin: 0 0 0.6rem;
  color: var(--dark);
  font-size: 1.15rem;
}

.card p,
.city-card p,
.blog-card p,
.content-card p,
.policy-box p,
.trust-card p,
.testimonial p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 0.45rem;
  color: var(--ocean);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.link-arrow {
  color: var(--ocean);
  font-weight: 800;
}

.split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.prose p,
.prose li {
  color: var(--muted);
  font-size: 0.98rem;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0;
  padding-left: 1.1rem;
}

.check-list {
  display: grid;
  gap: 0.9rem;
}

.check-list div {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  color: var(--muted);
}

.check-list strong {
  color: var(--dark);
}

.cta-band {
  background: linear-gradient(135deg, var(--ocean), var(--dark));
  color: var(--white);
}

.cta-band .section-title,
.cta-band .section-sub {
  color: var(--white);
}

.cta-band .section-sub {
  opacity: 0.86;
}

.inline-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.inline-links a {
  color: var(--seafoam);
  font-weight: 700;
}

.faq-item {
  padding: 1.25rem 1.3rem;
}

.faq-item + .faq-item {
  margin-top: 0.9rem;
}

.faq-item h3 {
  margin: 0 0 0.5rem;
  color: var(--dark);
  font-size: 1rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.testimonial {
  padding: 1.5rem;
}

.stars {
  color: #d38b1f;
  letter-spacing: 2px;
  font-size: 1rem;
  margin-bottom: 0.6rem;
}

.quote {
  font-style: italic;
}

.meta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.85rem;
}

.crumbs {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1rem;
}

.crumbs a {
  color: rgba(255, 255, 255, 0.92);
}

footer {
  padding: 2.5rem 1.5rem;
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-logo span {
  color: var(--warm);
}

.footer-col h4 {
  margin: 0 0 0.8rem;
  color: var(--white);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col a {
  display: block;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-col a:hover {
  color: var(--seafoam);
}

.footer-bottom {
  max-width: 1120px;
  margin: 1.75rem auto 0;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

@media (max-width: 960px) {
  .grid-3,
  .grid-4,
  .card-grid,
  .city-grid,
  .blog-grid,
  .trust-grid,
  .split,
  .grid-2,
  .footer-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  nav {
    padding: 0.95rem 1rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .hero,
  .page-hero {
    padding: 4.2rem 1rem;
  }

  section {
    padding: 3.5rem 1rem;
  }

  .hero-stats {
    gap: 1.2rem;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
