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

:root {
  --dark: #061b21;
  --dark-2: #0a2a31;
  --teal: #14c8b8;
  --teal-dark: #079184;
  --gold: #d8b46a;
  --white: #ffffff;
  --muted: #a9bdc2;
  --soft: #e9fffc;
  --glass: rgba(255, 255, 255, 0.08);
  --border: rgba(255, 255, 255, 0.14);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(20, 200, 184, 0.18), transparent 27%),
    radial-gradient(circle at 88% 8%, rgba(216, 180, 106, 0.12), transparent 22%),
    linear-gradient(180deg, #04171c, #061b21 45%, #09252b 100%);
  color: var(--white);
  overflow-x: hidden;
}

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

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

/* BACKGROUND */
.background-glow,
.bubble-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.background-glow {
  z-index: -3;
}

.bubble-layer {
  z-index: -2;
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(45px);
  opacity: 0.7;
  animation: glowMove 9s ease-in-out infinite;
}

.glow-1 {
  width: 360px;
  height: 360px;
  background: rgba(20, 200, 184, 0.24);
  left: -100px;
  top: 120px;
}

.glow-2 {
  width: 460px;
  height: 460px;
  background: rgba(216, 180, 106, 0.13);
  right: -160px;
  top: 260px;
  animation-delay: 2s;
}

.glow-3 {
  width: 320px;
  height: 320px;
  background: rgba(20, 200, 184, 0.14);
  left: 38%;
  bottom: -130px;
  animation-delay: 4s;
}

@keyframes glowMove {
  0%, 100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-32px) translateX(28px);
  }
}

/* BUBBLES */
.bubble-layer span {
  position: absolute;
  bottom: -120px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.95), rgba(255,255,255,0.12) 35%, rgba(20,200,184,0.2) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    inset 0 0 18px rgba(255,255,255,0.45),
    0 0 24px rgba(20,200,184,0.22);
  animation: bubbleRise linear infinite;
  opacity: 0;
}

.bubble-layer span:nth-child(1) { width: 42px; height: 42px; left: 6%; animation-duration: 15s; animation-delay: 0s; }
.bubble-layer span:nth-child(2) { width: 70px; height: 70px; left: 18%; animation-duration: 22s; animation-delay: 2s; }
.bubble-layer span:nth-child(3) { width: 36px; height: 36px; left: 34%; animation-duration: 16s; animation-delay: 4s; }
.bubble-layer span:nth-child(4) { width: 94px; height: 94px; left: 48%; animation-duration: 25s; animation-delay: 1s; }
.bubble-layer span:nth-child(5) { width: 54px; height: 54px; left: 62%; animation-duration: 18s; animation-delay: 3s; }
.bubble-layer span:nth-child(6) { width: 40px; height: 40px; left: 74%; animation-duration: 17s; animation-delay: 6s; }
.bubble-layer span:nth-child(7) { width: 82px; height: 82px; left: 86%; animation-duration: 24s; animation-delay: 5s; }
.bubble-layer span:nth-child(8) { width: 48px; height: 48px; left: 94%; animation-duration: 19s; animation-delay: 8s; }

@keyframes bubbleRise {
  0% {
    transform: translateY(0) scale(0.85);
    opacity: 0;
  }

  12% {
    opacity: 0.85;
  }

  75% {
    opacity: 0.55;
  }

  100% {
    transform: translateY(-118vh) scale(1.15);
    opacity: 0;
  }
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 22px 6%;
  background: rgba(6, 27, 33, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(20, 200, 184, 1), rgba(7, 145, 132, 1));
  display: grid;
  place-items: center;
  color: white;
  font-size: 23px;
  box-shadow: 0 16px 35px rgba(20, 200, 184, 0.24);
}

.logo strong {
  display: block;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 1;
}

.logo span {
  display: block;
  margin-top: 3px;
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 13px;
  font-weight: 800;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  font-size: 15px;
  font-weight: 800;
  color: rgba(255,255,255,0.84);
}

.nav-links a {
  transition: 0.25s;
}

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

.nav-button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(20, 200, 184, 0.26);
  transition: 0.25s;
}

.nav-button:hover {
  transform: translateY(-3px);
}

/* HERO */
.hero {
  min-height: 88vh;
  padding: 82px 6% 55px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 56px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(20, 200, 184, 0.1);
  border: 1px solid rgba(20, 200, 184, 0.22);
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 24px;
}

.hero h1 {
  max-width: 760px;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 5.8vw, 84px);
  line-height: 0.98;
  letter-spacing: -1.8px;
  margin-bottom: 26px;
}

