/* =============================================
   MARSIANO — Industrial Warm Theme
   RTL · Hebrew · Rubik Font
   ============================================= */

:root {
  --red:        #D31C1D;
  --red-dark:   #B01618;
  --warm-bg:    #F0EDE8;
  --warm-mid:   #E4DDD4;
  --brown:      #8B7355;
  --brown-dark: #6B5840;
  --dark:       #1E1A16;
  --dark-mid:   #2D2820;
  --text:       #3A3530;
  --text-light: #7A736A;
  --white:      #FFFFFF;
  --green-wa:   #25D366;

  --radius:     10px;
  --radius-lg:  18px;
  --shadow-sm:  0 2px 8px rgba(0,0,0,.07);
  --shadow-md:  0 6px 24px rgba(0,0,0,.11);
  --shadow-lg:  0 16px 48px rgba(0,0,0,.15);

  --nav-h:      60px;
  --header-h:   72px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Rubik', 'Arial Hebrew', sans-serif;
  background: var(--warm-bg);
  color: var(--text);
  direction: rtl;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section ── */
.section { padding: 80px 0; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-eyebrow {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(211,28,29,.08);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.25;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  transition: all .22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(211,28,29,.3);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(211,28,29,.4);
}
.btn-outline {
  border: 2px solid rgba(255,255,255,.7);
  color: var(--white);
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: var(--white);
}
.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(37,211,102,.3);
}
.btn-whatsapp:hover {
  background: #1fb855;
  transform: translateY(-2px);
}
.btn-full { width: 100%; justify-content: center; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--warm-mid);
  box-shadow: var(--shadow-sm);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.logo-img {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  object-position: right center;
  display: block;
}
.logo-placeholder {
  display: flex;
  flex-direction: column;
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.logo-sub {
  font-size: .7rem;
  color: var(--brown);
  letter-spacing: .05em;
  margin-top: 2px;
}
.header-contact {
  display: flex;
  gap: 16px;
  align-items: center;
}
.header-phone, .header-whatsapp {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  transition: background .18s;
}
.header-phone { color: var(--text); }
.header-phone:hover { background: var(--warm-mid); }
.header-whatsapp {
  color: var(--green-wa);
  border: 1.5px solid rgba(37,211,102,.3);
}
.header-whatsapp:hover { background: rgba(37,211,102,.07); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: all .25s;
}

/* =============================================
   NAV
   ============================================= */
.main-nav {
  position: fixed;
  top: var(--header-h);
  left: 0; right: 0;
  z-index: 999;
  background: var(--dark);
  height: var(--nav-h);
}
.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
}
.nav-list {
  display: flex;
  gap: 4px;
  height: 100%;
  align-items: center;
}
.nav-link {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 18px;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  position: relative;
  transition: color .18s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--red);
  border-radius: 2px 2px 0 0;
  transform: scaleX(0);
  transition: transform .22s ease;
}
.nav-link:hover, .nav-link.active {
  color: var(--white);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
}
.nav-link-profile {
  color: #fde68a !important;
  font-weight: 600;
}
.nav-link-profile:hover {
  color: #fff !important;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  margin-top: calc(var(--header-h) + var(--nav-h));
  overflow: hidden;
}
.hero-slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  opacity: 0;
  transition: opacity 1.4s ease;
  background-color: var(--dark-mid);
  /* will-change:opacity creates a compositing layer for smooth transitions
     WITHOUT downsampling the texture to 1× on Retina (unlike translateZ(0)) */
  will-change: opacity;
}
.hero-slide.active { opacity: 1; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10,8,6,.72) 0%,
    rgba(30,26,22,.45) 60%,
    rgba(139,115,85,.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}
.hero-eyebrow {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: rgba(255,255,255,.7);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
  flex-shrink: 0;
}
.hero-title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.8);
  margin-bottom: 40px;
  max-width: 520px;
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(6px); }
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--dark);
  background-size: cover;
  background-position: center;
  padding: 40px 0;
  position: relative;
}
.stats-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14, 11, 8, 0.82);
}
.stats-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  border-left: 1px solid rgba(255,255,255,.08);
  text-align: center;
}
.stat-item:last-child { border-left: none; }
.stat-num {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-suffix {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
  font-weight: 400;
}

/* =============================================
   ABOUT
   ============================================= */
.about { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
  background: var(--warm-mid);
}
.about-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  background: var(--warm-mid);
}
.about-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 12px 18px;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.badge-num {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1;
}
.badge-text {
  font-size: .72rem;
  opacity: .85;
}
.about-text .section-eyebrow { margin-bottom: 10px; }
.about-text .section-title { margin-bottom: 20px; }
.about-text p { color: var(--text-light); margin-bottom: 14px; }
.about-text p strong { color: var(--text); }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
}
.value-item svg { color: var(--red); flex-shrink: 0; }

