* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #102033;
  background: #ffffff;
  line-height: 1.6;
}

.header {
  width: 100%;
  padding: 18px 8%;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dce8f2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
}

.logo {
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #102033;
  text-decoration: none;
}

nav a {
  color: #102033;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 700;
}

nav a:hover {
  color: #008bd2;
}

.hero {
  min-height: 86vh;
  padding: 80px 8%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 42px;
  align-items: center;
  color: white;
  background:
    linear-gradient(rgba(4, 32, 54, 0.82), rgba(4, 32, 54, 0.82)),
    radial-gradient(circle at top right, #1fb6ff, #07314f 45%, #031827);
}

.hero-content {
  max-width: 760px;
}

.eyebrow {
  color: #72d7ff;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  margin-bottom: 14px;
}

.eyebrow.dark {
  color: #008bd2;
}

h1 {
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
  margin-bottom: 22px;
}

.hero-text {
  font-size: 1.25rem;
  max-width: 650px;
  margin-bottom: 30px;
}

.hero-photo {
  width: 100%;
}

.hero-photo img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.35);
  border: 2px solid rgba(255, 255, 255, 0.18);
}

.buttons,
.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-start;
}

.center-buttons {
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 15px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  transition: 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.primary {
  background: #35c2ff;
  color: #041e33;
}

.secondary {
  border: 2px solid currentColor;
  color: white;
}

.secondary.dark {
  color: #102033;
}

.section {
  padding: 75px 8%;
}

.section h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 14px;
  line-height: 1.05;
}

.section-intro {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 38px;
  font-size: 1.08rem;
  color: #405367;
}

.light {
  background: #f3f8fc;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.service-card,
.plan-card {
  background: #ffffff;
  border: 1px solid #e1edf5;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(16, 32, 51, 0.08);
}

.service-card.featured {
  border: 2px solid #35c2ff;
}

.service-card h3,
.plan-card h3 {
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.price {
  font-size: 1.25rem;
  color: #008bd2;
  font-weight: 900;
  margin-bottom: 14px;
}

.tag {
  display: inline-block;
  background: #e7f7ff;
  color: #006ea8;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

ul {
  margin: 18px 0;
  padding-left: 22px;
}

li {
  margin-bottom: 7px;
}

.note,
.save {
  font-weight: 800;
  color: #102033;
  margin-top: 14px;
}

.sub-service {
  margin-top: 18px;
  padding: 18px;
  border-radius: 16px;
  background: #f3f8fc;
}

.sub-service h4 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.plan-card {
  position: relative;
}

.plan-card.popular {
  border: 2px solid #35c2ff;
  transform: scale(1.02);
}

.badge {
  display: inline-block;
  background: #041e33;
  color: #ffffff;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.gallery img {
  width: 100%;
  height: 270px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 35px rgba(16, 32, 51, 0.12);
  background: #dbeaf4;
}

.quote-section {
  background: #ffffff;
}

.quote-box {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  background: #f3f8fc;
  border: 1px solid #dce8f2;
  border-radius: 28px;
  padding: 48px 30px;
  box-shadow: 0 10px 35px rgba(16, 32, 51, 0.08);
}

.quote-box h2 {
  margin-bottom: 14px;
}

.quote-box p {
  max-width: 680px;
  margin: 0 auto 24px;
  color: #405367;
  font-size: 1.08rem;
}

.contact {
  text-align: center;
  background: #071f33;
  color: white;
}

.contact p {
  margin-bottom: 24px;
  font-size: 1.15rem;
}

.contact .secondary {
  color: white;
}

.contact-buttons {
  justify-content: center;
}

footer {
  background: #041e33;
  color: white;
  text-align: center;
  padding: 24px 8%;
}

@media (min-width: 1000px) {
  .service-grid {
    grid-template-columns: 1.2fr 1fr 1.2fr;
  }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    margin: 0 auto;
  }

  .buttons {
    justify-content: center;
  }

  .hero-photo img {
    height: 420px;
  }
}

@media (max-width: 950px) {
  .header {
    flex-direction: column;
    gap: 12px;
  }

  nav {
    text-align: center;
  }

  nav a {
    display: inline-block;
    margin: 5px 8px;
  }

  .plan-grid,
  .gallery {
    grid-template-columns: 1fr;
  }

  .plan-card.popular {
    transform: none;
  }

  .hero {
    min-height: 75vh;
    padding: 70px 8%;
  }

  .contact-buttons {
    justify-content: center;
  }

  .gallery img {
    height: 240px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 6%;
  }

  .hero {
    padding: 60px 6%;
  }

  .hero-photo img {
    height: 300px;
  }

  .service-card,
  .plan-card {
    padding: 24px;
  }

  .quote-box {
    padding: 36px 22px;
  }
}