.hero h1 span {
  display: block;
  color: var(--teal);
  text-shadow: 0 0 32px rgba(20, 200, 184, 0.22);
}

.hero p {
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 34px;
}

.btn {
  min-height: 58px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  transition: 0.25s;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  box-shadow: 0 18px 40px rgba(20, 200, 184, 0.28);
}

.btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  color: white;
}

.hero-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-trust div {
  min-width: 132px;
  padding: 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
}

.hero-trust strong {
  display: block;
  color: var(--gold);
  font-size: 26px;
  margin-bottom: 3px;
}

.hero-trust span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

/* HERO VISUAL */
.hero-image-card {
  position: relative;
  height: 620px;
  border-radius: 42px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.18);
  animation: imageFloat 5.5s ease-in-out infinite;
}

.hero-image-card img {
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(6,27,33,0.72), transparent 58%),
    linear-gradient(to right, rgba(6,27,33,0.18), transparent 48%);
}

@keyframes imageFloat {
  0%, 100% {
    transform: translateY(0) rotate(1deg);
  }

  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

.floating-card {
  position: absolute;
  border-radius: 22px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px);
  color: var(--dark);
  box-shadow: 0 20px 60px rgba(0,0,0,0.22);
  border: 1px solid rgba(255,255,255,0.72);
}

.floating-card.rating {
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 17px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
}

.google {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: #4285f4;
  font-size: 28px;
  font-weight: 900;
}

.floating-card strong {
  display: block;
}

.floating-card span {
  color: #65787c;
  font-size: 13px;
}

.floating-card.service {
  top: 28px;
  left: 22px;
  min-width: 230px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: smallFloat 4s ease-in-out infinite;
  z-index: 3;
}

.floating-card.service i {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
}

@keyframes smallFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* STRIP */
.premium-strip {
  margin: 0 6%;
  padding: 22px;
  border-radius: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.premium-strip div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  color: rgba(255,255,255,0.88);
  font-weight: 800;
}

.premium-strip i {
  color: var(--teal);
}

/* SECTIONS */
.section {
  padding: 95px 6%;
}

.section-heading {
  text-align: center;
  max-width: 830px;
  margin: 0 auto 50px;
}

.section-heading span,
.showcase-content span,
.contact-content span {
  display: inline-block;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin-bottom: 12px;
}

.section-heading h2,
.showcase-content h2,
.contact-content h2 {
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin-bottom: 16px;
}

.section-heading p,
.showcase-content p,
.contact-content p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.service-card {
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.service-card img {
  height: 230px;
  object-fit: cover;
}

.service-card div {
  padding: 25px;
}

.service-card i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  margin-bottom: 18px;
  font-size: 22px;
}

.service-card h3 {
  font-size: 23px;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  line-height: 1.65;
}

/* SHOWCASE */
.showcase {
  margin: 0 6%;
  padding: 34px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 40px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.1), rgba(20,200,184,0.09));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.showcase-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 22px 60px rgba(0,0,0,0.24);
}

.showcase-image img {
  height: 460px;
  object-fit: cover;
}

.check-list {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.check-list p {
  padding: 15px;
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  color: rgba(255,255,255,0.86);
  font-weight: 800;
}

.check-list i {
  color: var(--teal);
  margin-right: 7px;
}

/* PRICING */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.price-card {
  position: relative;
  padding: 32px;
  border-radius: 30px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.price-card:hover {
  transform: translateY(-10px);
  background: rgba(255,255,255,0.1);
}

.price-card.featured {
  border: 2px solid rgba(20,200,184,0.58);
  transform: translateY(-14px);
}

.price-card.featured:hover {
  transform: translateY(-22px);
}

.popular-badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--dark);
  background: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.price-top i {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(20,200,184,0.14);
  color: var(--teal);
  font-size: 24px;
  margin-bottom: 20px;
}

.price-card h3 {
  font-size: 25px;
  margin-bottom: 10px;
}

.price-card p {
  color: var(--muted);
  line-height: 1.65;
}

.price {
  margin: 24px 0;
  color: var(--teal);
  font-size: 56px;
  font-weight: 900;
  letter-spacing: -2px;
}

.price span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.price-card li {
  color: rgba(255,255,255,0.82);
}

.price-card li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
  font-weight: 900;
}

