/* =========================================================
   Hijamah With Rashid — Stylesheet
   ========================================================= */

:root {
 --maroon: #a84d4d; /* softer, warmer rose-brown */
 --maroon-dark: #8b3d3d;
 --maroon-light: #c26a6a;
 --beige: #faf8f5; /* warmer, more inviting background */
 --off-white: #fcfbfa;
  --white: #ffffff;
 --ink: #1a1a1a;
 --body-text: #3a3530;
 --body-text-soft: #6b6459;
 --gold: #d4a574; /* warmer, softer gold */
 --accent-coral: #d97565; /* warm accent for contrast */
 --accent-sage: #a0a583; /* complementary muted green-gray */

  --font-heading: 'Montserrat', 'Segoe UI', Arial, sans-serif;
  --font-body: 'Roboto', 'Segoe UI', Arial, sans-serif;

 --container-w: 1100px;
 --radius: 16px;
 --radius-sm: 10px;
 --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.08);
 --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.12);
 --shadow-lg: 0 14px 36px rgba(26, 26, 26, 0.15);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 16px; }
h1, h2, h3 { font-family: var(--font-heading); margin: 0; color: var(--ink); }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  background: var(--white);
  color: var(--maroon);
  padding: 8px 14px;
  z-index: 1000;
  border-radius: 4px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background-color .25s ease, transform .15s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.btn:hover { background: var(--maroon-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }
.btn__icon { width: 16px; height: 16px; flex-shrink: 0; }

.btn--primary {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 13px;
}
.btn--nav { font-size: 12px; padding: 12px 20px; }
.btn--whatsapp { background: #1ebd59; }
.btn--whatsapp:hover { background: #1baa50; box-shadow: 0 6px 16px rgba(37,211,102,.3); }
.btn--small {
  font-size: 13px;
  font-weight: 700;
  padding: 11px 22px;
  text-transform: none;
}

/* ---------- Header ---------- */
.site-header {
  position: relative;
  background: var(--beige);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
 padding-top: 20px; /* a touch more breathing room */
 padding-bottom: 20px;
 gap: 20px;
}
.site-header__logo img { height: 86px; width: auto; }

/* ---------- Nav ---------- */
.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}
.site-nav a {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  color: var(--ink);
  transition: color .2s ease;
}
.site-nav a:hover { color: var(--maroon); }

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

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2.4px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7.4px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7.4px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #2b1c14;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(15, 9, 6, .82) 0%, rgba(15, 9, 6, .55) 42%, rgba(15, 9, 6, .18) 75%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero__tagline {
  color: var(--white);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  margin-bottom: 18px;
}
.hero__title {
  color: var(--white);
  font-size: clamp(32px, 5.4vw, 54px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 30px;
  max-width: 600px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ---------- Section heading ---------- */
.section-heading {
  text-align: center;
  font-size: clamp(28px, 3.6vw, 38px);
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 20px;
  letter-spacing: -0.5px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
 width: 72px;
 height: 5px;
 border-radius: 3px;
 background: linear-gradient(90deg, var(--maroon), var(--accent-coral));
}
.section-heading--accent { color: var(--maroon); }

.eyebrow {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 13px;
  font-weight: 700;
  color: var(--maroon);
  margin-bottom: 6px;
  margin-top: 26px;
}

/* ---------- Grid helpers ---------- */
.grid {
  display: grid;
  gap: 24px;
}
.grid--services { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.grid--trust { grid-template-columns: repeat(3, 1fr); margin-top: 48px; }
.grid--testimonials { grid-template-columns: repeat(3, 1fr); margin-top: 48px; gap: 20px; }
.grid--videos { grid-template-columns: repeat(2, 1fr); margin-top: 40px; }
.grid--footer { grid-template-columns: repeat(4, 1fr); gap: 32px; padding: 56px 24px 36px; }

/* ---------- Services ---------- */
.services { padding: 96px 0; background: var(--white); }

.card--service {
 background: var(--white);
 padding: 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
 transition: transform .25s ease, box-shadow .25s ease, border-color .2s ease;
 border: 1px solid rgba(168, 77, 77, 0.08);
 position: relative;
 overflow: hidden;
 box-shadow: var(--shadow-sm);
}
.card--service::before {
 content: '';
 position: absolute;
 left: 0;
 right: 0;
 top: 0;
 height: 5px;
 background: linear-gradient(90deg, var(--maroon), var(--accent-coral));
}
.card--service:hover { 
  transform: translateY(-8px); 
  box-shadow: var(--shadow-lg);
  border-color: rgba(168, 77, 77, 0.15);
}
.card__logo { margin-bottom: 18px; }
.card__title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--ink);
}
.card__price {
  margin: 0 0 14px;
  font-weight: 700;
  font-size: 22px;
  color: var(--maroon);
}

.card__subprice {
  margin: -4px 0 18px;
  font-size: 17px;
  font-weight: 600;
  color: var(--body-text-soft);
}

.card__subprice strong {
  color: var(--ink);
  font-weight: 700;
}
.price--old {
  font-size: 14px;
  font-weight: 400;
  color: #9b8f7e;
  margin-left: 8px;
}
.card__text {
  font-size: 15px;
  color: var(--body-text-soft);
  flex-grow: 1;
  margin-bottom: 24px;
  line-height: 1.7;
}
.card--service .btn { align-self: flex-start; }

/* ---------- Why Hijamah ---------- */
.why, .about {
  padding: 96px 0;
  background: var(--white);
}
.why__copy,
.about__copy {
  max-width: 800px;
  margin: 0 auto 12px;
  text-align: center;
  color: var(--body-text);
  font-size: 17px;
  line-height: 1.75;
}
.about__intro {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
}
.about__lead {
  color: var(--body-text-soft);
  font-size: 18px;
  line-height: 1.8;
  margin-top: 20px;
}
.about__content {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
  margin-top: 48px;
}

.about__aside {
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;

  background: linear-gradient(
    135deg,
    rgba(168, 77, 77, 0.04) 0%,
    rgba(212, 117, 101, 0.04) 100%
  );
  border: 1px solid rgba(168, 77, 77, 0.1);
  padding: 32px 28px;
  border-radius: var(--radius);
  color: var(--body-text);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.about__aside-title {
  margin: 0 0 16px;
  font-size: 19px;
  font-weight: 800;
  color: var(--maroon);
  text-align: center;
}

.why__quote {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink);
}
.why__citation {
  color: #8b7f75;
  font-size: 15px;
  margin-top: -6px;
}

.card--trust {
  background: linear-gradient(135deg, #fcfbfa 0%, var(--off-white) 100%);
  padding: 36px 32px;
  text-align: center;
  border-radius: var(--radius);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 77, 77, 0.06);
}
.card--trust:hover { 
  transform: translateY(-4px); 
  box-shadow: var(--shadow-md);
}
.card--trust__icon {
  width: 60px;
  height: 60px;
  color: var(--maroon);
  margin-bottom: 16px;
}
.card--trust h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 16px;
}
.check-list { text-align: left; display: inline-block; }
.check-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--body-text-soft);
  margin-bottom: 12px;
}
.check-list li svg {
  width: 20px;
  height: 20px;
  color: var(--maroon);
  flex-shrink: 0;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 96px 0; background: linear-gradient(180deg, var(--beige) 0%, #fbf9f7 100%); }

.card--testimonial {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  margin: 0;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 77, 77, 0.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card--testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card--testimonial blockquote {
  margin: 0 0 20px;
  font-size: 15.5px;
  color: var(--body-text);
  line-height: 1.8;
}
.card--testimonial blockquote p:last-child { margin-bottom: 0; }
.card--testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.card--testimonial .name {
  font-weight: 700;
  color: var(--ink);
  font-size: 16px;
}
.card--testimonial .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 3px;
}
.testimonials__cta {
  text-align: center;
  margin-top: 52px;
}

.services__cta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 64px;
  text-align: center;
}

/* ---------- Why clients choose us / videos ---------- */
.choose-us { padding: 96px 0; background: var(--white); }

.video-card {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: #000;
  border: 1px solid rgba(168, 77, 77, 0.05);
}

.video-card__video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: #000;
  pointer-events: none;
}

