:root {
  font-family: "Cairo", Arial, sans-serif;
  color: #15382d;
  background: #f5f7f4;
  --ink: #12372d;
  --ink-soft: #275447;
  --green: #0f4a3a;
  --green-deep: #08281f;
  --green-light: #e7f0eb;
  --gold: #c9a24a;
  --gold-light: #f6edda;
  --paper: #ffffff;
  --muted: #647067;
  --line: rgba(18, 55, 45, 0.12);
  --shadow: 0 22px 70px rgba(8, 40, 31, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f7f4;
  color: var(--ink);
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(8, 40, 31, 0.06);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.brand-logo {
  width: 54px;
  height: 54px;
  object-fit: contain;
  padding: 6px;
  background: #fff;
  border: 1px solid rgba(201, 162, 74, 0.32);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(8, 40, 31, 0.08);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-links a {
  color: var(--ink-soft);
  font-weight: 800;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover {
  background: var(--green-light);
  color: var(--green);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  margin: 0 auto;
  border-radius: 999px;
  background: var(--green);
}

.hero {
  position: relative;
  min-height: calc(100vh - 82px);
  padding: 96px 0 72px;
  display: grid;
  align-items: center;
  color: #fff;
  background-image:
    linear-gradient(90deg, rgba(8, 40, 31, 0.94), rgba(15, 74, 58, 0.82)),
    url("../assets/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 12px;
  background: linear-gradient(90deg, var(--gold), #e6d09b, var(--gold));
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 54px;
  align-items: center;
}

.hero-copy h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1.08;
  font-weight: 900;
}

.hero-copy p {
  max-width: 690px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.12rem;
  line-height: 1.95;
}

.hero-badge,
.section-label {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
}

.hero-badge {
  padding: 10px 16px;
  color: #fff;
  background: rgba(201, 162, 74, 0.2);
  border: 1px solid rgba(246, 237, 218, 0.32);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  gap: 10px;
  border: 0;
  border-radius: 14px;
  padding: 14px 24px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.button-primary {
  color: var(--green-deep);
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(201, 162, 74, 0.28);
}

.button-secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.button-outline {
  color: var(--green-deep);
  background: #fff;
  border: 1px solid rgba(201, 162, 74, 0.34);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  gap: 12px;
  margin-top: 38px;
}

.hero-stats div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.11);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
}

.hero-stats strong {
  display: block;
  color: var(--gold);
  font-size: 1.9rem;
  line-height: 1;
}

.hero-stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.hero-visual {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.hero-service-card {
  padding: 26px;
  background: #fff;
  color: var(--ink);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.hero-service-card img {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 18px;
}

.hero-service-card span {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.hero-service-card strong {
  display: block;
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.55;
}

.hero-flow {
  display: grid;
  gap: 10px;
}

.hero-flow div {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  color: #fff;
  background: rgba(8, 40, 31, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  font-weight: 800;
}

.hero-flow span,
.card-icon {
  display: inline-grid;
  place-items: center;
  min-width: 42px;
  height: 42px;
  color: var(--green-deep);
  background: var(--gold);
  border-radius: 12px;
  font-weight: 900;
}

.section {
  padding: 86px 0;
}

.section-light {
  background:
    linear-gradient(180deg, rgba(231, 240, 235, 0.5), rgba(255, 255, 255, 0)),
    #f7f8f5;
}

.section-white {
  background: #fff;
}

.section-secondary {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(8, 40, 31, 0.94), rgba(15, 74, 58, 0.96)),
    url("../assets/images/why-us.jpg") center/cover fixed;
}

.section-head {
  max-width: 820px;
  margin-bottom: 32px;
}

.section-label {
  padding: 9px 15px;
  color: var(--green);
  background: var(--gold-light);
  border: 1px solid rgba(201, 162, 74, 0.28);
}

.section-label-light {
  color: #fff;
  background: rgba(201, 162, 74, 0.22);
  border-color: rgba(246, 237, 218, 0.24);
}

.section-head h2 {
  margin: 18px 0 12px;
  color: var(--ink);
  font-size: clamp(2rem, 3.2vw, 3.25rem);
  line-height: 1.18;
  font-weight: 900;
}

.text-white h2,
.text-white p {
  color: #fff;
}

.section-head p,
.about-copy p,
.whatsapp-panel p,
.contact-card p,
.site-footer p {
  color: var(--muted);
  line-height: 1.9;
}

.text-white p {
  color: rgba(255, 255, 255, 0.82);
}

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

.card {
  min-height: 250px;
  padding: 28px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(8, 40, 31, 0.08);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.card:hover {
  transform: translateY(-6px);
  border-color: rgba(201, 162, 74, 0.52);
  box-shadow: var(--shadow);
}

.card h3 {
  margin: 22px 0 12px;
  color: var(--ink);
  font-size: 1.28rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

.about-grid,
.whatsapp-grid,
.contact-grid,
.footer-grid {
  display: grid;
  gap: 34px;
}

.about-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: center;
}

.about-copy h2,
.whatsapp-panel h3,
.contact-card h2,
.site-footer h3 {
  margin: 18px 0 14px;
  color: var(--ink);
  font-size: clamp(1.75rem, 2.5vw, 2.55rem);
  line-height: 1.25;
  font-weight: 900;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.trust-strip span {
  padding: 10px 13px;
  color: var(--green);
  background: var(--green-light);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 800;
}

.feature-list,
.check-list {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 13px;
}

.feature-list li,
.check-list li {
  position: relative;
  padding-right: 30px;
  color: var(--muted);
  line-height: 1.7;
}

.feature-list li::before,
.check-list li::before {
  content: "";
  position: absolute;
  top: 0.5em;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 5px;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--gold-light);
}

.about-image {
  min-height: 460px;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(8, 40, 31, 0.02), rgba(8, 40, 31, 0.18)),
    url("../assets/images/why-us.jpg") center/cover no-repeat;
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 162, 74, 0.24);
}

.whatsapp-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1.05fr);
  align-items: start;
}

.whatsapp-panel,
.form-card,
.contact-card {
  padding: 30px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.section-secondary .whatsapp-panel {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.section-secondary .whatsapp-panel h3,
.section-secondary .whatsapp-panel p,
.section-secondary .check-list li {
  color: #fff;
}

.form-card,
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
}

.form-card label {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--ink);
  font-weight: 900;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid #d7ded9;
  border-radius: 14px;
  padding: 15px 16px;
  background: #fbfcfa;
  color: var(--ink);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: none;
  background: #fff;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.contact-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  align-items: stretch;
}

.contact-item {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr);
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.contact-item strong {
  color: var(--green);
}

.contact-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 132px;
  padding: 12px 18px;
  border-radius: 14px;
  color: #fff;
  font-weight: 900;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

.badge-whatsapp {
  background: #1ea855;
}

.badge-instagram {
  background: linear-gradient(135deg, #6f2dbd, #e23a52, #f7b64a);
}

.contact-map iframe {
  width: 100%;
  min-height: 470px;
  height: 100%;
  border: 0;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 56px 0 30px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--green-deep);
}

.footer-grid {
  grid-template-columns: 1.15fr 0.8fr 0.8fr;
  gap: 36px;
}

.footer-logo {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  padding: 6px;
  background: #fff;
  border-radius: 16px;
}

.site-footer h3 {
  margin-top: 0;
  color: #fff;
  font-size: 1.2rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.74);
  transition: color 0.2s ease;
}

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

.footer-bottom {
  margin-top: 36px;
  padding-top: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 100;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 13px 18px;
  color: #fff;
  background: #1ea855;
  box-shadow: 0 18px 45px rgba(30, 168, 85, 0.28);
  font-weight: 900;
  transition: transform 0.2s ease;
}

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

.animate-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .hero-grid,
  .about-grid,
  .whatsapp-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-visual {
    max-width: 620px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .header-inner {
    min-height: 74px;
    flex-wrap: wrap;
    padding: 10px 0;
  }

  .brand {
    font-size: 0.98rem;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 10px 0 8px;
  }

  .nav-links.nav-open {
    display: flex;
  }

  .nav-links a {
    background: #f4f7f3;
  }

  .hero {
    min-height: auto;
    padding: 64px 0 56px;
  }

  .hero-copy h1 {
    font-size: 2.55rem;
  }

  .hero-actions,
  .form-actions,
  .contact-badges {
    flex-direction: column;
  }

  .button,
  .badge {
    width: 100%;
  }

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

  .hero-visual,
  .whatsapp-panel,
  .form-card,
  .contact-card {
    padding: 20px;
    border-radius: 18px;
  }

  .section {
    padding: 62px 0;
  }

  .about-image,
  .contact-map iframe {
    min-height: 340px;
  }

  .contact-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .floating-whatsapp {
    left: 12px;
    bottom: 12px;
  }
}