.price-card a {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 15px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-weight: 900;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.review-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.review-card:hover {
  transform: translateY(-10px);
}

.stars {
  color: var(--gold);
  letter-spacing: 2px;
  font-size: 22px;
  margin-bottom: 18px;
}

.review-card p {
  color: rgba(255,255,255,0.82);
  line-height: 1.72;
  margin-bottom: 24px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 13px;
}

.avatar {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: white;
  font-weight: 900;
}

.review-user strong {
  display: block;
}

.review-user span {
  color: var(--muted);
  font-size: 14px;
}

/* AREAS */
.areas-section {
  padding-top: 55px;
}

.areas-list {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
}

.areas-list span {
  padding: 13px 18px;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  border: 1px solid rgba(20,200,184,0.32);
  background: rgba(20,200,184,0.08);
  font-weight: 900;
  transition: 0.25s;
}

.areas-list span:hover {
  color: var(--dark);
  background: var(--teal);
  transform: translateY(-4px);
}

/* CONTACT */
.contact-section {
  margin: 0 6% 85px;
  padding: 34px;
  border-radius: 40px;
  display: grid;
  grid-template-columns: 0.85fr 0.9fr 1.2fr;
  gap: 28px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.11), rgba(20,200,184,0.08));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.contact-image {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.24);
}

.contact-image img {
  height: 390px;
  object-fit: cover;
  object-position: center;
}

.whatsapp-box {
  margin-top: 22px;
  padding: 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  transition: 0.25s;
}

.whatsapp-box:hover {
  transform: translateY(-4px);
}

.whatsapp-box i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #25d366;
  color: white;
  font-size: 28px;
}

.whatsapp-box strong {
  display: block;
  color: white;
}

.whatsapp-box span {
  color: var(--muted);
  font-size: 14px;
}

/* FORM */
.quote-form {
  padding: 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: 15px 16px;
  margin-bottom: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.16);
  outline: none;
  font: inherit;
  color: white;
  background: rgba(255,255,255,0.08);
  transition: 0.25s;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(255,255,255,0.55);
}

.quote-form select {
  color: rgba(255,255,255,0.78);
}

.quote-form option {
  color: #061b21;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(20,200,184,0.11);
}

.quote-form textarea {
  min-height: 120px;
  resize: vertical;
}

.quote-form button {
  width: 100%;
  border: none;
  padding: 16px;
  border-radius: 999px;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  font-weight: 900;
  font-size: 16px;
  cursor: pointer;
  transition: 0.25s;
}

.quote-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(20,200,184,0.26);
}

/* FOOTER */
footer {
  padding: 35px 6%;
  text-align: center;
  background: rgba(0,0,0,0.22);
  border-top: 1px solid var(--border);
  color: var(--muted);
}

footer strong {
  display: block;
  color: white;
  font-size: 20px;
  margin-bottom: 8px;
}

footer p {
  margin-top: 5px;
}

/* FLOATING */
.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: #25d366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 31px;
  z-index: 300;
  box-shadow: 0 18px 42px rgba(37,211,102,0.32);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0.44);
  }

  70% {
    box-shadow: 0 0 0 18px rgba(37,211,102,0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(37,211,102,0);
  }
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: 0.85s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-image img {
    height: 320px;
  }
}

@media (max-width: 980px) {
  .hero,
  .premium-strip,
  .showcase,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .nav-links,
  .nav-button {
    display: none;
  }

  .hero-image-card {
    height: 460px;
  }

  .floating-card.service {
    display: none;
  }

  .price-card.featured {
    transform: none;
  }

  .price-card.featured:hover {
    transform: translateY(-10px);
  }
}

@media (max-width: 700px) {
  .navbar {
    padding: 16px 5%;
  }

  .logo strong {
    font-size: 22px;
  }

  .hero,
  .section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .hero {
    padding-top: 55px;
  }

  .hero h1 {
    letter-spacing: -1px;
  }

  .services-grid,
  .check-list,
  .form-row {
    grid-template-columns: 1fr;
  }

  .showcase,
  .contact-section,
  .premium-strip {
    margin-left: 5%;
    margin-right: 5%;
    padding: 24px;
    border-radius: 28px;
  }

  .hero-image-card {
    height: 390px;
    border-radius: 30px;
  }

  .floating-card.rating {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}


/* Global same-font adjustment */
h1, h2, h3, h4, h5, h6,
.logo strong,
.logo span,
.hero-badge,
.section-heading span,
.section-heading h2,
.showcase-content span,
.showcase-content h2,
.contact-content span,
.contact-content h2,
.price-card h3,
.service-card h3,
.review-user strong,
footer strong {
  font-family: "Manrope", Arial, Helvetica, sans-serif !important;
}

.hero h1,
.section-heading h2,
.showcase-content h2,
.contact-content h2 {
  font-weight: 800;
  letter-spacing: -1px;
}

.logo strong {
  font-weight: 800;
}