.video-card__toggle {
  position: absolute;
  inset: 0;
  width: 100%;
  border: 0;
  padding: 0;
  cursor: pointer;
  background: rgba(0,0,0,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .3s ease, opacity .3s ease;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.video-card__btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .3s cubic-bezier(.175,.885,.32,1.275), box-shadow .3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.35);
}

.video-card__btn:hover {
  transform: scale(1.1);
}

.video-card__btn svg { width: 32px; height: 32px; color: #1a1a1a; }
.video-card__btn .icon-pause { display: none; }
.video-card.is-playing .video-card__btn .icon-play { display: none; }
.video-card.is-playing .video-card__btn .icon-pause { display: block; } 

.video-card.is-playing .video-card__toggle { background: transparent; }
.video-card.is-playing .video-card__toggle.is-hidden { opacity: 0; }
.video-card.is-playing .video-card__toggle:hover,
.video-card.is-playing .video-card__toggle:focus-visible { opacity: 1; background: rgba(0,0,0,.35); }

@media (hover: none) {
  .video-card.is-playing .video-card__toggle:active { opacity: 1; }
}	

/* ---------- FAQ ---------- */
.faq { padding: 96px 0; background: linear-gradient(180deg, var(--beige) 0%, #fbf9f7 100%); }
.faq__list { margin-top: 40px; max-width: 800px; margin-inline: auto; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 77, 77, 0.06);
  transition: box-shadow .25s ease, transform .25s ease;
}

.faq__item:hover {
  box-shadow: var(--shadow-md);
}

.faq__item__topic {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 6px 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(168, 77, 77, 0.06);
}

.faq__item__topic summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
 padding: 20px 40px 20px 0;
  text-align: center;
  text-decoration: underline;
  position: relative;
  transition: color .2s ease;
}
.faq__item__topic summary:hover {
  color: var(--maroon);
}
.faq__item__topic summary::-webkit-details-marker { display: none; }
.faq__item__topic summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--maroon);
  line-height: 1;
  transition: transform .25s ease;
  font-weight: 600;
}
.faq__item__topic[open] summary::after { 
  content: '−'; 
  transform: translateY(-50%) rotate(0deg);
}
.faq__item__topic p { 
  padding-bottom: 20px; 
  margin: 0; 
  color: var(--body-text-soft); 
  font-size: 15px; 
  line-height: 1.75;
  text-align: center; 
}