/* =============================================
   SERVICES
   ============================================= */
.services {
  background: var(--warm-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 237, 232, 0.93);
}
.services .container { position: relative; z-index: 1; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(255px, 1fr));
  gap: 24px;
}
.service-card[data-gallery-filter] {
  cursor: pointer;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--warm-mid);
  transition: background .25s;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card:hover::before { background: var(--red); }
.service-card--featured {
  border-color: rgba(211,28,29,.15);
  background: linear-gradient(135deg, #fff 70%, rgba(211,28,29,.03) 100%);
}
.service-card--featured::before { background: var(--red); }
.service-badge-top {
  position: absolute;
  top: 18px;
  left: 18px;
  background: var(--red);
  color: var(--white);
  font-size: .72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
}
.service-icon {
  width: 64px;
  height: 64px;
  background: var(--warm-bg);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--brown);
  transition: background .25s, color .25s;
}
.service-card:hover .service-icon {
  background: rgba(211,28,29,.08);
  color: var(--red);
}
.service-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: .9rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 20px;
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-tags span {
  font-size: .75rem;
  font-weight: 500;
  padding: 3px 10px;
  border-radius: 20px;
  background: var(--warm-bg);
  color: var(--brown-dark);
  border: 1px solid var(--warm-mid);
}
/* ── "לצפייה בפרויקטים" link hint at card bottom ── */
.service-gallery-link {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 18px;
  font-size: .82rem;
  font-weight: 600;
  color: var(--red);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .22s, transform .22s;
}
.service-card:hover .service-gallery-link {
  opacity: 1;
  transform: translateY(0);
}
.services-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--warm-mid);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 32px;
  color: var(--text-light);
  font-size: .9rem;
}
.services-note svg { color: var(--brown); flex-shrink: 0; margin-top: 2px; }

/* =============================================
   GALLERY
   ============================================= */
.gallery { background: var(--dark-mid); }
.gallery .section-eyebrow {
  background: rgba(211,28,29,.15);
}
.gallery .section-title { color: var(--white); }
.gallery .section-desc { color: rgba(255,255,255,.55); }

/* ── Filter buttons ── */
.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 8px 22px;
  border-radius: 30px;
  font-size: .88rem;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  border: 1.5px solid rgba(255,255,255,.15);
  transition: all .2s;
  font-family: inherit;
}
.filter-btn:hover { color: var(--white); border-color: rgba(255,255,255,.4); }
.filter-btn.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

/* ── Per-category rows layout ── */
.gallery-cats {
  display: flex;
  flex-direction: column;
  gap: 52px;
}
.gcat-row {}
.gcat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-right: 16px;
  border-right: 4px solid var(--red);
}
.gcat-label {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .01em;
}
.gcat-count {
  background: var(--red);
  color: var(--white);
  border-radius: 20px;
  padding: 2px 11px;
  font-size: .75rem;
  font-weight: 700;
}
.gcat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* ── Project name overlay on cover card ── */
.gallery-item-name {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  padding: 36px 14px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff;
  font-size: .88rem;
  font-weight: 600;
  text-align: right;
  pointer-events: none;
  letter-spacing: .01em;
}

/* keep .gallery-grid for the project inner overlay */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s;
}
.gallery-item:hover { transform: scale(1.02); }
.gallery-item.hidden { display: none; }
.gallery-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--dark);
}
.gallery-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover .gallery-img-wrap img { transform: scale(1.07); }
.gallery-img-wrap.no-img::after {
  content: '📷';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  background: var(--dark);
}
/* ── Project count badge on gallery cover ── */
.gallery-proj-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.65);
  color: #fff;
  font-size: .78rem;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
  backdrop-filter: blur(4px);
}

