:root {
  --azure: #37a9e8;
  --azure-dark: #168bd0;
  --azure-light: #eef9ff;
  --white: #ffffff;
  --text: #08233f;
  --muted: #5f7182;
  --soft-border: rgba(55, 169, 232, 0.18);
  --shadow: 0 24px 70px rgba(8, 35, 63, 0.12);
}

* {
  box-sizing: border-box;
}

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

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* HEADER */

.site-header {
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--soft-border);
}

.nav {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 90px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-btn {
  background: var(--white);
  color: var(--text);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(8, 35, 63, 0.08);
  border: 1px solid var(--soft-border);
  transition: 0.2s ease;
}

.nav-btn:hover {
  background: var(--azure-light);
  color: var(--azure-dark);
}

/* DROPDOWN */

.dropdown-nav {
  position: relative;
}

.hamburger-btn {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 42px;
  padding: 0;
  cursor: pointer;
}

.hamburger-btn::-webkit-details-marker {
  display: none;
}

.hamburger-btn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
}

.dropdown-menu {
  position: absolute;
  right: 0;
  top: 52px;
  min-width: 190px;
  background: var(--white);
  border: 1px solid var(--soft-border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 50;
}

.dropdown-menu a {
  display: block;
  padding: 12px 14px;
  text-decoration: none;
  color: var(--text);
  border-radius: 12px;
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: var(--azure-light);
  color: var(--azure-dark);
}

/* HERO */

.hero {
  position: relative;
  overflow: hidden;
  padding: 120px 0;
  text-align: left;
  background:
    radial-gradient(circle at 82% 45%, rgba(255,255,255,0.9), transparent 26%),
    linear-gradient(115deg, #d9f2ff 0%, #ffffff 52%, #eaf8ff 100%);
}

.hero::before,
.quote-hero::before,
.contact-hero::before {
  content: "";
  position: absolute;
  background-image: url("images/logo.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}

.hero::before {
  width: 620px;
  height: 620px;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.16;
}

.hero-content {
  max-width: 680px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--azure-dark);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(3rem, 7vw, 5.7rem);
  line-height: 1;
  margin: 16px 0;
  letter-spacing: -0.06em;
  color: var(--text);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 15px;
}

h3 {
  font-size: 1.35rem;
  margin-top: 0;
}

.hero-text,
.section-intro {
  color: var(--muted);
  font-size: 1.2rem;
  max-width: 650px;
  margin: 0 0 32px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* BUTTONS */

.btn {
  border: none;
  display: inline-block;
  text-decoration: none;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  font-size: 1rem;
}

.primary {
  background: var(--azure);
  color: var(--white);
  box-shadow: 0 16px 35px rgba(55, 169, 232, 0.35);
}

.primary:hover {
  background: var(--azure-dark);
}

.secondary {
  background: var(--white);
  color: var(--text);
  border: 1px solid var(--soft-border);
}

/* ICONS */

.card-header {
  display: block;
}

.icon-circle {
  width: 90px;
  height: 90px;
  background: var(--azure-light);
  border: 1px solid rgba(22, 139, 208, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 25px rgba(22, 139, 208, 0.10);
}

.service-icon {
  width: 55px;
  height: 55px;
  object-fit: contain;
}

/* SECTIONS */

.section {
  padding: 85px 0;
}

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

.card,
.quote-form {
  background: var(--white);
  border-radius: 30px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--soft-border);
}

.card p,
.split p,
.form-note {
  color: var(--muted);
}

.soft {
  background: var(--azure-light);
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.trust-list {
  background: var(--white);
  border-radius: 30px;
  padding: 30px;
  box-shadow: var(--shadow);
}

.trust-list p {
  font-weight: 700;
  color: var(--text);
}

/* CTA */

.cta {
  text-align: center;
  padding: 90px 0;
  background: linear-gradient(135deg, var(--azure), var(--azure-dark));
  color: var(--white);
}

.cta p {
  color: rgba(255,255,255,0.85);
}

/* FOOTER */

.footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
  background: var(--white);
}

/* QUOTE PAGE */

.quote-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 35px;
  text-align: center;
  background: linear-gradient(180deg, var(--azure-light), var(--white));
}

.quote-hero::before {
  width: 520px;
  height: 520px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.16;
}

.quote-hero .container {
  position: relative;
  z-index: 2;
}

.quote-hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.quote-hero .hero-text,
.contact-hero .hero-text {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.form-wrap {
  max-width: 680px;
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.quote-form label {
  font-weight: 700;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px;
  border: 1px solid var(--soft-border);
  border-radius: 16px;
  font-size: 1rem;
  font-family: inherit;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 2px solid var(--azure);
  border-color: transparent;
}

.full {
  width: 100%;
  margin-top: 10px;
}

/* THANK YOU PAGE */

.thank-you {
  min-height: 65vh;
  display: flex;
  align-items: center;
}

.thank-you::before {
  opacity: 0.06;
}

.thank-you p {
  max-width: 620px;
  margin: 0 auto 28px;
  color: var(--muted);
  font-size: 1.2rem;
}

.thank-you-actions {
  justify-content: center;
}

/* CONTACT PAGE */

.contact-hero {
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
  text-align: center;
  background: linear-gradient(180deg, var(--azure-light), var(--white));
}

.contact-hero::before {
  width: 520px;
  height: 520px;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  z-index: 0;
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-card {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--soft-border);
}

.contact-email {
  display: inline-block;
  margin: 12px 0 30px;
  color: var(--azure-dark);
  font-weight: 600;
  text-decoration: none;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
}

.social-icon {
  width: 50px;
  height: 50px;
  transition: 0.2s ease;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* SERVICES PAGE */

.service-detail-card {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  background: var(--white);
  border-radius: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--soft-border);
}

.service-detail-card h3 {
  color: var(--azure-dark);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.9rem;
}

.service-detail-card ul {
  padding-left: 22px;
  color: var(--muted);
}

.service-detail-card li {
  margin-bottom: 10px;
}

/* MOBILE */

@media (max-width: 800px) {

    .nav {
    justify-content: center;
    padding: 0;
  }

  .logo img {
    height: 90px;
  }

  .main-nav {
    justify-content: center;
  }

  .nav-btn {
    padding: 9px 15px;
    font-size: 0.92rem;
  }

  .dropdown-menu {
    right: 50%;
    transform: translateX(50%);
  }

  .hero {
    padding: 80px 0;
    text-align: center;
  }

  .hero::before {
    width: 420px;
    height: 420px;
    right: 50%;
    top: 52%;
    transform: translate(50%, -50%);
    opacity: 0.09;
  }

  .hero-text,
  .section-intro {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .cards,
  .split {
    grid-template-columns: 1fr;
  }

  .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
  }

  .card-header h3 {
    margin: 0;
  }

  .icon-circle {
    width: 72px;
    height: 72px;
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .service-icon {
    width: 44px;
    height: 44px;
  }

  .section {
    padding: 58px 0;
  }

  .quote-hero::before {
    width: 360px;
    height: 360px;
    right: 50%;
    top: 52%;
    transform: translate(50%, -50%);
    opacity: 0.10;
  }

  .thank-you::before {
    opacity: 0.06;
  }

  .contact-hero::before {
    width: 360px;
    height: 360px;
    right: 50%;
    top: 52%;
    transform: translate(50%, -50%);
    opacity: 0.06;
  }

  .contact-card,
  .service-detail-card {
    padding: 28px;
  }

  .social-icon {
    width: 42px;
    height: 42px;
  }
  }

  /* REFERRAL SECTION */

.referral {
  background: var(--white);
}

.referral-card {
  max-width: 760px;
  margin: 0 auto;
  padding: 45px;
  text-align: center;

  background: linear-gradient(
    135deg,
    var(--azure-light),
    var(--white)
  );

  border: 1px solid var(--soft-border);
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.referral-card h2 {
  margin-bottom: 18px;
}

.referral-text {
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 18px;
}

.referral-note {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 800px) {

  .referral-card {
    padding: 30px 24px;
  }

  .referral-text {
    font-size: 1.05rem;
  }

}