:root {
  --dark-teal: #0b2126;
  --white: #ffffff;
  --orange: #ff6f00;
  --orange-hover: #e65100;
  --text: #14213d;
  --muted: #5f6f89;
  --border: rgba(11, 33, 38, 0.14);
  --shadow: 0 24px 60px rgba(11, 33, 38, 0.14);
  --radius: 28px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: #0b2126;
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
.logo strong,
.btn,
.nav a {
  font-family: "Poppins", sans-serif;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 82px;
}

.logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-shrink: 0;
}

.logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.header-logo img {
  width: 190px;
  max-height: 58px;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: #0b2126;
  color: var(--white);
  font-size: 1.35rem;
  box-shadow: 0 10px 28px rgba(11, 33, 38, 0.14);
}

.logo strong {
  display: block;
  color: #0b2126;
  font-size: 1.15rem;
  line-height: 1.05;
}

.logo small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
}

.nav a {
  color: #0b2126;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 14px;
  background: #0b2126;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 16px 30px rgba(255, 111, 0, 0.28);
}

.btn-primary:hover {
  background: var(--orange-hover);
  box-shadow: 0 20px 38px rgba(255, 111, 0, 0.34);
}

.btn-secondary {
  background: var(--white);
  color: #0b2126;
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(11, 33, 38, 0.1);
}

.btn-secondary:hover {
  background: #0b2126;
  color: var(--white);
}

.btn-small {
  min-height: 44px;
  padding: 0 20px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 12% 20%, rgba(11, 33, 38, 0.14), transparent 34%),
    linear-gradient(135deg, #0b2126 0%, #0b2126 52%, #ffffff 100%);
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 999px;
  background: rgba(11, 33, 38, 0.08);
  filter: blur(1px);
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 120px;
  right: -90px;
}

.hero::after {
  width: 220px;
  height: 220px;
  bottom: 80px;
  left: -80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.9), transparent 30%),
    radial-gradient(circle at 82% 38%, rgba(11, 33, 38, 0.08), transparent 34%);
  opacity: 1;
  z-index: -1;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  align-items: center;
  gap: 54px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.hero h1 {
  max-width: 680px;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: #0b2126;
}

.hero-text {
  max-width: 610px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  list-style: none;
}

.trust-list li {
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #0b2126;
  font-weight: 600;
  box-shadow: 0 10px 22px rgba(11, 33, 38, 0.08);
}

.hero-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  animation: float 5s ease-in-out infinite;
}

.rating-card {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 24px;
  background: #0b2126;
  color: var(--white);
}

.rating-card span {
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
}

.rating-card strong {
  display: block;
  font-size: 1.05rem;
}

.rating-card p {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.hero-image {
  overflow: hidden;
  border-radius: 28px;
  background: #0b2126;
}

.hero-image img,
.why-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.floating-badge {
  position: absolute;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: #0b2126;
  font-weight: 800;
  box-shadow: var(--shadow);
  animation: float 4.4s ease-in-out infinite;
}

.badge-one {
  top: 110px;
  left: -34px;
}

.badge-two {
  right: -22px;
  bottom: 72px;
  animation-delay: 1.2s;
}

.section {
  padding: 100px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.why-content h2 {
  color: var(--white);
}

.section-heading p:not(.eyebrow) {
  color: #0b2126;
}

.why-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

.area-card p:not(.eyebrow),
.cta-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
}

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

.services .eyebrow,
.testimonials .eyebrow {
  color: #0b2126;
}

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

.service-card,
.testimonial-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(11, 33, 38, 0.1);
}

.check-list > div {
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
}

.area-card,
.cta-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #0b2126;
  box-shadow: 0 18px 42px rgba(11, 33, 38, 0.1);
}

.service-card {
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: rgba(11, 33, 38, 0.28);
  box-shadow: 0 28px 58px rgba(11, 33, 38, 0.16);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 22px;
  background: #0b2126;
  font-size: 1.8rem;
}

.service-image {
  display: block;
  width: 62px;
  height: 62px;
  margin-bottom: 22px;
  border-radius: 22px;
  object-fit: cover;
}

.service-card h3 {
  margin-bottom: 12px;
  color: #0b2126;
  font-size: 1.25rem;
}

.service-card p {
  color: #0b2126;
}

.why {
  background: linear-gradient(135deg, #0b2126, #0b2126);
}

.why-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 54px;
}

.check-list {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.check-list > div {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "icon title"
    "icon text";
  column-gap: 14px;
  padding: 20px;
}

.check-list span {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.check-list strong {
  grid-area: title;
  color: #0b2126;
}

.check-list p {
  grid-area: text;
  color: #0b2126;
}

.why-image {
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.why-image img,
.why-image-main {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

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

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

.testimonial-card {
  padding: 30px;
}

.stars {
  margin-bottom: 18px;
  color: #ffb300;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.testimonial-card p {
  min-height: 118px;
  color: #0b2126;
  font-size: 1.05rem;
}

.testimonial-card strong {
  display: block;
  margin-top: 22px;
  color: #0b2126;
}

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

.area-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 42px;
  background:
    linear-gradient(135deg, rgba(11, 33, 38, 0.96), rgba(11, 33, 38, 0.96)),
    url("https://images.unsplash.com/photo-1494526585095-c41746248156?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.area-card h2,
.cta-card h2 {
  color: var(--white);
}

.cta {
  background:
    radial-gradient(circle at 10% 20%, rgba(11, 33, 38, 0.14), transparent 28%),
    #0b2126;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 46px;
  background: #0b2126;
  color: var(--white);
}

.phone {
  margin-top: 14px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
}

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

.footer {
  background: #0b2126;
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr 1fr;
  gap: 32px;
  padding: 60px 0 42px;
}

.footer-logo img {
  width: 190px;
  max-height: 58px;
}

.footer-logo .logo-icon {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.footer-logo strong,
.footer-logo small {
  color: var(--white);
}

.footer p,
.footer h3,
.footer a {
  color: rgba(255, 255, 255, 0.82);
}

.footer h3 {
  margin-bottom: 14px;
  font-size: 1rem;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 999;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.36);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  animation: pulse 2.4s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 24px 46px rgba(37, 211, 102, 0.44);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

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

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

@media (max-width: 1024px) {
  .services-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .hero-card {
    max-width: 640px;
  }

  .why-image img {
    height: 420px;
  }
}

@media (max-width: 820px) {
  .nav {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 16px;
    border-radius: 14px;
  }

  .nav a:hover {
    background: #0b2126;
    color: var(--white);
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .header-logo img {
    width: 150px;
  }

  .hero {
    padding-top: 120px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .area-card,
  .cta-card {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    padding: 112px 0 64px;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .area-card {
    padding: 30px;
  }

  .cta-card {
    padding: 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .floating-badge {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