/* ── Project choice dialog ── */
.proj-dialog {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.proj-dialog-box {
  background: #fff;
  border-radius: 16px;
  width: 100%;
  max-width: 440px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 60px rgba(0,0,0,.35);
}
.proj-dialog-close {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0,0,0,.12);
  border: none;
  color: #333;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.proj-dialog-close:hover { background: rgba(0,0,0,.22); }
.proj-dialog-cover {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark);
}
.proj-dialog-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.proj-dialog-info {
  padding: 18px 20px 12px;
  text-align: center;
}
.proj-dialog-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 4px;
}
.proj-dialog-info p {
  font-size: .88rem;
  color: var(--text-light);
  margin: 0;
}
.proj-dialog-btns {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.proj-dialog-btns .btn {
  width: 100%;
  justify-content: center;
  text-align: center;
}

/* ── Project gallery overlay ── */
.proj-gallery {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.proj-gallery-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--dark-mid);
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.proj-gallery-back {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.1);
  border: none;
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  padding: 8px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: background .2s;
  white-space: nowrap;
}
.proj-gallery-back:hover { background: rgba(255,255,255,.2); }
.proj-gallery-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0;
  flex: 1;
}
.proj-gallery-grid {
  padding: 24px;
  flex: 1;
}

/* video play badge */
.gallery-video-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(0,0,0,.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.3rem;
  pointer-events: none;
  transition: background .2s;
}
.gallery-item:hover .gallery-video-badge { background: rgba(211,28,29,.8); }

/* zoom hint on hover */
.gallery-zoom-hint {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,.3);
  opacity: 0;
  transition: opacity .25s;
}
.gallery-item:hover .gallery-zoom-hint { opacity: 1; }

.gallery-cta {
  text-align: center;
  margin-top: 48px;
}

/* ── Lightbox ── */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap {
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img-wrap img {
  max-width: 92vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 48px rgba(0,0,0,.6);
  display: block;
}
.lb-close {
  position: fixed;
  top: 18px;
  left: 20px;
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lb-close:hover { background: rgba(255,255,255,.25); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  font-size: 2.2rem;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
  z-index: 10000;
}
.lb-prev { right: 16px; }
.lb-next { left: 16px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.25); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  background: var(--warm-bg);
  background-size: cover;
  background-position: center;
  position: relative;
}
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(240, 237, 232, 0.91);
}
.testimonials .container { position: relative; z-index: 1; }
.testimonials-track-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform .45s cubic-bezier(.4,0,.2,1);
}
.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,.05);
}
.testimonial-stars {
  color: #F5A623;
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-text {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: .95rem;
  color: var(--dark);
}
.testimonial-author span {
  font-size: .8rem;
  color: var(--text-light);
}
.testimonial-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  z-index: 5;
  transition: background .2s, color .2s;
}
.testimonial-arrow:hover { background: var(--red); color: var(--white); }
.testimonial-arrow--prev { right: -22px; }
.testimonial-arrow--next { left: -22px; }
.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--warm-mid);
  border: none;
  cursor: pointer;
  transition: background .2s, transform .2s;
}
.testimonial-dot.active {
  background: var(--red);
  transform: scale(1.3);
}

/* =============================================
   CONTACT
   ============================================= */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-info .section-title { margin-bottom: 16px; }
.contact-info > p { color: var(--text-light); margin-bottom: 32px; }
.contact-items { display: flex; flex-direction: column; gap: 16px; }
.contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--warm-mid);
  background: var(--warm-bg);
  transition: border-color .2s, box-shadow .2s;
}
.contact-item:hover {
  border-color: var(--red);
  box-shadow: 0 2px 12px rgba(211,28,29,.08);
}
.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(211,28,29,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  flex-shrink: 0;
}
.contact-item-icon--green {
  background: rgba(37,211,102,.1);
  color: var(--green-wa);
}
.contact-item strong { display: block; font-size: .85rem; color: var(--text); }
.contact-item span { font-size: .95rem; color: var(--text-light); }
.contact-item-sub-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 6px;
  font-size: .82rem;
  color: var(--green-wa);
  text-decoration: none;
  font-weight: 600;
  transition: opacity .2s;
}
.contact-item-sub-link:hover { opacity: .75; }

