﻿:root {
  --ink: #112033;
  --muted: #607083;
  --paper: #f8f4eb;
  --cream: #fffaf0;
  --sand: #e8d5ae;
  --gold: #c78d31;
  --gold-dark: #9f6518;
  --teal: #047c7a;
  --teal-dark: #045e63;
  --blue: #0e5674;
  --white: #ffffff;
  --shadow: 0 26px 70px rgba(17, 32, 51, 0.16);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Cairo", "Readex Pro", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 12%, rgba(199, 141, 49, 0.18), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(4, 124, 122, 0.15), transparent 25rem),
    linear-gradient(180deg, var(--paper), #fff 45%, #f4efe4);
  line-height: 1.8;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  background: rgba(248, 244, 235, 0.78);
  border-bottom: 1px solid rgba(17, 32, 51, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  font-weight: 900;
  font-size: 24px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  box-shadow: 0 16px 32px rgba(4, 124, 122, 0.22);
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.25;
}

.brand strong {
  font-size: 18px;
  font-weight: 900;
}

.brand small {
  color: var(--muted);
  font-weight: 700;
}

.nav-links {
  display: flex;
  gap: 26px;
  font-weight: 800;
  color: rgba(17, 32, 51, 0.78);
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.nav-cta,
.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  box-shadow: 0 18px 36px rgba(4, 124, 122, 0.25);
}

.btn.ghost {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(17, 32, 51, 0.12);
}

.btn.light {
  color: var(--teal-dark);
  background: var(--white);
}

.nav-cta:hover,
.btn:hover,
.float-btn:hover {
  transform: translateY(-3px);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 64px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(14, 86, 116, 0.08), transparent 38%),
    radial-gradient(circle at 70% 36%, rgba(199, 141, 49, 0.18), transparent 20rem);
}

.hero::after {
  content: "";
  position: absolute;
  left: -120px;
  top: 120px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(4, 124, 122, 0.16);
  border-radius: 48% 52% 46% 54%;
  animation: floatShape 9s ease-in-out infinite;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 44px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  font-family: "Readex Pro", "Cairo", sans-serif;
  font-weight: 700;
  letter-spacing: 0.5px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1.14;
  font-weight: 900;
  letter-spacing: -1.8px;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.22;
  font-weight: 900;
  letter-spacing: -0.8px;
}

h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 900;
}

.hero-text {
  max-width: 660px;
  color: var(--muted);
  font-size: 20px;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

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

.trust-strip span {
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(4, 124, 122, 0.12);
  font-weight: 900;
}

.hero-card {
  position: relative;
  padding: 22px;
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 250, 240, 0.92));
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 20px -10px auto auto;
  width: 120px;
  height: 120px;
  border-radius: 32px;
  background: rgba(199, 141, 49, 0.16);
  transform: rotate(18deg);
  z-index: -1;
}

.hero-image-wrap {
  overflow: hidden;
  border-radius: 28px;
  background: linear-gradient(135deg, #e6f6f4, #fff1d6);
}

.hero-stat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
  padding: 18px;
  border-radius: 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
}

.hero-stat strong,
.hero-stat span {
  display: block;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
}

.section {
  padding: 84px 0;
}

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

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

.service-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  padding: 18px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(17, 32, 51, 0.08);
  box-shadow: 0 20px 46px rgba(17, 32, 51, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(17, 32, 51, 0.14);
}

.service-card img {
  aspect-ratio: 1.15;
  width: 100%;
  object-fit: cover;
  border-radius: 22px;
  background: #e8f4f1;
}

.service-card p,
.why-copy p,
.step p,
.review-card blockquote,
.cta-card p {
  color: var(--muted);
}

.service-tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--gold-dark);
  background: rgba(199, 141, 49, 0.13);
  font-weight: 900;
  font-size: 13px;
}

.why-section {
  position: relative;
  background:
    linear-gradient(135deg, rgba(4, 124, 122, 0.08), rgba(199, 141, 49, 0.08)),
    var(--cream);
}

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

.features {
  display: grid;
  gap: 14px;
}

.feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(4, 124, 122, 0.1);
}

.feature strong {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--teal);
  font-family: "Readex Pro", sans-serif;
}

.feature span {
  font-size: 19px;
  font-weight: 900;
}

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

.step {
  position: relative;
  padding: 28px;
  border-radius: 28px;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.step::after {
  content: "";
  position: absolute;
  inset: auto -38px -52px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(199, 141, 49, 0.25);
}

.step span {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 18px;
  color: var(--ink);
  background: var(--sand);
  font-weight: 900;
}

.step p {
  color: rgba(255, 255, 255, 0.74);
}

.reviews-section {
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.2), rgba(232, 213, 174, 0.22));
}

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

.review-card {
  margin: 0;
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 32, 51, 0.08);
  box-shadow: 0 16px 40px rgba(17, 32, 51, 0.07);
}

.review-card blockquote {
  position: relative;
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
}

.review-card blockquote::before {
  content: "\201D";
  display: block;
  color: var(--gold);
  font-size: 54px;
  line-height: 0.6;
}

.review-card figcaption {
  font-weight: 900;
}

.review-card figcaption span {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.cta-section {
  padding: 90px 0;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-xl);
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 213, 174, 0.32), transparent 20rem),
    linear-gradient(135deg, var(--teal-dark), var(--ink));
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 30px 0 96px;
  color: rgba(255, 255, 255, 0.76);
  background: var(--ink);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 50;
  display: grid;
  gap: 12px;
}

.float-btn {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  box-shadow: 0 18px 34px rgba(17, 32, 51, 0.22);
}

.float-btn svg {
  width: 28px;
  height: 28px;
  fill: var(--white);
}

.float-btn.whatsapp {
  background: #21c063;
}

.float-btn.call {
  background: var(--gold);
}

.reveal {
  animation: riseIn 0.8s both;
}

.delay-1 {
  animation-delay: 0.12s;
}

.delay-2 {
  animation-delay: 0.24s;
}

.delay-3 {
  animation-delay: 0.36s;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatShape {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(18px) rotate(8deg);
  }
}

@media (max-width: 980px) {
  .nav-links {
    display: none;
  }

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

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

@media (max-width: 720px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-actions,
  .cta-actions,
  .footer-grid {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stat {
    align-items: flex-start;
    flex-direction: column;
  }

  .section {
    padding: 58px 0;
  }

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

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

  .floating-actions {
    inset: auto 12px 12px auto;
  }

  .float-btn {
    width: 54px;
    height: 54px;
    border-radius: 18px;
  }
}
