* {
  box-sizing: border-box;
}

:root {
  --green: #0B5D3B;
  --gold: #C8A24A;
  --green-light: #3A7D5B;
  --cream: #F7F3E8;
  --white: #FFFFFF;
  --text: #222222;
  --muted: #66635C;
  --border: #E3DDCF;
  --shadow: 0 20px 60px rgba(11, 93, 59, 0.14);
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 243, 232, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 162, 74, 0.28);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--green);
  color: var(--white);
  letter-spacing: -1px;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-weight: 600;
  font-size: 0.95rem;
}

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

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green);
  color: var(--white) !important;
}

.hero {
  overflow: hidden;
  padding: 100px 0 88px;
  background:
    radial-gradient(circle at 88% 12%, rgba(200, 162, 74, 0.17), transparent 30%),
    linear-gradient(180deg, #F7F3E8 0%, #FFFFFF 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
  color: var(--green);
}

.hero-copy {
  max-width: 670px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: 1.12rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border: 0;
  border-radius: 12px;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-primary {
  background: var(--green-light);
  color: var(--white);
  box-shadow: 0 12px 30px rgba(42, 157, 143, 0.25);
}

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

.btn-dark {
  width: 100%;
  background: var(--green);
  color: var(--white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.trust-row span::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green-light);
  font-weight: 800;
}

.hero-card {
  padding: 34px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.hero-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 700;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 6px rgba(42, 157, 143, 0.12);
}

.hero-card h2 {
  margin-bottom: 20px;
  font-size: 1.75rem;
  line-height: 1.18;
  letter-spacing: -0.035em;
  color: var(--green);
}

.hero-card ul {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.hero-card li {
  position: relative;
  padding: 11px 0 11px 28px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
}

.hero-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green-light);
  font-weight: 800;
}

.text-link {
  color: var(--gold);
  font-weight: 700;
}

.section {
  padding: 92px 0;
}

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

.section-heading {
  max-width: 700px;
  margin-bottom: 45px;
}

.section-heading h2,
.about h2,
.contact h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  color: var(--green);
}

.section-heading > p:last-child,
.about-copy > p {
  color: var(--muted);
  font-size: 1.05rem;
}

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

.service-card {
  min-height: 265px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 42px rgba(11, 31, 51, 0.09);
}

.icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 38px;
  border-radius: 13px;
  background: var(--cream);
  color: var(--gold);
  font-weight: 800;
}

.service-card h3 {
  margin-bottom: 11px;
  color: var(--green);
  font-size: 1.15rem;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.about {
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.feature-list div {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 20px;
  padding: 21px 0;
  border-top: 1px solid var(--border);
}

.feature-list strong {
  color: var(--green);
}

.feature-list span {
  color: var(--muted);
}

.contact {
  background: var(--green);
  color: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.eyebrow.light {
  color: #D8B65F;
}

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

.contact-copy > p {
  color: #E7E0D2;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  font-weight: 600;
}

.contact-details a:hover {
  color: #D8B65F;
}

.quote-form {
  padding: 30px;
  border-radius: 20px;
  background: var(--white);
  color: var(--text);
}

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

label {
  display: grid;
  gap: 7px;
  margin-bottom: 15px;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #FFFEFA;
  font: inherit;
  color: var(--text);
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--green-light);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.12);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: 11px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  text-align: center;
}

.site-footer {
  padding: 35px 0;
  background: #073D28;
  color: var(--white);
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
}

.site-footer p {
  margin: 4px 0 0;
  color: #D8D0BC;
  font-size: 0.86rem;
}

.footer-right {
  display: flex;
  gap: 24px;
  color: #D8D0BC;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

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

  .hero {
    padding-top: 72px;
  }
}

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

  .nav-wrap {
    min-height: 68px;
  }

  .nav-links a:not(.nav-cta) {
    display: none;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-mark {
    width: 42px;
    height: 42px;
  }

  .hero {
    padding: 62px 0 65px;
  }

  h1 {
    font-size: 2.65rem;
  }

  .section {
    padding: 68px 0;
  }

  .service-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .feature-list div {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .footer-wrap,
  .footer-right {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* HSK FM green and gold brand refinements */
.logo-mark {
  position: relative;
  background: var(--green);
  color: var(--white);
  border: 2px solid var(--gold);
  box-shadow: 0 8px 22px rgba(11, 93, 59, 0.18);
}

.logo-mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(200, 162, 74, 0.72);
  border-radius: 8px;
}

.logo-text strong {
  color: var(--gold);
}

.nav-cta,
.btn-dark {
  background: var(--green);
}

.btn-primary {
  background: var(--gold);
  color: var(--green);
  box-shadow: 0 12px 30px rgba(200, 162, 74, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 16px 34px rgba(200, 162, 74, 0.32);
}

.hero-card {
  position: relative;
  border-top: 4px solid var(--gold);
}

.islamic-detail {
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--gold);
  font-size: 1.35rem;
}

.eyebrow,
.text-link,
.hero-card-top {
  color: var(--gold);
}

.status-dot,
.trust-row span::before,
.hero-card li::before {
  background: var(--green-light);
  color: var(--green-light);
}

.service-card:hover {
  border-color: rgba(200, 162, 74, 0.65);
}

.icon {
  border: 1px solid rgba(200, 162, 74, 0.45);
  color: var(--green);
}

.contact {
  background:
    linear-gradient(rgba(11, 93, 59, 0.97), rgba(11, 93, 59, 0.97)),
    radial-gradient(circle at top right, rgba(200, 162, 74, 0.18), transparent 35%);
}

.quote-form {
  border-top: 4px solid var(--gold);
}

.site-footer {
  border-top: 1px solid rgba(200, 162, 74, 0.35);
}


}


}


}


/* Compact, balanced website header logo */
.site-header .nav-wrap {
  min-height: 82px;
}

.logo {
  display: flex;
  align-items: center;
  height: 64px;
  overflow: hidden;
}

.logo img {
  display: block;
  width: 245px;
  max-width: 40vw;
  height: 64px;
  object-fit: contain;
  object-position: left center;
}

@media (max-width: 640px) {
  .site-header .nav-wrap {
    min-height: 70px;
  }

  .logo {
    height: 52px;
  }

  .logo img {
    width: 190px;
    max-width: 56vw;
    height: 52px;
  }
}