.contact-form-wrap {
  background: var(--warm-bg);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 1px solid var(--warm-mid);
}
.contact-form h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}
.req { color: var(--red); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--warm-mid);
  border-radius: var(--radius);
  background: var(--white);
  font-family: inherit;
  font-size: .95rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  direction: rtl;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(211,28,29,.1);
}
.form-group input.error,
.form-group select.error {
  border-color: var(--red);
}
.form-group textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: .78rem;
  color: var(--text-light);
  margin-top: 10px;
}
.form-success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(37,211,102,.1);
  border: 1px solid rgba(37,211,102,.3);
  color: #1a7a40;
  border-radius: var(--radius);
  padding: 12px 16px;
  margin-top: 16px;
  font-weight: 500;
}

/* =============================================
   FOOTER
   ============================================= */
.footer-top {
  background: var(--dark);
  padding: 60px 0 40px;
}
.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
}
.footer-logo {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: .85rem;
  color: var(--brown);
  font-weight: 500;
  margin-bottom: 12px;
}
.footer-desc {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  line-height: 1.6;
}
.footer-nav-col h4,
.footer-contact-col h4 {
  font-size: .88rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-nav-col ul li,
.footer-contact-col ul li {
  margin-bottom: 10px;
}
.footer-nav-col a,
.footer-contact-col a,
.footer-contact-col li {
  font-size: .88rem;
  color: rgba(255,255,255,.45);
  transition: color .18s;
}
.footer-nav-col a:hover,
.footer-contact-col a:hover { color: var(--white); }
.footer-bottom {
  background: #0D0B08;
  padding: 16px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: center;
}
.footer-bottom p {
  font-size: .8rem;
  color: rgba(255,255,255,.3);
}

/* =============================================
   WHATSAPP FLOAT
   ============================================= */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 998;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--green-wa);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .25s, box-shadow .25s;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(37,211,102,.5);
}
.whatsapp-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  background: var(--dark);
  color: var(--white);
  font-size: .8rem;
  font-weight: 500;
  white-space: nowrap;
  padding: 6px 12px;
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* =============================================
   SERVICE MAMAD CARD
   ============================================= */