.faq__item summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
  color: var(--maroon);
  padding: 20px 40px 20px 0;
  text-align: center;
  font-style: italic;
  position: relative;
  text-decoration: revert;
  transition: color .2s ease;
}
.faq__item summary:hover {
  color: var(--maroon-dark);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
  color: var(--maroon);
  line-height: 1;
  transition: transform .25s ease;
  font-weight: 600;
}
.faq__item:not([open]) summary::after { content: '+' !important; }
.faq__item[open] summary::after { content: '−'; }
.faq__item p { 
  padding-bottom: 20px; 
  margin: 0; 
  color: var(--body-text-soft); 
  font-size: 15px; 
  line-height: 1.75;
  text-align: center; 
}

/* ---------- Find us / map ---------- */
.location { 
  padding: 96px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
}
.map-frame {
  margin-top: 48px;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(168, 77, 77, 0.05);
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- Footer ---------- */
.site-footer { background: linear-gradient(180deg, var(--beige) 0%, #f8f6f3 100%); }
.footer-item { text-align: center; }
.footer-item__icon {
  width: 44px;
  height: 44px;
  color: var(--maroon);
  margin: 0 auto 14px;
}
.footer-item h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--maroon);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 10px;
}
.footer-item p {
  font-size: 14px;
  color: var(--body-text);
  margin: 0;
  line-height: 1.6;
}
.footer-item a:hover { color: var(--maroon); }
.site-footer__copyright {
  text-align: center;
  font-size: 13px;
  color: var(--body-text-soft);
  margin: 0;
  padding: 24px 0 8px;
}
.site-footer__privacy {
  text-align: center;
  font-size: 12px;
  color: var(--body-text-soft);
  opacity: .85;
  max-width: 620px;
  margin: 0 auto;
  padding: 0 20px 32px;
  line-height: 1.6;
}

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  left: 24px;
  bottom: 24px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: var(--maroon);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease, background-color .2s ease, visibility .25s ease;
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover { background: var(--maroon-dark); transform: translateY(-3px); }
.back-to-top svg { width: 24px; height: 24px; }

/* ---------- Sticky mobile WhatsApp button ---------- */
.mobile-whatsapp {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mobile-whatsapp svg { width: 28px; height: 28px; }
.mobile-whatsapp:hover { background: #1ebd59; transform: scale(1.1); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 1024px) {
  .grid--services { grid-template-columns: repeat(2, 1fr); }
  .grid--trust { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .grid--footer { grid-template-columns: repeat(2, 1fr); gap: 40px 28px; }
}

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--beige);
    padding: 4px 24px 16px;
    box-shadow: 0 10px 24px rgba(26, 26, 26, 0.12);
    z-index: 60;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid rgba(168, 77, 77, 0.1);
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-toggle { display: flex; }
  .about__content,
  .about__highlights {
    grid-template-columns: 1fr;
  }
  .about__content {
    gap: 28px;
  }
  .about__aside,
  .about__card {
    padding: 26px 22px;
  }
  .about__intro {
    padding: 0 4px;
  }
}

@media (max-width: 860px) {
  .hero__bg img { object-position: center right; }
  .grid--trust { grid-template-columns: 1fr; }
  .grid--testimonials { grid-template-columns: 1fr; }
  .grid--videos { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .site-header__logo img { height: 80px; }
  .btn--nav span { display: none; }
  .btn--nav { padding: 12px; }
  .btn--nav .btn__icon { width: 18px; height: 18px; }
  .hero { min-height: 68vh; }
  .hero__title { max-width: 100%; }
  .hero__actions .btn span { display: inline; }
  .grid--services { grid-template-columns: 1fr; }
  .grid--footer { grid-template-columns: 1fr; gap: 32px; padding: 48px 20px 32px; }
  .services, .why, .testimonials, .choose-us, .location, .about, .faq { padding: 64px 0; }
  .map-frame { aspect-ratio: 4 / 3; margin-top: 32px; }
  .about__content,
  .about__highlights {
    grid-template-columns: 1fr;
  }
  .about__content {
    gap: 24px;
  }
  .about__aside,
  .about__card {
    padding: 22px;
  }
  .about__intro {
    padding: 0 4px;
  }
  .about__lead {
    font-size: 16px;
  }
   .video-card__btn {
    width: 52px;
    height: 52px;
  }

  .video-card__btn svg {
    width: 22px;
    height: 22px;
  }
  .back-to-top { left: 16px; bottom: 16px; width: 48px; height: 48px; }
  .back-to-top svg { width: 20px; height: 20px; }
  .services__cta, .testimonials__cta { flex-direction: column; align-items: center; }
  .mobile-whatsapp { display: flex; right: 16px; bottom: 16px; width: 48px; height: 48px; }
  .faq, .location { padding: 56px 0 64px; }
  .faq__item summary { font-size: 15px; }

}