.service-card--mamad {
  border-color: rgba(136,14,79,.15);
  background: linear-gradient(135deg,#fff 70%,rgba(136,14,79,.03) 100%);
}
.service-card--mamad::before { background: #880E4F; }
.service-badge-top--mamad { background: #880E4F; }
.service-icon--mamad { background: rgba(136,14,79,.07); color: #880E4F; }
.service-card--mamad:hover .service-icon--mamad {
  background: rgba(136,14,79,.14);
  color: #880E4F;
}

/* =============================================
   SERVICE YIZAMUT CARD
   ============================================= */
.service-card--yizamut {
  border-color: rgba(22,101,52,.15);
  background: linear-gradient(135deg,#fff 70%,rgba(22,101,52,.03) 100%);
}
.service-card--yizamut::before { background: #166534; }
.service-badge-top--yizamut { background: linear-gradient(90deg,#166534,#15803d); }
.service-icon--yizamut { background: rgba(22,101,52,.08); color: #166534; }
.service-card--yizamut:hover .service-icon--yizamut {
  background: rgba(22,101,52,.15);
  color: #166534;
}

/* =============================================
   MAMAD SECTION
   ============================================= */
.mamad-section {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
.mamad-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(136,14,79,.15) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(211,28,29,.1)  0%, transparent 50%);
  pointer-events: none;
}
.mamad-section .container { position: relative; z-index: 1; }

.mamad-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.mamad-text .section-eyebrow {
  background: rgba(136,14,79,.2);
  color: #CE93D8;
}
.mamad-text .section-title { color: var(--white); }
.mamad-intro {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.mamad-facts { display: flex; flex-direction: column; gap: 22px; margin-bottom: 36px; }
.mamad-fact {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.mamad-fact-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.mamad-fact strong {
  display: block;
  color: var(--white);
  font-size: .95rem;
  margin-bottom: 4px;
}
.mamad-fact p {
  color: rgba(255,255,255,.55);
  font-size: .88rem;
  line-height: 1.6;
}
.mamad-fact p strong { display: inline; color: #CE93D8; }

.mamad-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* Visual side */
.mamad-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/10;
  position: relative;
  margin-bottom: 20px;
  box-shadow: var(--shadow-lg);
}
.mamad-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.mamad-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.5) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.mamad-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(136,14,79,.85);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

/* Mamad image gallery */
.mamad-gallery { margin-bottom: 20px; }
.mamad-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
  margin-bottom: 10px;
  box-shadow: var(--shadow-lg);
}
.mamad-main-img img { width: 100%; height: 100%; object-fit: cover; }
.mamad-sub-imgs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.mamad-sub-img {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  box-shadow: 0 2px 10px rgba(0,0,0,.3);
}
.mamad-sub-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s; }
.mamad-sub-img:hover img { transform: scale(1.07); }
.mamad-img-note {
  font-size: .72rem;
  color: rgba(255,255,255,.3);
  text-align: left;
  margin-top: 6px;
  font-style: italic;
}

.mamad-steps {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 24px;
}
.mamad-steps h4 {
  color: var(--white);
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 16px;
}
.step {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.step:last-child { border-bottom: none; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(136,14,79,.5);
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Gallery empty state */
.gallery-empty-msg {
  text-align: center;
  padding: 60px 20px;
  color: rgba(255,255,255,.45);
  font-size: .95rem;
  line-height: 1.7;
}

/* Responsive mamad */
@media (max-width: 1024px) {
  .mamad-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =============================================
   SCROLL REVEAL
   ============================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { order: -1; }
  .about-img-wrap { max-width: 600px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --nav-h: 0px; }

  .section { padding: 56px 0; }
  .section-title { font-size: 1.8rem; }

  .header-contact { display: none; }
  .nav-toggle { display: flex; }

  .main-nav {
    top: var(--header-h);
    height: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
  }
  .main-nav.open { max-height: 400px; }
  .nav-inner { padding: 0; }
  .nav-list {
    flex-direction: column;
    align-items: stretch;
    height: auto;
    padding: 8px 0;
  }
  .nav-link {
    height: auto;
    padding: 13px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-link::after { display: none; }

  .hero { margin-top: var(--header-h); min-height: 85vh; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 11px 20px; font-size: .88rem; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-left: none; }
  .stat-item:nth-child(3) { border-left: 1px solid rgba(255,255,255,.08); border-top: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-child(4) { border-left: none; border-top: 1px solid rgba(255,255,255,.08); }

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

  .testimonial-card { flex: 0 0 calc(100% - 0px); }
  .testimonial-arrow--prev { right: 8px; }
  .testimonial-arrow--next { left: 8px; }

  .contact-form-wrap { padding: 28px 20px; }
  .footer-top-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }

  .whatsapp-float { bottom: 20px; left: 20px; width: 52px; height: 52px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .gcat-grid    { grid-template-columns: repeat(2, 1fr); }
  .about-values { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
}

/* =============================================
   SERVICES — DARK BLUEPRINT REDESIGN
   ============================================= */
/* Override the warm overlay with dark + architectural grid */
.services::before {
  background:
    linear-gradient(rgba(100,160,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,160,255,.055) 1px, transparent 1px),
    linear-gradient(rgba(100,160,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(100,160,255,.025) 1px, transparent 1px),
    rgba(20, 16, 11, 0.93);
  background-size: 60px 60px, 60px 60px, 12px 12px, 12px 12px, auto;
}
.services .section-eyebrow { color: var(--red); }
.services .section-title   { color: var(--white); }
.services .section-desc    { color: rgba(255,255,255,.5); }

/* Dark translucent cards */
.services .service-card {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 4px 28px rgba(0,0,0,.35);
}
/* Ghost ordinal number watermark */
.services .service-card::after {
  content: attr(data-num);
  position: absolute;
  bottom: -14px;
  left: 12px;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -4px;
  color: rgba(255,255,255,.045);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  transition: color .3s;
}
.services .service-card:hover::after {
  color: rgba(211,28,29,.1);
}
.services .service-card h3  { color: var(--white); }
.services .service-card p   { color: rgba(255,255,255,.58); }
.services .service-card:hover {
  background: rgba(255,255,255,.09);
  box-shadow: 0 12px 52px rgba(0,0,0,.5), 0 0 0 1px rgba(211,28,29,.4);
  transform: translateY(-6px);
}
.services .service-icon {
  background: rgba(255,255,255,.07);
  color: rgba(255,255,255,.65);
}
.services .service-card:hover .service-icon {
  background: rgba(211,28,29,.18);
  color: var(--red);
  box-shadow: 0 0 28px rgba(211,28,29,.4);
}
.services .service-tags span {
  background: rgba(255,255,255,.07);
  border-color: rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
}
.services .services-note {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
}
.services .services-note svg { color: rgba(255,255,255,.3); }
.services .service-badge-top { background: var(--red); }

/* =============================================
   PROCESS SECTION — 6-STEP JOURNEY
   ============================================= */
.process-section {
  background: var(--dark-mid);
  position: relative;
  overflow: hidden;
}
/* Subtle red glow from top */
.process-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(211,28,29,.08) 0%, transparent 65%);
  pointer-events: none;
}
.process-section .container { position: relative; z-index: 1; }
.process-section .section-eyebrow { color: var(--red); }
.process-section .section-title   { color: var(--white); }
.process-section .section-desc    { color: rgba(255,255,255,.48); }

/* 4×1 bordered grid (single row) */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.process-step {
  padding: 36px 28px 32px;
  border-left: 1px solid rgba(255,255,255,.07);
  border-bottom: none;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}
/* No double-border on rightmost */
.process-step:nth-child(4n) { border-left: none; }

.process-step:hover { background: rgba(255,255,255,.04); }

/* Huge ghost number behind content */
.process-step::after {
  content: attr(data-step);
  position: absolute;
  bottom: -24px;
  left: 8px;
  font-size: 9rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -6px;
  color: rgba(255,255,255,.04);
  pointer-events: none;
  font-variant-numeric: tabular-nums;
  transition: color .3s;
}
.process-step:hover::after { color: rgba(211,28,29,.1); }

.process-step-num {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  opacity: .45;
  line-height: 1;
  margin-bottom: 14px;
  letter-spacing: -1px;
  transition: opacity .3s;
}
.process-step:hover .process-step-num { opacity: .9; }

.process-step-icon {
  width: 44px;
  height: 44px;
  background: rgba(211,28,29,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 16px;
  transition: background .3s, box-shadow .3s;
}
.process-step:hover .process-step-icon {
  background: rgba(211,28,29,.22);
  box-shadow: 0 0 22px rgba(211,28,29,.3);
}
.process-step h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.35;
}
.process-step p {
  font-size: .85rem;
  color: rgba(255,255,255,.48);
  line-height: 1.65;
}

@media (max-width: 767px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  /* Reset 4-col rule */
  .process-step:nth-child(4n)        { border-left: 1px solid rgba(255,255,255,.07); }
  /* 2×2: add bottom border between rows */
  .process-step:nth-child(-n+2)      { border-bottom: 1px solid rgba(255,255,255,.07); }
  /* No border on right column */
  .process-step:nth-child(2n)        { border-left: none; }
}
@media (max-width: 480px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step                      { border-left: none !important; border-bottom: 1px solid rgba(255,255,255,.07); }
  .process-step:last-child           { border-bottom: none; }
}

/* =============================================
   GALLERY CTA — EMOTIONAL UPGRADE
   ============================================= */
.gallery-cta {
  text-align: center;
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.gallery-cta-headline {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}
.gallery-cta-headline em {
  font-style: normal;
  color: var(--red);
}
.gallery-cta-sub {
  font-size: .95rem;
  color: rgba(255,255,255,.48);
  margin-bottom: 28px;
}

/* =============================================
   MOBILE PERFORMANCE & TOUCH TARGET FIXES
   ============================================= */
@media (max-width: 768px) {
  .nav-toggle {
    min-width: 48px;
    min-height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
  }
  .header-phone,
  .header-whatsapp {
    min-height: 48px;
    padding: 12px 16px;
  }
  .btn {
    min-height: 48px;
    padding: 13px 24px;
  }
  .nav-link {
    padding: 14px 18px;
    display: block;
  }
  .footer-nav-col a,
  .footer-contact-col a {
    display: inline-block;
    padding: 8px 0;
    min-height: 44px;
    line-height: 28px;
  }
  .contact-item {
    padding: 16px;
  }
  .wa-fab {
    width: 56px;
    height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* =============================================
   MOBILE IMAGE MEMORY OPTIMISATION
   Replace desktop-size (w=1600) section
   background images with lightweight 800px
   versions to prevent iOS Safari OOM crash.
   ============================================= */
@media (max-width: 900px) {
  .stats-bar {
    background-image: url('https://images.unsplash.com/photo-1504307374-5d7e8a9a9c7c?auto=format&fit=crop&w=800&q=65') !important;
  }
  .services.section {
    background-image: url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?auto=format&fit=crop&w=800&q=65') !important;
  }
  .testimonials.section {
    background-image: url('https://images.unsplash.com/photo-1600880292203-757bb62b4baf?auto=format&fit=crop&w=800&q=65') !important;
  }
}
