:root {
  --bg: #0f0b06;
  --bg-2: #1b1208;
  --cream: #f2dec0;
  --cream-2: #fff4dc;
  --muted: rgba(242, 222, 192, 0.68);
  --gold: #c99a3b;
  --gold-2: #f1c66b;
  --dark: #070503;
  --glass: rgba(255, 255, 255, 0.07);
  --line: rgba(201, 154, 59, 0.22);
  --shadow: 0 40px 120px rgba(0,0,0,0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 20% 10%, rgba(201,154,59,0.22), transparent 28%),
    radial-gradient(circle at 80% 0%, rgba(255,244,220,0.08), transparent 26%),
    linear-gradient(135deg, #070503 0%, #130d07 48%, #261708 100%);
  color: var(--cream);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(201,154,59,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,154,59,0.035) 1px, transparent 1px);
  background-size: 78px 78px;
  mask-image: radial-gradient(circle at 50% 20%, black, transparent 74%);
  pointer-events: none;
  z-index: -2;
}

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

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

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  z-index: 100;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 260 260' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}

.cursor-glow {
  position: fixed;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,154,59,0.16), transparent 67%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.topbar {
  position: fixed;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 36px));
  height: 74px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 22px;
  background: rgba(12, 8, 4, 0.58);
  border: 1px solid var(--line);
  backdrop-filter: blur(22px);
  box-shadow: 0 18px 70px rgba(0,0,0,0.28);
}

.logo {
  display: flex;
  align-items: center;
  gap: 13px;
  font-weight: 800;
  letter-spacing: .36em;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  position: relative;
  box-shadow: inset 0 0 20px rgba(201,154,59,.12), 0 0 26px rgba(201,154,59,.18);
}

.logo-mark i {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  left: 12px;
  right: 8px;
}

.logo-mark i:nth-child(1) { top: 12px; }
.logo-mark i:nth-child(2) { top: 20px; right: 14px; }
.logo-mark i:nth-child(3) { top: 28px; }

.desktop-nav {
  display: flex;
  gap: 30px;
  color: var(--muted);
  font-size: 14px;
}

.desktop-nav a {
  transition: color .25s ease;
}

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

.topbar-cta,
.button,
.lead-form button,
.whatsapp-float {
  border: 1px solid rgba(201,154,59,.55);
  background: linear-gradient(135deg, var(--gold), #8c5e14);
  color: #fff5dd;
  padding: 13px 20px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  box-shadow: 0 18px 45px rgba(201,154,59,.16);
  transition: transform .25s ease, box-shadow .25s ease;
}

.topbar-cta:hover,
.button:hover,
.lead-form button:hover,
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 65px rgba(201,154,59,.24);
}

.hero-section {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
  gap: 60px;
  padding: 150px max(28px, calc((100vw - 1180px) / 2)) 80px;
  perspective: 1500px;
  overflow: hidden;
}

.hero-bg-title {
  position: absolute;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  font-size: clamp(160px, 26vw, 520px);
  line-height: 1;
  font-weight: 800;
  letter-spacing: .08em;
  color: rgba(242,222,192,0.035);
  pointer-events: none;
  white-space: nowrap;
}

.kicker {
  color: var(--gold-2);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
  margin: 0 0 22px;
}

.hero-title,
.section-copy h2,
.contact-card h2 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.045em;
}

.hero-title {
  font-size: clamp(58px, 7.3vw, 118px);
  line-height: .88;
  margin: 0;
}

.hero-title span {
  display: block;
  color: var(--gold-2);
}

.hero-subtitle {
  color: var(--muted);
  max-width: 650px;
  font-size: 18px;
  line-height: 1.8;
  margin: 30px 0 36px;
}

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

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
}

.button.ghost {
  background: rgba(255,255,255,0.04);
  color: var(--cream);
  box-shadow: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 54px;
}

.hero-stats div {
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.035);
  transform: translateZ(0);
}

.hero-stats strong {
  display: block;
  color: var(--cream-2);
  margin-bottom: 8px;
}

.hero-stats span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.hero-scene-wrap {
  min-height: 650px;
  perspective: 1500px;
}

.hero-scene {
  position: relative;
  height: 650px;
  transform-style: preserve-3d;
  will-change: transform;
}

.scene-card.main-property {
  position: absolute;
  inset: 58px 36px 46px 60px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow);
  transform: translateZ(70px) rotateY(-12deg) rotateX(5deg);
  border: 1px solid rgba(201,154,59,.42);
}

.main-property img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.property-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  padding: 22px;
  background: rgba(7,5,3,.55);
  border: 1px solid rgba(201,154,59,.28);
  backdrop-filter: blur(18px);
}

.property-overlay span {
  display: block;
  color: var(--gold-2);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 8px;
}

.property-overlay strong {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  font-weight: 600;
}

.scene-ring {
  position: absolute;
  border: 1px solid rgba(201,154,59,.34);
  border-radius: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.ring-a {
  width: 560px;
  height: 560px;
  top: 40px;
  left: 40px;
  transform: translateZ(120px) rotateX(68deg) rotateZ(-24deg);
}

.ring-b {
  width: 430px;
  height: 430px;
  top: 128px;
  right: 6px;
  transform: translateZ(170px) rotateX(70deg) rotateZ(28deg);
  border-color: rgba(242,222,192,.22);
}

.ring-c {
  width: 310px;
  height: 310px;
  right: 84px;
  bottom: 64px;
  transform: translateZ(220px) rotateX(62deg) rotateZ(-38deg);
  border-color: rgba(201,154,59,.44);
}

.floating-tile {
  position: absolute;
  z-index: 4;
  width: 210px;
  padding: 20px;
  border: 1px solid rgba(201,154,59,.34);
  background: rgba(15,11,6,.58);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(0,0,0,.26);
}

.floating-tile small {
  display: block;
  color: var(--gold-2);
  letter-spacing: .18em;
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 10px;
}

.floating-tile strong {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
}

.tile-one {
  left: 6px;
  top: 118px;
  transform: translateZ(250px) rotate(-4deg);
}

.tile-two {
  right: -10px;
  top: 262px;
  transform: translateZ(280px) rotate(5deg);
}

.tile-three {
  left: 58px;
  bottom: 54px;
  transform: translateZ(230px) rotate(3deg);
}

.glass-depth {
  position: absolute;
  border: 1px solid rgba(201,154,59,.18);
  background: rgba(255,255,255,.035);
  border-radius: 34px;
  pointer-events: none;
}

.depth-one {
  inset: 34px 14px 66px 94px;
  transform: translateZ(0px) rotateY(-18deg) rotateX(9deg);
}

.depth-two {
  inset: 88px 90px 20px 8px;
  transform: translateZ(-90px) rotateY(-20deg) rotateX(10deg);
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 9px;
  color: rgba(242,222,192,.55);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.scroll-hint span {
  width: 1px;
  height: 44px;
  background: linear-gradient(transparent, var(--gold), transparent);
}

.section {
  position: relative;
  padding: 120px max(28px, calc((100vw - 1180px) / 2));
}

.split-section {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section-copy h2 {
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: .95;
  margin: 0;
}

.section-copy.center {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 64px;
}

.depth-text-panel {
  padding: 36px;
  background: rgba(255,255,255,.045);
  border: 1px solid var(--line);
  box-shadow: 0 34px 100px rgba(0,0,0,.2);
  transform: perspective(900px) rotateY(-7deg) rotateX(4deg);
}

.depth-text-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
  margin: 0 0 22px;
}

.depth-text-panel p:last-child {
  margin-bottom: 0;
}

.projects-section {
  overflow: hidden;
}

.project-showcase {
  position: relative;
  height: 620px;
  perspective: 1600px;
}

.project-slider {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

.project-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(760px, 74vw);
  height: 560px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(201,154,59,.42);
  background: #1a1007;
  box-shadow: var(--shadow);
  transform-style: preserve-3d;
  transition: transform .75s cubic-bezier(.2,.8,.2,1), opacity .55s ease, filter .55s ease;
}

.project-slide img {
  height: 100%;
  object-fit: cover;
}

.project-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 24%, rgba(7,5,3,.82));
}

.slide-content {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 34px;
  z-index: 2;
  transform: translateZ(60px);
}

.slide-content span {
  color: var(--gold-2);
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}

.slide-content h3 {
  margin: 12px 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(38px, 4vw, 64px);
  line-height: .95;
  font-weight: 600;
}

.slide-content p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.slider-btn {
  position: absolute;
  top: 46%;
  z-index: 20;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid rgba(201,154,59,.55);
  background: rgba(15,11,6,.62);
  color: var(--gold-2);
  font-size: 42px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition: transform .25s ease, background .25s ease;
}

.slider-btn:hover {
  transform: scale(1.08);
  background: rgba(201,154,59,.18);
}

.slider-btn.prev {
  left: 6%;
}

.slider-btn.next {
  right: 6%;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.slider-dots button {
  width: 34px;
  height: 4px;
  border: 0;
  background: rgba(242,222,192,.22);
  cursor: pointer;
  transition: width .25s ease, background .25s ease;
}

.slider-dots button.active {
  width: 58px;
  background: var(--gold-2);
}

.process-section {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 68px;
  align-items: start;
}

.process-stack {
  display: grid;
  gap: 18px;
  perspective: 1200px;
}

.process-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 24px;
  padding: 26px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  transform-style: preserve-3d;
  box-shadow: 0 24px 75px rgba(0,0,0,.18);
  transition: transform .35s ease, background .35s ease;
}

.process-item:hover {
  transform: translateX(-12px) rotateY(6deg);
  background: rgba(255,255,255,.07);
}

.process-item span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--gold-2);
  border: 1px solid rgba(201,154,59,.45);
  font-weight: 900;
}

.process-item h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 31px;
  font-weight: 600;
}

.process-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.areas-3d-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  perspective: 1200px;
}

.areas-3d-grid span {
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cream-2);
  font-weight: 900;
  letter-spacing: .06em;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(201,154,59,.08));
  border: 1px solid var(--line);
  transform-style: preserve-3d;
  box-shadow: 0 28px 80px rgba(0,0,0,.22);
  transition: transform .35s ease, background .35s ease;
}

.areas-3d-grid span:hover {
  transform: translateY(-14px) rotateX(8deg) rotateY(-8deg);
  background: linear-gradient(135deg, rgba(201,154,59,.16), rgba(255,255,255,.08));
}

.contact-section {
  padding-bottom: 80px;
}

.contact-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
  padding: clamp(28px, 5vw, 70px);
  background:
    radial-gradient(circle at 90% 10%, rgba(201,154,59,.18), transparent 34%),
    rgba(255,255,255,.052);
  border: 1px solid rgba(201,154,59,.32);
  box-shadow: var(--shadow);
  border-radius: 34px;
  transform-style: preserve-3d;
}

.contact-card h2 {
  font-size: clamp(44px, 5vw, 80px);
  line-height: .95;
  margin: 0 0 22px;
}

.contact-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 18px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.lead-form input,
.lead-form select {
  width: 100%;
  border: 1px solid rgba(201,154,59,.25);
  background: rgba(7,5,3,.46);
  color: var(--cream);
  padding: 16px 14px;
  font: inherit;
  outline: none;
}

.lead-form input::placeholder {
  color: rgba(242,222,192,.45);
}

.lead-form input:focus,
.lead-form select:focus {
  border-color: var(--gold-2);
}

.lead-form .full {
  grid-column: 1 / -1;
}

.lead-form button {
  cursor: pointer;
  min-height: 54px;
}

.footer {
  padding: 34px max(28px, calc((100vw - 1180px) / 2));
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer strong {
  display: block;
  color: var(--cream);
  letter-spacing: .32em;
  margin-bottom: 8px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.whatsapp-float {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 60;
  border-radius: 999px;
}

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

  .hero-section,
  .split-section,
  .process-section,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-scene-wrap {
    min-height: 560px;
  }

  .hero-scene {
    height: 560px;
  }

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

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

@media (max-width: 680px) {
  .topbar {
    top: 12px;
    width: calc(100% - 22px);
  }

  .topbar-cta {
    display: none;
  }

  .logo span:last-child {
    font-size: 14px;
  }

  .hero-section {
    padding: 120px 18px 60px;
  }

  .hero-title {
    font-size: 54px;
  }

  .hero-scene-wrap {
    min-height: 470px;
  }

  .hero-scene {
    height: 470px;
  }

  .scene-card.main-property {
    inset: 40px 0 56px;
  }

  .floating-tile {
    width: 165px;
    padding: 14px;
  }

  .tile-one {
    left: 0;
    top: 70px;
  }

  .tile-two {
    right: 0;
    top: 210px;
  }

  .tile-three {
    left: 18px;
    bottom: 16px;
  }

  .ring-a,
  .ring-b,
  .ring-c {
    display: none;
  }

  .section {
    padding: 82px 18px;
  }

  .project-showcase {
    height: 520px;
  }

  .project-slide {
    width: 86vw;
    height: 470px;
  }

  .slider-btn {
    width: 48px;
    height: 48px;
    font-size: 34px;
  }

  .slider-btn.prev {
    left: 0;
  }

  .slider-btn.next {
    right: 0;
  }

  .process-item {
    grid-template-columns: 1fr;
  }

  .areas-3d-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

/* ==========================================================
   EVOLVE V3 — Cream/Gold Theme + 3D Egypt Property Map Hero
   ========================================================== */

:root {
  --bg: #f6ead7;
  --bg-2: #ead4ae;
  --cream: #11100e;
  --cream-2: #2a2117;
  --muted: #665c4e;
  --gold: #a97818;
  --gold-2: #c99a3b;
  --dark: #fff7ea;
  --glass: rgba(255, 255, 255, 0.36);
  --line: rgba(169, 120, 24, 0.32);
  --shadow: 0 38px 110px rgba(111, 75, 8, 0.18);
}

body {
  background:
    radial-gradient(circle at 18% 9%, rgba(255,255,255,0.72), transparent 26%),
    radial-gradient(circle at 80% 0%, rgba(169,120,24,0.14), transparent 28%),
    linear-gradient(135deg, #f8ecd9 0%, #ead4ae 45%, #f4e5cf 100%) !important;
  color: var(--cream);
}

body::before {
  background:
    linear-gradient(rgba(169,120,24,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.045) 1px, transparent 1px) !important;
  background-size: 74px 74px !important;
}

.cursor-glow {
  background: radial-gradient(circle, rgba(169,120,24,0.16), transparent 67%) !important;
}

.topbar {
  background: rgba(246, 234, 215, 0.78) !important;
  border: 1px solid rgba(169,120,24,0.28) !important;
  box-shadow: 0 18px 55px rgba(111,75,8,0.10) !important;
}

.logo,
.desktop-nav,
.footer,
.footer strong {
  color: var(--cream) !important;
}

.desktop-nav {
  color: rgba(17,16,14,0.7) !important;
}

.desktop-nav a:hover {
  color: var(--gold) !important;
}

.logo-mark {
  border-color: var(--gold) !important;
  box-shadow: inset 0 0 18px rgba(169,120,24,.12), 0 0 22px rgba(169,120,24,.14) !important;
}

.logo-mark i {
  background: linear-gradient(90deg, var(--gold), #d6a447) !important;
}

.button.ghost {
  background: rgba(255,255,255,0.28) !important;
  color: var(--cream) !important;
}

.hero-bg-title {
  color: rgba(111,75,8,0.055) !important;
}

.hero-subtitle,
.depth-text-panel p,
.process-item p,
.contact-card p,
.footer,
.slide-content p {
  color: var(--muted) !important;
}

.hero-stats div,
.depth-text-panel,
.process-item,
.contact-card,
.areas-3d-grid span {
  background: rgba(255,255,255,0.28) !important;
  border-color: rgba(169,120,24,0.28) !important;
  box-shadow: 0 28px 80px rgba(111,75,8,0.12) !important;
}

.project-slide,
.property-overlay,
.floating-tile {
  color: #fff4dc !important;
}

.slide-content,
.property-overlay {
  color: #fff4dc !important;
}

.slide-content p,
.property-overlay p {
  color: rgba(255,244,220,0.75) !important;
}

.lead-form input,
.lead-form select {
  background: rgba(255,248,234,0.72) !important;
  color: var(--cream) !important;
  border-color: rgba(169,120,24,0.32) !important;
}

.lead-form input::placeholder {
  color: rgba(17,16,14,0.48) !important;
}

.contact-card {
  background:
    radial-gradient(circle at 90% 10%, rgba(169,120,24,.13), transparent 34%),
    rgba(255,255,255,.30) !important;
}

/* Reset the new hero away from dark/poster feeling */
.v3-map-hero {
  grid-template-columns: .92fr 1.08fr;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
}

.v3-map-hero .hero-content {
  position: relative;
  z-index: 3;
}

.v3-map-hero .hero-title {
  max-width: 720px;
  color: #11100e;
}

.v3-map-hero .hero-title span {
  color: var(--gold);
}

.market-panel {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 760px;
  perspective: 1100px;
}

.market-panel div {
  padding: 18px;
  background: rgba(255,255,255,0.30);
  border: 1px solid rgba(169,120,24,0.28);
  box-shadow: 0 22px 60px rgba(111,75,8,0.10);
  transform-style: preserve-3d;
  transition: transform .3s ease, background .3s ease;
}

.market-panel div:hover {
  transform: translateY(-8px) rotateX(7deg) rotateY(-5deg);
  background: rgba(255,255,255,0.44);
}

.market-panel small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 8px;
}

.market-panel strong {
  display: block;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 600;
}

/* 3D Egypt Map Hero */
.hero-map-wrap {
  min-height: 680px;
  perspective: 1600px;
}

.egypt-map-scene {
  position: relative;
  height: 680px;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform .22s ease-out;
}

.egypt-map-card {
  position: absolute;
  inset: 42px 60px 44px 48px;
  transform-style: preserve-3d;
  transform: translateZ(70px) rotateY(-12deg) rotateX(6deg);
}

.egypt-map-shape {
  position: absolute;
  inset: 14px 82px 80px 74px;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.46), rgba(217,189,145,0.24)),
    linear-gradient(180deg, #e9d0a6, #cfa35b);
  clip-path: polygon(
    42% 0%,
    58% 2%,
    66% 13%,
    63% 26%,
    72% 39%,
    67% 56%,
    74% 69%,
    63% 86%,
    54% 100%,
    42% 88%,
    36% 68%,
    30% 52%,
    34% 34%,
    28% 18%
  );
  border: 1px solid rgba(169,120,24,0.55);
  box-shadow:
    inset 0 0 55px rgba(255,255,255,0.32),
    inset 0 -45px 80px rgba(111,75,8,0.13),
    0 44px 95px rgba(111,75,8,0.20);
  transform-style: preserve-3d;
  transform: translateZ(70px);
}

.egypt-map-shape::before {
  content: "";
  position: absolute;
  inset: 20px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255,255,255,0.45), transparent 20%),
    linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.28), transparent 58%);
  clip-path: inherit;
  opacity: .9;
}

.egypt-map-shape::after {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: inherit;
  background:
    linear-gradient(rgba(111,75,8,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(111,75,8,0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: .55;
}

.map-highlight {
  position: absolute;
  width: 62%;
  height: 26%;
  left: 24%;
  top: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.36), transparent 70%);
  transform: rotate(-18deg);
  z-index: 1;
}

.map-floor {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 12px;
  height: 210px;
  background:
    linear-gradient(rgba(169,120,24,0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.14) 1px, transparent 1px);
  background-size: 38px 38px;
  transform: rotateX(68deg) translateZ(-120px);
  opacity: .34;
  border-radius: 50%;
  pointer-events: none;
}

.map-orbit {
  position: absolute;
  border: 1px solid rgba(169,120,24,0.42);
  border-radius: 50%;
  pointer-events: none;
  filter: drop-shadow(0 24px 36px rgba(111,75,8,.12));
}

.orbit-main {
  width: 580px;
  height: 580px;
  left: 46px;
  top: 54px;
  transform: translateZ(120px) rotateX(69deg) rotateZ(-24deg);
  animation: mapOrbitOne 9s ease-in-out infinite;
}

.orbit-side {
  width: 430px;
  height: 430px;
  right: 10px;
  top: 136px;
  transform: translateZ(170px) rotateX(70deg) rotateZ(26deg);
  border-color: rgba(201,154,59,0.34);
  animation: mapOrbitTwo 11s ease-in-out infinite;
}

.orbit-front {
  width: 290px;
  height: 290px;
  right: 104px;
  bottom: 64px;
  transform: translateZ(230px) rotateX(64deg) rotateZ(-40deg);
  border-color: rgba(255,255,255,0.38);
  animation: mapOrbitThree 7s ease-in-out infinite;
}

@keyframes mapOrbitOne {
  0%,100% { transform: translateZ(120px) rotateX(69deg) rotateZ(-24deg) translateY(0); }
  50% { transform: translateZ(145px) rotateX(69deg) rotateZ(-15deg) translateY(-18px); }
}

@keyframes mapOrbitTwo {
  0%,100% { transform: translateZ(170px) rotateX(70deg) rotateZ(26deg) translateY(0); }
  50% { transform: translateZ(195px) rotateX(70deg) rotateZ(18deg) translateY(15px); }
}

@keyframes mapOrbitThree {
  0%,100% { transform: translateZ(230px) rotateX(64deg) rotateZ(-40deg) translateY(0); }
  50% { transform: translateZ(250px) rotateX(64deg) rotateZ(-30deg) translateY(-12px); }
}

.map-glass-layer {
  position: absolute;
  border-radius: 34px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(169,120,24,0.22);
  pointer-events: none;
}

.layer-back {
  inset: 70px 60px 62px 96px;
  transform: translateZ(-80px) rotateY(-18deg) rotateX(10deg);
}

.layer-front {
  inset: 28px 30px 100px 30px;
  transform: translateZ(20px) rotateY(-15deg) rotateX(8deg);
}

.map-pin {
  position: absolute;
  z-index: 5;
  border: 0;
  background: transparent;
  padding: 0;
  color: #11100e;
  cursor: pointer;
  transform: translateZ(130px);
}

.map-pin span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff8e8 0%, var(--gold-2) 42%, var(--gold) 100%);
  border: 2px solid rgba(255,255,255,.82);
  box-shadow:
    0 0 0 7px rgba(169,120,24,.16),
    0 16px 32px rgba(111,75,8,.28);
  position: relative;
}

.map-pin span::after {
  content: "";
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(169,120,24,.35);
  animation: pinPulse 2s ease-out infinite;
}

@keyframes pinPulse {
  0% { transform: scale(.45); opacity: .9; }
  100% { transform: scale(1.6); opacity: 0; }
}

.map-pin em {
  position: absolute;
  left: 50%;
  top: 28px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-style: normal;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  color: #11100e;
  background: rgba(255,248,234,.78);
  border: 1px solid rgba(169,120,24,.28);
  backdrop-filter: blur(12px);
  padding: 7px 9px;
  box-shadow: 0 14px 30px rgba(111,75,8,.12);
  opacity: .78;
  transition: opacity .25s ease, transform .25s ease;
}

.map-pin:hover em,
.map-pin.active em {
  opacity: 1;
  transform: translateX(-50%) translateY(-3px);
}

.map-pin.active span {
  box-shadow:
    0 0 0 9px rgba(169,120,24,.20),
    0 0 38px rgba(169,120,24,.35),
    0 20px 42px rgba(111,75,8,.32);
}

.pin-new-cairo { left: 55%; top: 24%; }
.pin-capital { left: 63%; top: 30%; }
.pin-zayed { left: 43%; top: 28%; }
.pin-north { left: 34%; top: 13%; }
.pin-sokhna { left: 64%; top: 43%; }
.pin-redsea { left: 62%; top: 68%; }

.map-info-card,
.map-floating-stat {
  position: absolute;
  z-index: 8;
  border: 1px solid rgba(169,120,24,.34);
  background: rgba(248,236,217,.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(111,75,8,.16);
  color: #11100e;
}

.map-info-card {
  width: 290px;
  right: 0;
  top: 82px;
  padding: 24px;
  transform: translateZ(270px) rotateY(-6deg);
  transition: transform .3s ease, opacity .25s ease;
}

.map-info-card small,
.map-floating-stat small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .18em;
  margin-bottom: 10px;
}

.map-info-card h3 {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 42px;
  line-height: .95;
  font-weight: 600;
}

.map-info-card strong {
  display: block;
  color: #6f4b08;
  margin-bottom: 12px;
}

.map-info-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 14px;
}

.map-floating-stat {
  padding: 17px 19px;
  min-width: 160px;
}

.map-floating-stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
}

.stat-one {
  left: 18px;
  top: 92px;
  transform: translateZ(230px) rotate(-4deg);
}

.stat-two {
  left: 46px;
  bottom: 70px;
  transform: translateZ(260px) rotate(4deg);
}

/* Light-theme support for dark-designed sections */
.process-item h3,
.section-copy h2,
.contact-card h2,
.hero-title,
.slide-content h3 {
  color: #11100e;
}

.project-slide .slide-content h3,
.project-slide .slide-content,
.project-slide .slide-content span {
  color: #fff4dc !important;
}

.project-slide .slide-content p {
  color: rgba(255,244,220,0.78) !important;
}

.areas-3d-grid span {
  color: #11100e !important;
}

.footer {
  border-top-color: rgba(169,120,24,0.28) !important;
}

/* Responsive */
@media (max-width: 1050px) {
  .v3-map-hero {
    grid-template-columns: 1fr;
  }

  .hero-map-wrap {
    min-height: 620px;
  }

  .egypt-map-scene {
    height: 620px;
  }

  .market-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero-map-wrap {
    min-height: 520px;
  }

  .egypt-map-scene {
    height: 520px;
  }

  .egypt-map-card {
    inset: 32px 4px 40px 4px;
  }

  .egypt-map-shape {
    inset: 34px 58px 92px 40px;
  }

  .map-orbit,
  .map-glass-layer {
    display: none;
  }

  .map-info-card {
    width: 235px;
    right: 0;
    top: 12px;
    padding: 18px;
  }

  .map-info-card h3 {
    font-size: 32px;
  }

  .map-floating-stat {
    display: none;
  }

  .map-pin em {
    display: none;
  }

  .pin-new-cairo { left: 58%; top: 26%; }
  .pin-capital { left: 66%; top: 33%; }
  .pin-zayed { left: 42%; top: 31%; }
  .pin-north { left: 33%; top: 17%; }
  .pin-sokhna { left: 65%; top: 47%; }
  .pin-redsea { left: 62%; top: 72%; }
}

/* ==========================================================
   EVOLVE V3.1 — 3D Property Gallery Hero
   ========================================================== */

.gallery-hero {
  grid-template-columns: .9fr 1.1fr;
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 80px;
  background:
    radial-gradient(circle at 78% 18%, rgba(169,120,24,0.16), transparent 28%),
    radial-gradient(circle at 18% 9%, rgba(255,255,255,0.62), transparent 24%);
}

.gallery-copy {
  position: relative;
  z-index: 4;
}

.gallery-hero .hero-title {
  color: #11100e;
  max-width: 760px;
}

.gallery-hero .hero-title span {
  color: var(--gold);
}

.brokerage-strip {
  margin-top: 46px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  perspective: 1000px;
}

.brokerage-strip div {
  padding: 20px;
  border: 1px solid rgba(169,120,24,0.28);
  background: rgba(255,255,255,0.34);
  box-shadow: 0 28px 70px rgba(111,75,8,0.11);
  transform-style: preserve-3d;
  transition: transform .35s ease, background .35s ease;
}

.brokerage-strip div:hover {
  transform: translateY(-10px) rotateX(7deg) rotateY(-5deg);
  background: rgba(255,255,255,0.50);
}

.brokerage-strip small {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 18px;
}

.brokerage-strip strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
  color: #11100e;
  margin-bottom: 8px;
}

.brokerage-strip span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.gallery-scene-wrap {
  min-height: 700px;
  perspective: 1700px;
}

.gallery-scene {
  position: relative;
  height: 700px;
  transform-style: preserve-3d;
  transition: transform .22s ease-out;
}

.spotlight-card {
  position: absolute;
  inset: 72px 72px 58px 58px;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(169,120,24,0.44);
  box-shadow:
    0 46px 120px rgba(111,75,8,0.22),
    inset 0 0 0 1px rgba(255,255,255,0.24);
  transform: translateZ(120px) rotateY(-11deg) rotateX(5deg);
  transform-style: preserve-3d;
  background: #11100e;
}

.spotlight-card img {
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: opacity .35s ease, transform .65s ease;
}

.spotlight-card.changing img {
  opacity: .18;
  transform: scale(1.09);
}

.spotlight-overlay {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  padding: 26px;
  background: rgba(17,16,14,0.64);
  border: 1px solid rgba(201,154,59,0.34);
  backdrop-filter: blur(18px);
  color: #fff4dc;
  transform: translateZ(80px);
}

.spotlight-overlay small {
  display: block;
  color: #f1c66b;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}

.spotlight-overlay h3 {
  color: #fff4dc;
  margin: 0 0 12px;
  font-family: "Playfair Display", serif;
  font-size: clamp(35px, 4vw, 62px);
  line-height: .95;
  font-weight: 600;
}

.spotlight-overlay p {
  max-width: 520px;
  color: rgba(255,244,220,0.76);
  line-height: 1.7;
  margin: 0;
}

.side-image {
  position: absolute;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(169,120,24,0.34);
  box-shadow: 0 36px 90px rgba(111,75,8,0.17);
  background: #11100e;
}

.side-image img {
  height: 100%;
  object-fit: cover;
}

.side-one {
  width: 260px;
  height: 330px;
  left: 0;
  top: 105px;
  transform: translateZ(260px) rotateY(18deg) rotateZ(-4deg);
}

.side-two {
  width: 250px;
  height: 300px;
  right: -6px;
  bottom: 84px;
  transform: translateZ(250px) rotateY(-18deg) rotateZ(5deg);
}

.gallery-selector {
  position: absolute;
  right: 8px;
  top: 94px;
  z-index: 10;
  display: grid;
  gap: 12px;
  transform: translateZ(310px);
}

.gallery-choice {
  width: 210px;
  text-align: left;
  padding: 16px 18px;
  border: 1px solid rgba(169,120,24,0.32);
  background: rgba(248,236,217,0.76);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 60px rgba(111,75,8,0.14);
  cursor: pointer;
  color: #11100e;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.gallery-choice:hover,
.gallery-choice.active {
  transform: translateX(-8px);
  background: rgba(255,248,234,0.94);
  border-color: rgba(169,120,24,0.58);
}

.gallery-choice span {
  display: block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 7px;
}

.gallery-choice strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 23px;
  line-height: 1.05;
  font-weight: 600;
}

.floating-badge {
  position: absolute;
  z-index: 11;
  padding: 18px 20px;
  min-width: 178px;
  border: 1px solid rgba(169,120,24,0.32);
  background: rgba(248,236,217,0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 30px 80px rgba(111,75,8,0.16);
  color: #11100e;
}

.floating-badge small {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 9px;
}

.floating-badge strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 24px;
  font-weight: 600;
}

.badge-one {
  left: 18px;
  bottom: 88px;
  transform: translateZ(300px) rotate(-4deg);
}

.badge-two {
  right: 74px;
  bottom: 18px;
  transform: translateZ(280px) rotate(4deg);
}

.gallery-depth {
  position: absolute;
  border-radius: 34px;
  border: 1px solid rgba(169,120,24,0.22);
  background: rgba(255,255,255,0.16);
  pointer-events: none;
}

.depth-back {
  inset: 46px 64px 86px 110px;
  transform: translateZ(-80px) rotateY(-18deg) rotateX(9deg);
}

.depth-front {
  inset: 112px 28px 30px 40px;
  transform: translateZ(20px) rotateY(-15deg) rotateX(8deg);
}

.gallery-orbit {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(169,120,24,0.36);
  pointer-events: none;
  filter: drop-shadow(0 24px 36px rgba(111,75,8,.12));
}

.gallery-orbit.orbit-one {
  width: 590px;
  height: 590px;
  left: 42px;
  top: 58px;
  transform: translateZ(135px) rotateX(69deg) rotateZ(-24deg);
  animation: galleryOrbitOne 9s ease-in-out infinite;
}

.gallery-orbit.orbit-two {
  width: 420px;
  height: 420px;
  right: 12px;
  top: 162px;
  transform: translateZ(210px) rotateX(70deg) rotateZ(26deg);
  border-color: rgba(201,154,59,0.30);
  animation: galleryOrbitTwo 11s ease-in-out infinite;
}

@keyframes galleryOrbitOne {
  0%,100% { transform: translateZ(135px) rotateX(69deg) rotateZ(-24deg) translateY(0); }
  50% { transform: translateZ(160px) rotateX(69deg) rotateZ(-15deg) translateY(-18px); }
}

@keyframes galleryOrbitTwo {
  0%,100% { transform: translateZ(210px) rotateX(70deg) rotateZ(26deg) translateY(0); }
  50% { transform: translateZ(235px) rotateX(70deg) rotateZ(18deg) translateY(15px); }
}

@media (max-width: 1050px) {
  .gallery-hero {
    grid-template-columns: 1fr;
  }

  .gallery-scene-wrap {
    min-height: 640px;
  }

  .gallery-scene {
    height: 640px;
  }
}

@media (max-width: 680px) {
  .gallery-scene-wrap {
    min-height: 560px;
  }

  .gallery-scene {
    height: 560px;
  }

  .spotlight-card {
    inset: 58px 0 72px;
    transform: translateZ(100px) rotateY(-4deg) rotateX(3deg);
  }

  .side-image,
  .gallery-orbit,
  .gallery-depth,
  .floating-badge {
    display: none;
  }

  .gallery-selector {
    right: 0;
    left: 0;
    top: auto;
    bottom: 0;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    transform: translateZ(220px);
  }

  .gallery-choice {
    width: auto;
    padding: 12px 10px;
  }

  .gallery-choice strong {
    font-size: 16px;
  }

  .spotlight-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
    padding: 18px;
  }

  .brokerage-strip {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================
   EVOLVE V4 — Premium Search Hero + Moved 3D Gallery Section
   ========================================================== */

.search-home-hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 150px max(22px, calc((100vw - 1180px) / 2)) 150px;
  overflow: hidden;
  isolation: isolate;
}

.search-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  transform: scale(1.04);
  transition: transform .3s ease-out;
}

.search-hero-bg img {
  height: 100%;
  object-fit: cover;
}

.search-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(17,16,14,0.32), rgba(17,16,14,0.30)),
    radial-gradient(circle at 50% 42%, rgba(248,236,217,0.10), transparent 34%),
    linear-gradient(90deg, rgba(17,16,14,0.18), rgba(17,16,14,0.04), rgba(17,16,14,0.18));
}

.search-hero-content {
  position: relative;
  z-index: 3;
  width: min(980px, 100%);
  text-align: center;
  color: #fff7ea;
  transform-style: preserve-3d;
}

.search-hero-content .kicker {
  color: #f1c66b;
  text-shadow: 0 10px 30px rgba(0,0,0,.35);
}

.search-hero-content h1 {
  margin: 0;
  font-family: "Playfair Display", serif;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: .96;
  letter-spacing: -0.045em;
  font-weight: 600;
  text-shadow: 0 18px 50px rgba(0,0,0,.38);
}

.search-hero-content h1 span {
  color: #f1c66b;
}

.search-hero-content p {
  max-width: 760px;
  margin: 24px auto 34px;
  color: rgba(255,247,234,.82);
  line-height: 1.75;
  font-size: 17px;
}

.hero-search-bar {
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr auto;
  gap: 10px;
  padding: 12px;
  border-radius: 26px;
  background: rgba(255,248,234,0.88);
  border: 1px solid rgba(255,255,255,0.58);
  backdrop-filter: blur(18px);
  box-shadow:
    0 32px 85px rgba(0,0,0,0.24),
    inset 0 0 0 1px rgba(169,120,24,0.12);
  transform: translateZ(80px);
}

.hero-search-bar input,
.hero-search-bar select {
  min-height: 52px;
  border: 1px solid rgba(169,120,24,0.18);
  background: rgba(255,255,255,0.72);
  color: #11100e;
  padding: 0 16px;
  border-radius: 16px;
  font: inherit;
  outline: none;
}

.hero-search-bar input:focus,
.hero-search-bar select:focus {
  border-color: rgba(169,120,24,0.55);
  box-shadow: 0 0 0 4px rgba(169,120,24,0.10);
}

.hero-search-bar button {
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  padding: 0 26px;
  background: linear-gradient(135deg, #c99a3b, #8c5e14);
  color: #fff7ea;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: .05em;
  box-shadow: 0 14px 34px rgba(111,75,8,.22);
  transition: transform .25s ease, box-shadow .25s ease;
}

.hero-search-bar button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(111,75,8,.30);
}

.direction-cards {
  position: absolute;
  left: 50%;
  bottom: -84px;
  z-index: 5;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1200px;
}

.direction-card {
  min-height: 178px;
  border: 1px solid rgba(169,120,24,0.22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.78), transparent 58%),
    rgba(239,224,200,0.94);
  box-shadow: 0 28px 80px rgba(111,75,8,0.15);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: #11100e;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.direction-card:hover {
  transform: translateY(-16px) rotateX(8deg) rotateY(-7deg);
  box-shadow: 0 38px 95px rgba(111,75,8,0.22);
  background: rgba(255,248,234,0.98);
}

.direction-card span {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #11100e;
  color: #fff7ea;
  font-size: 34px;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(17,16,14,.18);
}

.direction-card strong {
  display: block;
  margin-top: 12px;
  font-family: "Playfair Display", serif;
  font-size: 31px;
  line-height: 1;
  font-weight: 600;
}

.direction-card small {
  display: block;
  margin-top: 10px;
  max-width: 210px;
  color: var(--muted);
  line-height: 1.5;
}

/* Give space after overlapping direction cards */
.gallery-showcase-section {
  padding-top: 190px !important;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 60px;
  overflow: hidden;
}

.gallery-section-copy h2 {
  margin: 0;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5.2vw, 82px);
  line-height: .95;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.gallery-section-copy p:not(.kicker) {
  margin: 26px 0 0;
  color: var(--muted);
  line-height: 1.85;
  font-size: 18px;
  max-width: 560px;
}

.gallery-showcase-section .gallery-scene-wrap {
  min-height: 640px;
}

.gallery-showcase-section .gallery-scene {
  height: 640px;
}

@media (max-width: 1050px) {
  .hero-search-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-search-bar button {
    grid-column: 1 / -1;
  }

  .direction-cards {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: -70px auto 0;
  }

  .gallery-showcase-section {
    padding-top: 110px !important;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .search-home-hero {
    min-height: 760px;
    padding: 130px 18px 90px;
  }

  .search-hero-content h1 {
    font-size: 47px;
  }

  .hero-search-bar {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .direction-cards {
    grid-template-columns: 1fr;
    margin-top: -44px;
    gap: 14px;
  }

  .direction-card {
    min-height: 132px;
  }

  .direction-card strong {
    font-size: 26px;
  }

  .gallery-showcase-section {
    padding-top: 80px !important;
  }
}

/* === EVOLVE Hero Local Slideshow CSS === */

.search-hero-bg {
  overflow: hidden;
}

.search-hero-bg.hero-slideshow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.07);
  transition: opacity 1.25s ease, transform 6s ease;
}

.search-hero-bg.hero-slideshow img.active {
  opacity: 1;
  transform: scale(1.02);
}

/* === EVOLVE Remove Direction Cards Spacing Fix === */

.search-home-hero {
  padding-bottom: 110px !important;
}

.gallery-showcase-section {
  padding-top: 110px !important;
}

@media (max-width: 680px) {
  .search-home-hero {
    padding-bottom: 80px !important;
  }

  .gallery-showcase-section {
    padding-top: 80px !important;
  }
}

/* === EVOLVE Remove Image Zoom Effect === */

.search-hero-bg {
  transform: none !important;
  transition: none !important;
}

.search-hero-bg.hero-slideshow img {
  transform: none !important;
  transition: opacity 1.25s ease !important;
}

.search-hero-bg.hero-slideshow img.active {
  transform: none !important;
}

/* Remove zoom from gallery images too */
.spotlight-card img,
.spotlight-card.changing img,
.side-image img,
.project-slide img {
  transform: none !important;
}


/* === EVOLVE Search Fields Reorder === */

.hero-search-bar {
  grid-template-columns: 1.05fr 1.05fr 1fr .9fr auto !important;
}

@media (max-width: 1050px) {
  .hero-search-bar {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-search-bar button {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 680px) {
  .hero-search-bar {
    grid-template-columns: 1fr !important;
  }
}

/* === EVOLVE Remove Bedroom Field === */

.hero-search-bar {
  grid-template-columns: 1.1fr 1.25fr 1.05fr auto !important;
}

@media (max-width: 1050px) {
  .hero-search-bar {
    grid-template-columns: 1fr 1fr !important;
  }

  .hero-search-bar button {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 680px) {
  .hero-search-bar {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   EVOLVE Slider And Mobile Repair
   ========================================================== */

/* Keep hero images fade-only, no zoom */
.search-hero-bg,
.search-hero-bg img,
.search-hero-bg.hero-slideshow img,
.search-hero-bg.hero-slideshow img.active {
  transform: none !important;
}

.search-hero-bg.hero-slideshow img {
  transition: opacity 1.25s ease !important;
}

/* Restore project slider motion */
.project-showcase {
  height: 620px !important;
  overflow: visible !important;
}

.project-slider {
  position: relative !important;
  height: 100% !important;
  transform-style: preserve-3d !important;
}

.project-slide {
  position: absolute !important;
  left: 50% !important;
  top: 0 !important;
  opacity: 0;
  will-change: transform, opacity;
}

.project-slide img {
  transform: none !important;
}

/* Mobile layout polish */
@media (max-width: 1050px) {
  .search-home-hero {
    min-height: auto !important;
    padding-top: 120px !important;
    padding-bottom: 70px !important;
  }

  .search-hero-content {
    margin-top: 35px !important;
  }

  .hero-search-bar {
    width: min(720px, 100%) !important;
  }

  .gallery-showcase-section {
    padding-top: 70px !important;
    gap: 34px !important;
  }

  .gallery-section-copy {
    text-align: center !important;
    max-width: 760px !important;
    margin: 0 auto !important;
  }

  .gallery-section-copy p:not(.kicker) {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .gallery-showcase-section .gallery-scene-wrap {
    min-height: 560px !important;
  }

  .gallery-showcase-section .gallery-scene {
    height: 560px !important;
  }

  .projects-section {
    padding-top: 80px !important;
  }

  .project-showcase {
    height: 560px !important;
  }

  .project-slide {
    width: min(680px, 78vw) !important;
    height: 500px !important;
  }

  .process-section {
    gap: 36px !important;
  }
}

@media (max-width: 680px) {
  .topbar {
    height: 64px !important;
    padding: 0 14px !important;
  }

  .logo {
    gap: 9px !important;
    letter-spacing: .18em !important;
  }

  .logo-mark {
    width: 34px !important;
    height: 34px !important;
  }

  .search-home-hero {
    min-height: auto !important;
    padding: 105px 16px 46px !important;
  }

  .search-hero-content h1 {
    font-size: 42px !important;
    line-height: .96 !important;
  }

  .search-hero-content p {
    font-size: 14px !important;
    line-height: 1.65 !important;
    margin: 18px auto 22px !important;
  }

  .kicker {
    font-size: 10px !important;
    letter-spacing: .16em !important;
  }

  .hero-search-bar {
    gap: 8px !important;
    padding: 10px !important;
    border-radius: 18px !important;
  }

  .hero-search-bar select,
  .hero-search-bar input,
  .hero-search-bar button {
    min-height: 48px !important;
    border-radius: 13px !important;
    font-size: 14px !important;
  }

  .gallery-showcase-section {
    padding: 62px 16px 70px !important;
    grid-template-columns: 1fr !important;
  }

  .gallery-section-copy h2 {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .gallery-section-copy p:not(.kicker) {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .gallery-showcase-section .gallery-scene-wrap {
    min-height: 500px !important;
  }

  .gallery-showcase-section .gallery-scene {
    height: 500px !important;
  }

  .spotlight-card {
    inset: 42px 0 92px !important;
    border-radius: 24px !important;
  }

  .spotlight-overlay {
    left: 12px !important;
    right: 12px !important;
    bottom: 12px !important;
    padding: 15px !important;
  }

  .spotlight-overlay h3 {
    font-size: 29px !important;
  }

  .spotlight-overlay p {
    font-size: 13px !important;
    line-height: 1.5 !important;
  }

  .gallery-selector {
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    top: auto !important;
    grid-template-columns: repeat(3, 1fr) !important;
    transform: translateZ(180px) !important;
  }

  .gallery-choice {
    padding: 10px 8px !important;
    border-radius: 14px !important;
  }

  .gallery-choice span {
    font-size: 10px !important;
  }

  .gallery-choice strong {
    font-size: 14px !important;
  }

  .projects-section {
    padding: 70px 16px !important;
    overflow: hidden !important;
  }

  .section-copy.center {
    margin-bottom: 34px !important;
  }

  .section-copy h2 {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .project-showcase {
    height: 500px !important;
    perspective: 1000px !important;
  }

  .project-slide {
    width: 82vw !important;
    height: 430px !important;
    border-radius: 24px !important;
  }

  .slide-content {
    left: 18px !important;
    right: 18px !important;
    bottom: 18px !important;
  }

  .slide-content h3 {
    font-size: 34px !important;
  }

  .slide-content p {
    font-size: 13px !important;
    line-height: 1.55 !important;
  }

  .slider-btn {
    width: 42px !important;
    height: 42px !important;
    font-size: 30px !important;
    top: 42% !important;
  }

  .slider-btn.prev {
    left: 4px !important;
  }

  .slider-btn.next {
    right: 4px !important;
  }

  .process-section,
  .areas-section,
  .contact-section {
    padding: 70px 16px !important;
  }

  .process-item {
    padding: 20px !important;
    gap: 14px !important;
  }

  .process-item h3 {
    font-size: 27px !important;
  }

  .areas-3d-grid {
    gap: 12px !important;
  }

  .areas-3d-grid span {
    min-height: 96px !important;
    font-size: 13px !important;
  }

  .contact-card {
    padding: 22px !important;
    border-radius: 24px !important;
  }

  .contact-card h2 {
    font-size: 38px !important;
  }

  .contact-card p {
    font-size: 14px !important;
  }

  .whatsapp-float {
    right: 16px !important;
    bottom: 16px !important;
    padding: 12px 15px !important;
    font-size: 11px !important;
  }
}

/* ==========================================================
   EVOLVE Market Compass Section
   Replaces old Curated Property Directions gallery
   ========================================================== */

.compass-section {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 70px;
  padding-top: 120px !important;
  padding-bottom: 120px !important;
  overflow: hidden;
}

.compass-copy {
  position: relative;
  z-index: 3;
}

.compass-copy h2 {
  margin: 0;
  max-width: 620px;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.2vw, 86px);
  line-height: .95;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.compass-copy p:not(.kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.compass-stage {
  position: relative;
  min-height: 680px;
  perspective: 1600px;
  transform-style: preserve-3d;
}

.compass-stage::before {
  content: "";
  position: absolute;
  inset: 80px 80px 80px 80px;
  background:
    linear-gradient(rgba(169,120,24,0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.11) 1px, transparent 1px);
  background-size: 42px 42px;
  border-radius: 50%;
  transform: rotateX(68deg) translateZ(-130px);
  opacity: .36;
  pointer-events: none;
}

.compass-orbit {
  position: absolute;
  border: 1px solid rgba(169,120,24,0.34);
  border-radius: 50%;
  pointer-events: none;
}

.compass-orbit-one {
  width: 520px;
  height: 520px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-22deg);
  animation: compassOrbitOne 9s ease-in-out infinite;
}

.compass-orbit-two {
  width: 390px;
  height: 390px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotateX(70deg) rotateZ(24deg);
  border-color: rgba(201,154,59,0.28);
  animation: compassOrbitTwo 11s ease-in-out infinite;
}

@keyframes compassOrbitOne {
  0%, 100% { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-22deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(68deg) rotateZ(-12deg) translateY(-14px); }
}

@keyframes compassOrbitTwo {
  0%, 100% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(24deg) translateY(0); }
  50% { transform: translate(-50%, -50%) rotateX(70deg) rotateZ(14deg) translateY(14px); }
}

.compass-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250px;
  height: 250px;
  transform: translate(-50%, -50%) translateZ(120px);
  border-radius: 50%;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
  background:
    radial-gradient(circle at 50% 20%, rgba(255,255,255,0.95), rgba(239,224,200,0.78) 54%, rgba(201,154,59,0.22));
  border: 1px solid rgba(169,120,24,0.40);
  box-shadow:
    0 38px 100px rgba(111,75,8,0.18),
    inset 0 0 0 1px rgba(255,255,255,0.42);
}

.compass-core span {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: .26em;
  font-weight: 900;
  margin-bottom: 12px;
}

.compass-core strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 38px;
  line-height: .95;
  font-weight: 600;
  color: #11100e;
}

.compass-core small {
  display: block;
  margin-top: 13px;
  color: var(--muted);
  font-weight: 800;
}

.compass-card {
  position: absolute;
  width: 260px;
  min-height: 220px;
  padding: 24px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.74), transparent 62%),
    rgba(255,248,234,0.76);
  border: 1px solid rgba(169,120,24,0.30);
  box-shadow: 0 30px 85px rgba(111,75,8,0.14);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
}

.compass-card:hover {
  background: rgba(255,248,234,0.96);
  box-shadow: 0 42px 110px rgba(111,75,8,0.21);
}

.compass-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
  border-radius: 50%;
  color: #fff7ea;
  background: #11100e;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 16px 36px rgba(17,16,14,0.18);
}

.compass-card h3 {
  margin: 0 0 12px;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 600;
}

.compass-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.compass-live {
  left: 2%;
  top: 11%;
  transform: translateZ(220px) rotate(-4deg);
}

.compass-invest {
  right: 4%;
  top: 8%;
  transform: translateZ(260px) rotate(4deg);
}

.compass-coast {
  left: 7%;
  bottom: 9%;
  transform: translateZ(250px) rotate(5deg);
}

.compass-commercial {
  right: 0;
  bottom: 13%;
  transform: translateZ(230px) rotate(-4deg);
}

.compass-live:hover {
  transform: translateZ(250px) translateY(-14px) rotate(-2deg) rotateX(6deg);
}

.compass-invest:hover {
  transform: translateZ(290px) translateY(-14px) rotate(2deg) rotateX(6deg);
}

.compass-coast:hover {
  transform: translateZ(280px) translateY(-14px) rotate(2deg) rotateX(6deg);
}

.compass-commercial:hover {
  transform: translateZ(260px) translateY(-14px) rotate(-2deg) rotateX(6deg);
}

@media (max-width: 1050px) {
  .compass-section {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .compass-copy {
    text-align: center;
  }

  .compass-copy h2,
  .compass-copy p:not(.kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .compass-stage {
    min-height: 620px;
  }
}

@media (max-width: 680px) {
  .compass-section {
    padding: 70px 16px !important;
  }

  .compass-copy h2 {
    font-size: 38px !important;
    line-height: 1 !important;
  }

  .compass-copy p:not(.kicker) {
    font-size: 14px !important;
    line-height: 1.65 !important;
  }

  .compass-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    perspective: none;
  }

  .compass-stage::before,
  .compass-orbit,
  .compass-core {
    display: none;
  }

  .compass-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 100%;
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
    transform: none !important;
  }

  .compass-card:hover {
    transform: translateY(-6px) !important;
  }

  .compass-card span {
    margin-bottom: 18px;
  }

  .compass-card h3 {
    font-size: 31px;
  }
}

/* === EVOLVE Project Slider Image Fix === */

.project-slide {
  background: #11100e !important;
  overflow: hidden !important;
}

.project-slide img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.project-slide::after {
  pointer-events: none !important;
}

/* ==========================================================
   EVOLVE Developers Network — Brand Identity Rewrite
   Cream / Gold / Premium, not black reference style
   ========================================================== */

.developers-network-section {
  background: transparent !important;
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.developers-shell {
  min-height: 720px !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(169,120,24,0.16), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.70), transparent 32%),
    linear-gradient(135deg, rgba(255,248,234,0.82), rgba(234,212,174,0.70), rgba(248,236,217,0.92)) !important;
  border: 1px solid rgba(169,120,24,0.34) !important;
  box-shadow: 0 44px 120px rgba(111,75,8,0.16) !important;
  color: #11100e !important;
}

.developers-shell::before {
  background:
    linear-gradient(rgba(169,120,24,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.045) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 74%) !important;
  opacity: 1 !important;
}

.developers-shell::after {
  content: "EVOLVE";
  position: absolute;
  left: 42px;
  bottom: 188px;
  font-size: clamp(90px, 13vw, 230px);
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(111,75,8,0.045);
  pointer-events: none;
  z-index: 1;
}

.developers-intro {
  z-index: 4 !important;
}

.dev-label {
  background: rgba(169,120,24,0.11) !important;
  border: 1px solid rgba(169,120,24,0.34) !important;
  color: #7a5610 !important;
  box-shadow: 0 12px 34px rgba(111,75,8,0.08) !important;
}

.developers-intro h2 {
  color: #11100e !important;
}

.developers-intro p:not(.dev-label) {
  color: var(--muted) !important;
}

.developers-wall {
  filter: drop-shadow(0 34px 60px rgba(111,75,8,0.12)) !important;
}

.developer-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.95), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.94), rgba(231,205,159,0.70)) !important;
  border: 1px solid rgba(169,120,24,0.30) !important;
  box-shadow:
    0 26px 70px rgba(111,75,8,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.55) !important;
}

.developer-card::before {
  background:
    linear-gradient(135deg, rgba(169,120,24,0.18), transparent 45%, rgba(255,255,255,0.50)) !important;
  opacity: .9 !important;
}

.developer-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(169,120,24,0.12);
  border-radius: 20px;
  pointer-events: none;
}

.developer-card span {
  color: #11100e !important;
  text-shadow: none !important;
  font-family: "Playfair Display", serif !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
}

.developer-card:hover {
  border-color: rgba(169,120,24,0.55) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,1), transparent 60%),
    linear-gradient(145deg, rgba(255,248,234,1), rgba(226,190,122,0.76)) !important;
  box-shadow:
    0 38px 100px rgba(111,75,8,0.22),
    0 0 48px rgba(169,120,24,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.65) !important;
}

.developers-bottom {
  background: rgba(255,248,234,0.42) !important;
  border-top: 1px solid rgba(169,120,24,0.24) !important;
  backdrop-filter: blur(14px) !important;
}

.dev-quote {
  border-right: 1px solid rgba(169,120,24,0.22) !important;
}

.dev-quote span {
  color: #a97818 !important;
}

.dev-quote p {
  color: #2a2117 !important;
}

.dev-proof strong {
  color: #11100e !important;
}

.dev-proof small {
  color: var(--muted) !important;
}

@media (max-width: 1050px) {
  .developers-shell::after {
    left: 50%;
    bottom: 210px;
    transform: translateX(-50%);
  }

  .dev-quote {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(169,120,24,0.22) !important;
  }
}

@media (max-width: 680px) {
  .developers-shell::after {
    display: none;
  }

  .developer-card span {
    font-size: 17px !important;
  }

  .developer-card {
    height: 104px !important;
  }
}

/* ==========================================================
   EVOLVE Developers Network — Brand Identity Rewrite
   Cream / Gold / Premium, not black reference style
   ========================================================== */

.developers-network-section {
  background: transparent !important;
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.developers-shell {
  min-height: 720px !important;
  background:
    radial-gradient(circle at 78% 14%, rgba(169,120,24,0.16), transparent 30%),
    radial-gradient(circle at 18% 82%, rgba(255,255,255,0.70), transparent 32%),
    linear-gradient(135deg, rgba(255,248,234,0.82), rgba(234,212,174,0.70), rgba(248,236,217,0.92)) !important;
  border: 1px solid rgba(169,120,24,0.34) !important;
  box-shadow: 0 44px 120px rgba(111,75,8,0.16) !important;
  color: #11100e !important;
}

.developers-shell::before {
  background:
    linear-gradient(rgba(169,120,24,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.045) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  mask-image: radial-gradient(circle at 70% 40%, black, transparent 74%) !important;
  opacity: 1 !important;
}

.developers-shell::after {
  content: "EVOLVE";
  position: absolute;
  left: 42px;
  bottom: 188px;
  font-size: clamp(90px, 13vw, 230px);
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(111,75,8,0.045);
  pointer-events: none;
  z-index: 1;
}

.developers-intro {
  z-index: 4 !important;
}

.dev-label {
  background: rgba(169,120,24,0.11) !important;
  border: 1px solid rgba(169,120,24,0.34) !important;
  color: #7a5610 !important;
  box-shadow: 0 12px 34px rgba(111,75,8,0.08) !important;
}

.developers-intro h2 {
  color: #11100e !important;
}

.developers-intro p:not(.dev-label) {
  color: var(--muted) !important;
}

.developers-wall {
  filter: drop-shadow(0 34px 60px rgba(111,75,8,0.12)) !important;
}

.developer-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.95), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.94), rgba(231,205,159,0.70)) !important;
  border: 1px solid rgba(169,120,24,0.30) !important;
  box-shadow:
    0 26px 70px rgba(111,75,8,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.55) !important;
}

.developer-card::before {
  background:
    linear-gradient(135deg, rgba(169,120,24,0.18), transparent 45%, rgba(255,255,255,0.50)) !important;
  opacity: .9 !important;
}

.developer-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(169,120,24,0.12);
  border-radius: 20px;
  pointer-events: none;
}

.developer-card span {
  color: #11100e !important;
  text-shadow: none !important;
  font-family: "Playfair Display", serif !important;
  font-size: 25px !important;
  font-weight: 600 !important;
  letter-spacing: -0.015em !important;
  text-transform: none !important;
}

.developer-card:hover {
  border-color: rgba(169,120,24,0.55) !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,1), transparent 60%),
    linear-gradient(145deg, rgba(255,248,234,1), rgba(226,190,122,0.76)) !important;
  box-shadow:
    0 38px 100px rgba(111,75,8,0.22),
    0 0 48px rgba(169,120,24,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.65) !important;
}

.developers-bottom {
  background: rgba(255,248,234,0.42) !important;
  border-top: 1px solid rgba(169,120,24,0.24) !important;
  backdrop-filter: blur(14px) !important;
}

.dev-quote {
  border-right: 1px solid rgba(169,120,24,0.22) !important;
}

.dev-quote span {
  color: #a97818 !important;
}

.dev-quote p {
  color: #2a2117 !important;
}

.dev-proof strong {
  color: #11100e !important;
}

.dev-proof small {
  color: var(--muted) !important;
}

@media (max-width: 1050px) {
  .developers-shell::after {
    left: 50%;
    bottom: 210px;
    transform: translateX(-50%);
  }

  .dev-quote {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(169,120,24,0.22) !important;
  }
}

@media (max-width: 680px) {
  .developers-shell::after {
    display: none;
  }

  .developer-card span {
    font-size: 17px !important;
  }

  .developer-card {
    height: 104px !important;
  }
}

/* ==========================================================
   EVOLVE Real Developers Section — Final Visible Version
   ========================================================== */

.evolve-dev-section {
  padding-top: 105px !important;
  padding-bottom: 105px !important;
}

.evolve-dev-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 70px;
  min-height: 720px;
  background:
    radial-gradient(circle at 80% 16%, rgba(169,120,24,0.16), transparent 30%),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,0.74), transparent 32%),
    linear-gradient(135deg, rgba(255,248,234,0.92), rgba(234,212,174,0.70), rgba(248,236,217,0.96));
  border: 1px solid rgba(169,120,24,0.34);
  box-shadow: 0 44px 120px rgba(111,75,8,0.16);
}

.evolve-dev-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(169,120,24,0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(169,120,24,0.045) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(circle at 70% 35%, black, transparent 75%);
  pointer-events: none;
}

.evolve-dev-copy {
  position: relative;
  z-index: 4;
  max-width: 620px;
}

.evolve-dev-copy h2 {
  margin: 0;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(44px, 5.4vw, 88px);
  line-height: .94;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.evolve-dev-copy p:not(.kicker) {
  max-width: 560px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.evolve-dev-stage {
  position: absolute;
  right: 40px;
  top: 62px;
  width: min(760px, 55vw);
  height: 480px;
  perspective: 1400px;
  transform-style: preserve-3d;
}

.evolve-dev-watermark {
  position: absolute;
  left: -80px;
  top: 145px;
  font-size: 130px;
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(111,75,8,0.055);
  transform: rotate(-90deg);
  pointer-events: none;
}

.evolve-dev-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  transform: rotateZ(-7deg) rotateX(7deg);
  transform-style: preserve-3d;
}

.evolve-dev-card {
  min-height: 130px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.94), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.96), rgba(224,194,138,0.72));
  border: 1px solid rgba(169,120,24,0.30);
  box-shadow:
    0 26px 70px rgba(111,75,8,0.13),
    inset 0 0 0 1px rgba(255,255,255,0.58);
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 25px;
  font-weight: 600;
  transform-style: preserve-3d;
  animation: evolveDevFloat 6.5s ease-in-out infinite;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.evolve-dev-card:nth-child(2n) {
  animation-delay: -1.5s;
}

.evolve-dev-card:nth-child(3n) {
  animation-delay: -2.8s;
}

.evolve-dev-card:hover {
  transform: translateY(-14px) translateZ(60px) rotateX(6deg);
  border-color: rgba(169,120,24,0.58);
  box-shadow:
    0 38px 100px rgba(111,75,8,0.22),
    0 0 48px rgba(169,120,24,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.70);
}

@keyframes evolveDevFloat {
  0%, 100% { transform: translateY(0) translateZ(0); }
  50% { transform: translateY(-12px) translateZ(26px); }
}

.evolve-dev-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 190px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-top: 1px solid rgba(169,120,24,0.25);
  background: rgba(255,248,234,0.42);
  backdrop-filter: blur(14px);
  z-index: 5;
}

.evolve-dev-bottom p {
  margin: 0;
  padding: 38px 54px;
  color: #2a2117;
  font-size: 20px;
  line-height: 1.55;
  border-right: 1px solid rgba(169,120,24,0.22);
}

.evolve-dev-bottom strong {
  display: block;
  padding: 38px 54px;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 1050px) {
  .evolve-dev-wrap {
    padding: 56px 34px 0;
    min-height: auto;
  }

  .evolve-dev-copy {
    max-width: 760px;
    text-align: center;
    margin: 0 auto 44px;
  }

  .evolve-dev-copy p:not(.kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .evolve-dev-stage {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: auto;
  }

  .evolve-dev-watermark {
    display: none;
  }

  .evolve-dev-grid {
    position: relative;
    transform: none;
    grid-template-columns: repeat(3, 1fr);
  }

  .evolve-dev-bottom {
    position: relative;
    margin: 44px -34px 0;
  }
}

@media (max-width: 680px) {
  .evolve-dev-section {
    padding: 70px 16px !important;
  }

  .evolve-dev-wrap {
    border-radius: 26px;
    padding: 38px 18px 0;
  }

  .evolve-dev-copy h2 {
    font-size: 38px;
    line-height: 1;
  }

  .evolve-dev-copy p:not(.kicker) {
    font-size: 14px;
    line-height: 1.65;
  }

  .evolve-dev-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .evolve-dev-card {
    min-height: 96px;
    border-radius: 20px;
    font-size: 17px;
    animation: none;
  }

  .evolve-dev-bottom {
    grid-template-columns: 1fr;
    margin: 32px -18px 0;
  }

  .evolve-dev-bottom p {
    border-right: 0;
    border-bottom: 1px solid rgba(169,120,24,0.22);
    padding: 24px 18px;
    font-size: 15px;
    text-align: center;
  }

  .evolve-dev-bottom strong {
    padding: 24px 18px;
    font-size: 28px;
  }
}

/* ==========================================================
   EVOLVE Clean Developers Section
   Stable, branded, no overlapping
   ========================================================== */

.partner-dev-section {
  position: relative;
  padding-top: 105px !important;
  padding-bottom: 105px !important;
  overflow: hidden !important;
}

.partner-dev-section::before {
  content: "EVOLVE";
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  top: 70px;
  font-size: clamp(72px, 13vw, 210px);
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(111,75,8,0.045);
  pointer-events: none;
  z-index: 0;
}

.partner-dev-heading {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin-bottom: 46px;
}

.partner-dev-heading h2 {
  margin: 0;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.5vw, 88px);
  line-height: .94;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.partner-dev-heading p:not(.kicker) {
  margin: 24px 0 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.partner-dev-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.partner-dev-card {
  min-height: 132px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.92), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.94), rgba(229,202,154,0.64));
  border: 1px solid rgba(169,120,24,0.30);
  box-shadow:
    0 24px 65px rgba(111,75,8,0.11),
    inset 0 0 0 1px rgba(255,255,255,0.55);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}

.partner-dev-card:hover {
  transform: translateY(-8px);
  border-color: rgba(169,120,24,0.55);
  box-shadow:
    0 34px 90px rgba(111,75,8,0.18),
    0 0 42px rgba(169,120,24,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.72);
}

.partner-dev-card span {
  display: block;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 27px;
  line-height: 1.05;
  font-weight: 600;
}

.partner-dev-note {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 26px 30px;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  align-items: center;
  border-radius: 26px;
  border: 1px solid rgba(169,120,24,0.28);
  background: rgba(255,255,255,0.30);
  box-shadow: 0 22px 60px rgba(111,75,8,0.09);
}

.partner-dev-note strong {
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 30px;
  font-weight: 600;
}

.partner-dev-note span {
  color: var(--muted);
  line-height: 1.65;
  text-align: right;
}

@media (max-width: 1050px) {
  .partner-dev-heading {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .partner-dev-heading p:not(.kicker) {
    margin-left: auto;
    margin-right: auto;
  }

  .partner-dev-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .partner-dev-note {
    flex-direction: column;
    text-align: center;
  }

  .partner-dev-note span {
    text-align: center;
  }
}

@media (max-width: 680px) {
  .partner-dev-section {
    padding: 70px 16px !important;
  }

  .partner-dev-section::before {
    display: none;
  }

  .partner-dev-heading {
    margin-bottom: 30px;
  }

  .partner-dev-heading h2 {
    font-size: 38px;
    line-height: 1;
  }

  .partner-dev-heading p:not(.kicker) {
    font-size: 14px;
    line-height: 1.65;
  }

  .partner-dev-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .partner-dev-card {
    min-height: 92px;
    padding: 15px;
    border-radius: 20px;
  }

  .partner-dev-card span {
    font-size: 18px;
  }

  .partner-dev-note {
    padding: 22px 18px;
    border-radius: 20px;
  }

  .partner-dev-note strong {
    font-size: 25px;
  }

  .partner-dev-note span {
    font-size: 14px;
  }
}

/* === EVOLVE Developer Note Single Line Fix === */

.partner-dev-note {
  justify-content: center !important;
  text-align: center !important;
}

.partner-dev-note strong {
  max-width: 820px;
  display: block;
  margin: 0 auto;
}


/* === EVOLVE Developer Note Two Column Restore === */

.partner-dev-note {
  display: grid !important;
  grid-template-columns: .85fr 1.15fr !important;
  align-items: center !important;
  justify-content: initial !important;
  text-align: left !important;
  gap: 28px !important;
}

.partner-dev-note strong {
  max-width: none !important;
  margin: 0 !important;
  display: block !important;
  color: #11100e !important;
  font-family: "Playfair Display", serif !important;
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1 !important;
  font-weight: 600 !important;
}

.partner-dev-note span {
  display: block !important;
  color: var(--muted) !important;
  font-size: 17px !important;
  line-height: 1.65 !important;
  text-align: right !important;
}

@media (max-width: 680px) {
  .partner-dev-note {
    grid-template-columns: 1fr !important;
    text-align: center !important;
    gap: 12px !important;
  }

  .partner-dev-note strong {
    font-size: 28px !important;
  }

  .partner-dev-note span {
    text-align: center !important;
    font-size: 14px !important;
  }
}

/* ==========================================================
   EVOLVE Developer Marquee Motion
   ========================================================== */

.partner-dev-marquee {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px 0;
  margin: 10px -20px 0;
  transform: rotate(-2.2deg);
  mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}

.dev-marquee-row {
  position: relative;
  overflow: hidden;
  min-height: 128px;
}

.dev-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: evolveDevMarquee 28s linear infinite;
  will-change: transform;
}

.dev-marquee-row.reverse .dev-marquee-track {
  animation-name: evolveDevMarqueeReverse;
  animation-duration: 32s;
}

.dev-marquee-row.slow .dev-marquee-track {
  animation-duration: 38s;
}

.partner-dev-marquee .partner-dev-card {
  flex: 0 0 245px;
  min-height: 118px;
  border-radius: 26px;
}

.partner-dev-marquee:hover .dev-marquee-track {
  animation-play-state: paused;
}

@keyframes evolveDevMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes evolveDevMarqueeReverse {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 680px) {
  .partner-dev-marquee {
    margin: 8px -18px 0;
    gap: 12px;
    transform: rotate(-1.2deg);
  }

  .dev-marquee-row {
    min-height: 96px;
  }

  .dev-marquee-track {
    gap: 12px;
    animation-duration: 24s;
  }

  .dev-marquee-row.reverse .dev-marquee-track {
    animation-duration: 28s;
  }

  .dev-marquee-row.slow .dev-marquee-track {
    animation-duration: 32s;
  }

  .partner-dev-marquee .partner-dev-card {
    flex-basis: 172px;
    min-height: 84px;
  }

  .partner-dev-marquee .partner-dev-card span {
    font-size: 16px;
  }
}

/* === Keep Developer Marquee Running On Hover === */

.partner-dev-marquee:hover .dev-marquee-track,
.partner-dev-marquee .dev-marquee-track:hover,
.partner-dev-card:hover {
  animation-play-state: running !important;
}


/* ==========================================================
   EVOLVE Method Section
   Premium timeline replacing old How EVOLVE Helps
   ========================================================== */

.evolve-method-section {
  position: relative;
  padding-top: 115px !important;
  padding-bottom: 115px !important;
  overflow: hidden !important;
}

.evolve-method-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 210px;
  width: min(980px, 82vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(169,120,24,0.45), transparent);
  z-index: 0;
}

.evolve-method-section::after {
  content: "METHOD";
  position: absolute;
  right: max(20px, calc((100vw - 1180px) / 2));
  top: 70px;
  font-size: clamp(70px, 13vw, 210px);
  font-weight: 900;
  letter-spacing: .08em;
  color: rgba(111,75,8,0.045);
  pointer-events: none;
  z-index: 0;
}

.method-heading {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto 62px;
  text-align: center;
}

.method-heading h2 {
  margin: 0;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: clamp(46px, 5.4vw, 88px);
  line-height: .94;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.method-heading p:not(.kicker) {
  max-width: 680px;
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.method-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  perspective: 1400px;
}

.method-card {
  position: relative;
  min-height: 330px;
  padding: 28px 24px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.90), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.92), rgba(229,202,154,0.58));
  border: 1px solid rgba(169,120,24,0.30);
  box-shadow:
    0 28px 80px rgba(111,75,8,0.12),
    inset 0 0 0 1px rgba(255,255,255,0.58);
  transform-style: preserve-3d;
  transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease;
  overflow: hidden;
}

.method-card::before {
  content: "";
  position: absolute;
  inset: -80px;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.34), transparent 62%);
  transform: translateX(-125%) rotate(12deg);
  transition: transform .8s ease;
  pointer-events: none;
}

.method-card::after {
  content: "";
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 1px solid rgba(169,120,24,0.16);
  pointer-events: none;
}

.method-card:hover {
  transform: translateY(-12px) rotateX(6deg) rotateY(-4deg);
  border-color: rgba(169,120,24,0.56);
  box-shadow:
    0 38px 105px rgba(111,75,8,0.20),
    0 0 46px rgba(169,120,24,0.10),
    inset 0 0 0 1px rgba(255,255,255,0.72);
}

.method-card:hover::before {
  transform: translateX(125%) rotate(12deg);
}

.method-card span {
  position: relative;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 42px;
  border-radius: 50%;
  background: #11100e;
  color: #fff7ea;
  font-weight: 900;
  font-size: 13px;
  box-shadow: 0 18px 42px rgba(17,16,14,0.18);
}

.method-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 16px;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: 1;
  font-weight: 600;
}

.method-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

@media (max-width: 1050px) {
  .method-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .evolve-method-section::before {
    display: none;
  }
}

@media (max-width: 680px) {
  .evolve-method-section {
    padding: 75px 16px !important;
  }

  .evolve-method-section::after {
    display: none;
  }

  .method-heading {
    margin-bottom: 34px;
  }

  .method-heading h2 {
    font-size: 38px;
    line-height: 1;
  }

  .method-heading p:not(.kicker) {
    font-size: 14px;
    line-height: 1.65;
  }

  .method-timeline {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .method-card {
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .method-card span {
    margin-bottom: 22px;
  }

  .method-card h3 {
    font-size: 29px;
  }

  .method-card p {
    font-size: 14px;
  }
}

/* ==========================================================
   EVOLVE Lens Path Method Section
   Creative replacement for the four process cards
   ========================================================== */

.method-lens-section {
  position: relative;
  padding-top: 115px !important;
  padding-bottom: 125px !important;
  overflow: hidden !important;
}

.method-lens-section::before {
  display: none !important;
}

.method-lens-section::after {
  content: "EVOLVE" !important;
  position: absolute !important;
  left: 50% !important;
  top: 42% !important;
  transform: translate(-50%, -50%) !important;
  font-size: clamp(90px, 17vw, 260px) !important;
  font-weight: 900 !important;
  letter-spacing: .08em !important;
  color: rgba(111,75,8,0.04) !important;
  pointer-events: none !important;
  z-index: 0 !important;
}

.lens-path-stage {
  position: relative;
  z-index: 2;
  min-height: 520px;
  perspective: 1500px;
  transform-style: preserve-3d;
}

.lens-gold-path {
  position: absolute;
  inset: 70px 0 0;
  width: 100%;
  height: 360px;
  pointer-events: none;
  overflow: visible;
  z-index: 1;
}

.lens-gold-path path {
  fill: none;
  stroke: rgba(169,120,24,0.52);
  stroke-width: 2;
  stroke-dasharray: 9 12;
  filter: drop-shadow(0 12px 20px rgba(111,75,8,0.14));
  animation: lensPathMove 16s linear infinite;
}

@keyframes lensPathMove {
  from {
    stroke-dashoffset: 0;
  }
  to {
    stroke-dashoffset: -240;
  }
}

.lens-card {
  position: absolute;
  z-index: 3;
  width: 285px;
  min-height: 270px;
  padding: 26px 24px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.95), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.88), rgba(229,202,154,0.62));
  border: 1px solid rgba(169,120,24,0.32);
  box-shadow:
    0 30px 90px rgba(111,75,8,0.14),
    inset 0 0 0 1px rgba(255,255,255,0.62);
  backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  transition: transform .38s ease, box-shadow .38s ease, border-color .38s ease, background .38s ease;
}

.lens-card::before {
  content: "";
  position: absolute;
  inset: -90px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 20%), rgba(255,255,255,0.50), transparent 26%),
    linear-gradient(115deg, transparent 35%, rgba(255,255,255,.34), transparent 62%);
  opacity: .75;
  transform: translateX(-22%) rotate(12deg);
  pointer-events: none;
}

.lens-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 1px solid rgba(169,120,24,0.16);
  background: radial-gradient(circle, rgba(169,120,24,0.07), transparent 64%);
  pointer-events: none;
}

.lens-card b {
  position: absolute;
  right: 18px;
  top: 8px;
  color: rgba(111,75,8,0.075);
  font-size: 86px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -.08em;
  z-index: 1;
}

.lens-card span {
  position: relative;
  z-index: 2;
  display: inline-flex;
  margin-bottom: 42px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(169,120,24,0.10);
  border: 1px solid rgba(169,120,24,0.24);
  color: #7a5610;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.lens-card h3 {
  position: relative;
  z-index: 2;
  margin: 0 0 14px;
  color: #11100e;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  line-height: .98;
  font-weight: 600;
}

.lens-card p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.68;
}

.lens-card:hover {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,1), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,1), rgba(226,194,132,0.72));
  border-color: rgba(169,120,24,0.58);
  box-shadow:
    0 42px 120px rgba(111,75,8,0.22),
    0 0 55px rgba(169,120,24,0.13),
    inset 0 0 0 1px rgba(255,255,255,0.78);
}

.lens-card-1 {
  left: 0;
  top: 105px;
  transform: translateZ(150px) rotate(-4deg);
}

.lens-card-2 {
  left: 28%;
  top: 10px;
  transform: translateZ(220px) rotate(3deg);
}

.lens-card-3 {
  right: 24%;
  top: 195px;
  transform: translateZ(190px) rotate(-3deg);
}

.lens-card-4 {
  right: 0;
  top: 80px;
  transform: translateZ(240px) rotate(4deg);
}

.lens-card-1:hover {
  transform: translateZ(190px) translateY(-16px) rotate(-1deg) rotateX(7deg);
}

.lens-card-2:hover {
  transform: translateZ(260px) translateY(-16px) rotate(1deg) rotateX(7deg);
}

.lens-card-3:hover {
  transform: translateZ(230px) translateY(-16px) rotate(-1deg) rotateX(7deg);
}

.lens-card-4:hover {
  transform: translateZ(280px) translateY(-16px) rotate(1deg) rotateX(7deg);
}

@media (max-width: 1050px) {
  .lens-path-stage {
    min-height: 780px;
  }

  .lens-card {
    width: calc(50% - 12px);
  }

  .lens-card-1 {
    left: 0;
    top: 40px;
  }

  .lens-card-2 {
    left: auto;
    right: 0;
    top: 120px;
  }

  .lens-card-3 {
    left: 0;
    right: auto;
    top: 420px;
  }

  .lens-card-4 {
    right: 0;
    top: 500px;
  }

  .lens-gold-path {
    display: none;
  }
}

@media (max-width: 680px) {
  .method-lens-section {
    padding: 75px 16px !important;
  }

  .method-lens-section::after {
    display: none !important;
  }

  .lens-path-stage {
    min-height: auto;
    display: grid;
    gap: 14px;
    perspective: none;
  }

  .lens-card {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    width: 100%;
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
    transform: none !important;
  }

  .lens-card:hover {
    transform: translateY(-6px) !important;
  }

  .lens-card span {
    margin-bottom: 24px;
  }

  .lens-card b {
    font-size: 72px;
  }

  .lens-card h3 {
    font-size: 29px;
  }

  .lens-card p {
    font-size: 14px;
  }
}

/* === EVOLVE Method Architectural Line Art Background === */

.method-lens-section {
  isolation: isolate;
}

.method-architectural-bg {
  position: absolute;
  right: max(-40px, calc((100vw - 1180px) / 2 - 90px));
  bottom: 34px;
  width: min(760px, 58vw);
  height: 330px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.34;
  transform: translateZ(0);
}

.method-architectural-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.method-architectural-bg .building-lines {
  fill: none;
  stroke: rgba(169, 120, 24, 0.30);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.method-architectural-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(246,234,215,0.08), rgba(246,234,215,0.46));
  pointer-events: none;
}

.method-heading,
.lens-path-stage {
  position: relative;
  z-index: 2;
}

@media (max-width: 1050px) {
  .method-architectural-bg {
    width: 82vw;
    right: -120px;
    bottom: 40px;
    opacity: 0.24;
  }
}

@media (max-width: 680px) {
  .method-architectural-bg {
    width: 110vw;
    right: -190px;
    bottom: 30px;
    opacity: 0.16;
  }
}

/* === EVOLVE Full Method Architectural Background === */

.method-architectural-bg {
  inset: 0 !important;
  right: auto !important;
  bottom: auto !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.18 !important;
  z-index: 0 !important;
  transform: none !important;
  overflow: hidden !important;
}

.method-architectural-bg svg {
  width: 100% !important;
  height: 100% !important;
  transform: scale(1.08) translateY(20px) !important;
}

.method-architectural-bg .building-lines {
  stroke: rgba(169, 120, 24, 0.26) !important;
  stroke-width: 1.6 !important;
}

.method-architectural-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(246,234,215,0.28) 62%, rgba(246,234,215,0.68) 100%),
    linear-gradient(180deg, rgba(246,234,215,0.82), transparent 28%, transparent 72%, rgba(246,234,215,0.86));
  pointer-events: none;
}

.method-heading,
.lens-path-stage {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 680px) {
  .method-architectural-bg {
    opacity: 0.11 !important;
  }

  .method-architectural-bg svg {
    transform: scale(1.45) translateY(40px) !important;
  }
}

/* === EVOLVE Better Full Architectural Sketch Background === */

.method-lens-section {
  position: relative !important;
  isolation: isolate !important;
}

.method-architectural-bg {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: 72% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.42 !important;
  overflow: hidden !important;
}

.method-architectural-bg svg {
  width: 100% !important;
  height: 100% !important;
  transform: scale(1.03) translateY(10px) !important;
  display: block !important;
}

.method-architectural-bg .building-lines {
  fill: none !important;
  stroke: rgba(169, 120, 24, 0.38) !important;
  stroke-width: 1.65 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
  vector-effect: non-scaling-stroke !important;
}

.method-architectural-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246,234,215,0.92) 0%, rgba(246,234,215,0.30) 28%, rgba(246,234,215,0.18) 62%, rgba(246,234,215,0.72) 100%),
    radial-gradient(circle at 50% 44%, transparent 0%, rgba(246,234,215,0.18) 58%, rgba(246,234,215,0.56) 100%);
  pointer-events: none;
}

.method-heading,
.lens-path-stage {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 1050px) {
  .method-architectural-bg {
    height: 78% !important;
    opacity: 0.34 !important;
  }

  .method-architectural-bg svg {
    transform: scale(1.18) translateY(25px) !important;
  }
}

@media (max-width: 680px) {
  .method-architectural-bg {
    height: 100% !important;
    opacity: 0.20 !important;
  }

  .method-architectural-bg svg {
    transform: scale(1.8) translateX(-90px) translateY(80px) !important;
  }
}

/* === EVOLVE Real Architectural Sketch Image Background === */

.method-architectural-bg.sketch-image-bg {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0 !important;
  pointer-events: none !important;
  opacity: 0.28 !important;
  background-image: url("assets/method-architectural-sketch.png") !important;
  background-repeat: no-repeat !important;
  background-position: center bottom !important;
  background-size: 100% auto !important;
  mix-blend-mode: multiply;
}

.method-architectural-bg.sketch-image-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246,234,215,0.92) 0%, rgba(246,234,215,0.25) 28%, rgba(246,234,215,0.16) 62%, rgba(246,234,215,0.68) 100%),
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(246,234,215,0.14) 58%, rgba(246,234,215,0.50) 100%);
  pointer-events: none;
}

.method-architectural-bg.sketch-image-bg svg,
.method-architectural-bg.sketch-image-bg .building-lines {
  display: none !important;
}

.method-heading,
.lens-path-stage {
  position: relative !important;
  z-index: 2 !important;
}

@media (max-width: 1050px) {
  .method-architectural-bg.sketch-image-bg {
    opacity: 0.22 !important;
    background-size: 150% auto !important;
    background-position: center bottom !important;
  }
}

@media (max-width: 680px) {
  .method-architectural-bg.sketch-image-bg {
    opacity: 0.16 !important;
    background-size: 230% auto !important;
    background-position: center bottom !important;
  }
}

/* === EVOLVE Method Sketch Visibility Boost === */

.method-architectural-bg.sketch-image-bg {
  opacity: 0.46 !important;
  mix-blend-mode: normal !important;
  filter: contrast(1.16) saturate(1.05) !important;
}

.method-architectural-bg.sketch-image-bg::after {
  background:
    linear-gradient(180deg, rgba(246,234,215,0.55) 0%, rgba(246,234,215,0.10) 28%, rgba(246,234,215,0.06) 62%, rgba(246,234,215,0.38) 100%),
    radial-gradient(circle at 50% 45%, transparent 0%, rgba(246,234,215,0.06) 58%, rgba(246,234,215,0.26) 100%) !important;
}

@media (max-width: 1050px) {
  .method-architectural-bg.sketch-image-bg {
    opacity: 0.36 !important;
  }
}

@media (max-width: 680px) {
  .method-architectural-bg.sketch-image-bg {
    opacity: 0.24 !important;
  }
}

/* === Match EVOLVE Method Background With Site === */

.method-lens-section,
.evolve-method-section {
  background: transparent !important;
}

.method-lens-section::before {
  display: none !important;
}

/* Keep sketch visible without washing the section */
.method-architectural-bg.sketch-image-bg {
  opacity: 0.42 !important;
  mix-blend-mode: multiply !important;
  filter: contrast(1.2) saturate(1.05) !important;
}

.method-architectural-bg.sketch-image-bg::after {
  background:
    linear-gradient(180deg, rgba(246,234,215,0.18) 0%, rgba(246,234,215,0.04) 30%, rgba(246,234,215,0.03) 65%, rgba(246,234,215,0.20) 100%) !important;
}

/* Make sure cards still stand out */
.lens-card {
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.92), transparent 62%),
    linear-gradient(145deg, rgba(255,248,234,0.86), rgba(229,202,154,0.56)) !important;
}

@media (max-width: 680px) {
  .method-architectural-bg.sketch-image-bg {
    opacity: 0.24 !important;
    mix-blend-mode: multiply !important;
  }
}

/* === Remove EVOLVE Watermark From Method Section === */

.method-lens-section::after,
.evolve-method-section::after {
  content: none !important;
  display: none !important;
}


/* === EVOLVE Egypt Map Areas Section === */

.areas-map-section {
  position: relative;
  overflow: hidden;
  padding: clamp(82px, 9vw, 130px) 5vw;
}

.areas-map-section::before {
  content: "";
  position: absolute;
  inset: 8% 4% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(177, 128, 38, 0.16), transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.areas-map-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(34px, 5vw, 74px);
  align-items: center;
}

.areas-copy h2 {
  margin: 14px 0 16px;
  max-width: 560px;
  font-family: var(--font-display, serif);
  font-size: clamp(38px, 5.3vw, 72px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: var(--ink, #18130d);
}

.areas-copy > p {
  max-width: 560px;
  margin: 0 0 30px;
  color: rgba(35, 27, 17, 0.72);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.8;
}

.area-direction-grid {
  display: grid;
  gap: 14px;
  max-width: 560px;
}

.area-direction-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  padding: 20px 22px;
  border: 1px solid rgba(142, 98, 22, 0.20);
  background:
    radial-gradient(circle at 14% 0%, rgba(255,255,255,0.82), transparent 46%),
    linear-gradient(135deg, rgba(255, 248, 231, 0.80), rgba(221, 190, 132, 0.26));
  box-shadow: 0 24px 60px rgba(73, 49, 18, 0.08);
  transform: translateZ(0);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.area-direction-card::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  top: -70px;
  border-radius: 999px;
  border: 1px solid rgba(173, 122, 29, 0.20);
}

.area-direction-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 34px 80px rgba(73, 49, 18, 0.14);
  border-color: rgba(158, 108, 20, 0.34);
}

.area-card-label {
  display: inline-flex;
  margin-bottom: 10px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(126, 84, 10, 0.82);
}

.area-direction-card h3 {
  margin: 0 0 7px;
  font-size: 22px;
  color: #17110b;
}

.area-direction-card p {
  margin: 0;
  color: rgba(35, 27, 17, 0.66);
  font-size: 14px;
  line-height: 1.6;
}

.egypt-map-panel {
  position: relative;
  min-height: clamp(520px, 52vw, 680px);
  border-radius: 42px;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid rgba(159, 110, 25, 0.18);
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.92), transparent 32%),
    linear-gradient(145deg, rgba(255, 248, 232, 0.72), rgba(221, 190, 132, 0.20));
  box-shadow:
    0 44px 110px rgba(67, 44, 15, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.68);
  perspective: 1200px;
  overflow: hidden;
}

.egypt-map-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 34px;
  border: 1px solid rgba(157, 109, 27, 0.12);
  pointer-events: none;
}

.map-glow-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.map-orb-one {
  width: 260px;
  height: 260px;
  right: -80px;
  top: 20px;
  background: rgba(177, 128, 38, 0.17);
}

.map-orb-two {
  width: 240px;
  height: 240px;
  left: -80px;
  bottom: 30px;
  background: rgba(255, 255, 255, 0.62);
}

.egypt-map-frame {
  position: relative;
  height: clamp(430px, 45vw, 570px);
  transform: rotateX(7deg) rotateZ(-1.2deg);
  transform-style: preserve-3d;
  transition: transform 0.45s ease;
}

.egypt-map-panel:hover .egypt-map-frame {
  transform: rotateX(4deg) rotateZ(0deg) translateY(-4px);
}

.egypt-map-img {
  position: absolute;
  inset: 2% 1% 4% 1%;
  width: 98%;
  height: 94%;
  object-fit: contain;
  opacity: 0.92;
  filter:
    drop-shadow(0 30px 38px rgba(88, 56, 16, 0.13))
    contrast(1.06)
    saturate(1.05);
  user-select: none;
  pointer-events: none;
}

.map-pin {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(121, 78, 7, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 238, 0.80);
  box-shadow: 0 16px 34px rgba(63, 40, 10, 0.13);
  color: #1e160e;
  font: inherit;
  font-size: 12px;
  line-height: 1;
  white-space: nowrap;
  cursor: default;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform: translate(-50%, -50%);
  z-index: 4;
  transition: transform 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.map-pin:hover {
  transform: translate(-50%, -50%) scale(1.06);
  background: rgba(255, 248, 229, 0.95);
  box-shadow: 0 22px 48px rgba(63, 40, 10, 0.20);
}

.pin-dot {
  position: relative;
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: linear-gradient(135deg, #d9ad52, #8b5b08);
  box-shadow: 0 0 0 5px rgba(174, 121, 28, 0.14);
}

.pin-dot::after {
  content: "";
  position: absolute;
  inset: -7px;
  border-radius: inherit;
  border: 1px solid rgba(174, 121, 28, 0.35);
  animation: mapPinPulse 2.6s ease-out infinite;
}

.pin-label {
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Approximate pin positions over the Egypt SVG asset */
.pin-north-coast { left: 30%; top: 17%; }
.pin-zayed { left: 35%; top: 30%; }
.pin-october { left: 31%; top: 35%; }
.pin-new-cairo { left: 47%; top: 34%; }
.pin-mostakbal { left: 51%; top: 39%; }
.pin-new-capital { left: 56%; top: 42%; }
.pin-sokhna { left: 61%; top: 50%; }
.pin-red-sea { left: 69%; top: 69%; }

.map-caption {
  position: absolute;
  left: clamp(22px, 3vw, 38px);
  right: clamp(22px, 3vw, 38px);
  bottom: clamp(20px, 3vw, 34px);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  z-index: 5;
}

.map-caption span {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 250, 239, 0.64);
  border: 1px solid rgba(132, 88, 13, 0.14);
  color: rgba(33, 24, 13, 0.68);
  font-size: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@keyframes mapPinPulse {
  0% {
    transform: scale(0.76);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.85);
    opacity: 0;
  }
}

@media (max-width: 1050px) {
  .areas-map-shell {
    grid-template-columns: 1fr;
  }

  .areas-copy h2,
  .areas-copy > p,
  .area-direction-grid {
    max-width: 760px;
  }

  .area-direction-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .egypt-map-panel {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .areas-map-section {
    padding-inline: 20px;
  }

  .area-direction-grid {
    grid-template-columns: 1fr;
  }

  .egypt-map-panel {
    min-height: 520px;
    border-radius: 30px;
    padding: 16px;
  }

  .egypt-map-frame {
    height: 430px;
    transform: rotateX(0deg) rotateZ(0deg);
  }

  .egypt-map-panel:hover .egypt-map-frame {
    transform: none;
  }

  .egypt-map-img {
    inset: 3% -18% 6% -18%;
    width: 136%;
    height: 90%;
  }

  .map-pin {
    padding: 7px 9px 7px 7px;
    font-size: 11px;
  }

  .pin-dot {
    width: 9px;
    height: 9px;
  }

  .pin-north-coast { left: 22%; top: 17%; }
  .pin-zayed { left: 30%; top: 31%; }
  .pin-october { left: 25%; top: 37%; }
  .pin-new-cairo { left: 49%; top: 35%; }
  .pin-mostakbal { left: 54%; top: 41%; }
  .pin-new-capital { left: 61%; top: 45%; }
  .pin-sokhna { left: 67%; top: 54%; }
  .pin-red-sea { left: 73%; top: 72%; }

  .map-caption {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 8px;
  }
}

@media (max-width: 470px) {
  .egypt-map-panel {
    min-height: 540px;
  }

  .map-pin {
    font-size: 10px;
    gap: 6px;
  }

  .pin-label {
    max-width: 82px;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}


/* === EVOLVE Egypt Map Scale + Pin Alignment Fix === */

.areas-map-shell {
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr) !important;
}

.egypt-map-panel {
  min-height: clamp(620px, 58vw, 760px) !important;
}

.egypt-map-frame {
  height: clamp(540px, 52vw, 680px) !important;
  transform: rotateX(5deg) rotateZ(-0.8deg) !important;
}

.egypt-map-panel:hover .egypt-map-frame {
  transform: rotateX(3deg) rotateZ(0deg) translateY(-4px) !important;
}

.egypt-map-img {
  inset: auto !important;
  left: 50% !important;
  top: 50% !important;
  width: 178% !important;
  height: auto !important;
  max-width: none !important;
  object-fit: initial !important;
  transform: translate(-51%, -50%) !important;
  opacity: 0.98 !important;
  filter:
    drop-shadow(0 34px 42px rgba(88, 56, 16, 0.16))
    contrast(1.08)
    saturate(1.06) !important;
}

/* Better positions after enlarging the actual SVG map */
.pin-north-coast { left: 31% !important; top: 24% !important; }

.pin-zayed { left: 46% !important; top: 37% !important; }
.pin-october { left: 42% !important; top: 42% !important; }

.pin-new-cairo { left: 57% !important; top: 37% !important; }
.pin-mostakbal { left: 61% !important; top: 41% !important; }
.pin-new-capital { left: 66% !important; top: 46% !important; }

.pin-sokhna { left: 69% !important; top: 54% !important; }
.pin-red-sea { left: 77% !important; top: 71% !important; }

.map-pin {
  font-size: 11px !important;
  padding: 7px 10px 7px 7px !important;
}

.pin-dot {
  width: 10px !important;
  height: 10px !important;
}

@media (max-width: 1050px) {
  .areas-map-shell {
    grid-template-columns: 1fr !important;
  }

  .egypt-map-panel {
    min-height: 650px !important;
  }

  .egypt-map-img {
    width: 162% !important;
    transform: translate(-50%, -50%) !important;
  }

  .pin-north-coast { left: 32% !important; top: 25% !important; }
  .pin-zayed { left: 46% !important; top: 38% !important; }
  .pin-october { left: 42% !important; top: 43% !important; }
  .pin-new-cairo { left: 57% !important; top: 38% !important; }
  .pin-mostakbal { left: 61% !important; top: 42% !important; }
  .pin-new-capital { left: 66% !important; top: 47% !important; }
  .pin-sokhna { left: 69% !important; top: 55% !important; }
  .pin-red-sea { left: 76% !important; top: 72% !important; }
}

@media (max-width: 760px) {
  .egypt-map-panel {
    min-height: 560px !important;
  }

  .egypt-map-frame {
    height: 455px !important;
    transform: none !important;
  }

  .egypt-map-panel:hover .egypt-map-frame {
    transform: none !important;
  }

  .egypt-map-img {
    width: 205% !important;
    transform: translate(-52%, -50%) !important;
  }

  .map-pin {
    font-size: 10px !important;
    padding: 6px 8px 6px 6px !important;
  }

  .pin-dot {
    width: 8px !important;
    height: 8px !important;
  }

  .pin-north-coast { left: 22% !important; top: 24% !important; }
  .pin-zayed { left: 40% !important; top: 38% !important; }
  .pin-october { left: 35% !important; top: 43% !important; }
  .pin-new-cairo { left: 58% !important; top: 38% !important; }
  .pin-mostakbal { left: 64% !important; top: 43% !important; }
  .pin-new-capital { left: 72% !important; top: 48% !important; }
  .pin-sokhna { left: 76% !important; top: 56% !important; }
  .pin-red-sea { left: 82% !important; top: 74% !important; }
}


/* === EVOLVE City vs Coast Areas Section === */

.split-areas-section {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 9vw, 132px) 5vw;
}

.split-areas-section::before {
  content: "";
  position: absolute;
  inset: 4% auto auto 50%;
  width: 760px;
  height: 760px;
  border-radius: 999px;
  transform: translateX(-50%);
  background:
    radial-gradient(circle, rgba(177, 128, 38, 0.14), transparent 64%);
  pointer-events: none;
}

.split-areas-shell {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  margin: 0 auto;
}

.split-areas-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.split-areas-heading h2 {
  margin: 14px 0 16px;
  font-family: var(--font-display, serif);
  font-size: clamp(38px, 5.5vw, 76px);
  line-height: 0.92;
  letter-spacing: -0.058em;
  color: var(--ink, #18130d);
}

.split-areas-heading p {
  max-width: 660px;
  margin: 0;
  color: rgba(35, 27, 17, 0.72);
  font-size: clamp(15px, 1.25vw, 17px);
  line-height: 1.8;
}

.split-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.4vw, 28px);
}

.split-area-panel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  border-radius: 40px;
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid rgba(142, 98, 22, 0.22);
  box-shadow:
    0 34px 90px rgba(73, 49, 18, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.62);
  isolation: isolate;
  transition:
    transform 0.42s ease,
    box-shadow 0.42s ease,
    border-color 0.42s ease;
}

.split-area-panel:hover {
  transform: translateY(-8px);
  box-shadow:
    0 44px 120px rgba(73, 49, 18, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.70);
  border-color: rgba(157, 104, 18, 0.36);
}

.city-panel {
  background:
    linear-gradient(145deg, rgba(255, 249, 235, 0.92), rgba(227, 196, 139, 0.35)),
    radial-gradient(circle at 18% 18%, rgba(255,255,255,0.88), transparent 34%);
}

.coast-panel {
  background:
    linear-gradient(145deg, rgba(34, 27, 18, 0.96), rgba(94, 66, 24, 0.88)),
    radial-gradient(circle at 20% 18%, rgba(255, 226, 167, 0.20), transparent 38%);
  color: #fff8e8;
}

.split-area-panel::before {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 30px;
  border: 1px solid rgba(152, 105, 25, 0.14);
  pointer-events: none;
  z-index: -1;
}

.coast-panel::before {
  border-color: rgba(255, 227, 169, 0.15);
}

.split-area-panel::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -150px;
  border-radius: 999px;
  border: 1px solid rgba(166, 113, 24, 0.18);
  background: radial-gradient(circle, rgba(177, 128, 38, 0.10), transparent 62%);
  pointer-events: none;
  z-index: -1;
}

.coast-panel::after {
  border-color: rgba(255, 222, 153, 0.18);
  background: radial-gradient(circle, rgba(255, 222, 153, 0.12), transparent 62%);
}

.split-panel-bg-text {
  position: absolute;
  left: clamp(20px, 3vw, 34px);
  bottom: -14px;
  font-family: var(--font-display, serif);
  font-size: clamp(92px, 11vw, 150px);
  line-height: 0.78;
  letter-spacing: -0.08em;
  color: rgba(131, 84, 10, 0.075);
  pointer-events: none;
  z-index: -1;
}

.coast-panel .split-panel-bg-text {
  color: rgba(255, 231, 178, 0.075);
}

.split-panel-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: clamp(70px, 9vw, 120px);
}

.split-panel-tag {
  display: inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.58);
  border: 1px solid rgba(129, 85, 10, 0.14);
  color: rgba(94, 61, 8, 0.82);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coast-panel .split-panel-tag {
  background: rgba(255, 244, 220, 0.10);
  border-color: rgba(255, 227, 170, 0.18);
  color: rgba(255, 239, 204, 0.84);
}

.split-panel-number {
  font-family: var(--font-display, serif);
  font-size: 42px;
  line-height: 1;
  color: rgba(112, 74, 10, 0.26);
}

.coast-panel .split-panel-number {
  color: rgba(255, 231, 181, 0.28);
}

.split-panel-content {
  max-width: 520px;
}

.split-panel-content h3 {
  margin: 0 0 14px;
  font-family: var(--font-display, serif);
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  color: #17110b;
}

.coast-panel .split-panel-content h3 {
  color: #fff4dc;
}

.split-panel-content p {
  margin: 0 0 26px;
  color: rgba(35, 27, 17, 0.68);
  font-size: 15px;
  line-height: 1.75;
}

.coast-panel .split-panel-content p {
  color: rgba(255, 242, 214, 0.70);
}

.area-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.area-pill-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 252, 244, 0.72);
  border: 1px solid rgba(132, 88, 13, 0.16);
  color: rgba(30, 22, 12, 0.82);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.02em;
  box-shadow: 0 14px 30px rgba(73, 49, 18, 0.06);
}

.coast-panel .area-pill-grid span {
  background: rgba(255, 244, 220, 0.10);
  border-color: rgba(255, 227, 170, 0.16);
  color: rgba(255, 244, 220, 0.90);
  box-shadow: none;
}

.split-panel-footer {
  position: absolute;
  left: clamp(24px, 3vw, 36px);
  right: clamp(24px, 3vw, 36px);
  bottom: clamp(22px, 3vw, 32px);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 18px;
  border-top: 1px solid rgba(132, 88, 13, 0.14);
}

.coast-panel .split-panel-footer {
  border-top-color: rgba(255, 227, 170, 0.14);
}

.split-panel-footer span {
  color: rgba(36, 27, 15, 0.54);
  font-size: 12px;
}

.coast-panel .split-panel-footer span {
  color: rgba(255, 238, 204, 0.55);
}

@media (max-width: 980px) {
  .split-areas-grid {
    grid-template-columns: 1fr;
  }

  .split-area-panel {
    min-height: 470px;
  }

  .split-panel-top {
    margin-bottom: 80px;
  }
}

@media (max-width: 620px) {
  .split-areas-section {
    padding-inline: 20px;
  }

  .split-area-panel {
    min-height: 520px;
    border-radius: 30px;
  }

  .split-area-panel::before {
    border-radius: 22px;
  }

  .split-panel-top {
    margin-bottom: 70px;
  }

  .split-panel-footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    margin-top: 34px;
  }

  .area-pill-grid span {
    font-size: 12px;
  }
}


/* === FINAL APPROVED: City vs Coast Areas Section Polish === */

.split-areas-section {
  background: transparent !important;
  padding: clamp(92px, 9vw, 138px) 5vw !important;
}

.split-areas-section::before {
  width: 860px !important;
  height: 860px !important;
  background:
    radial-gradient(circle at center, rgba(177, 128, 38, 0.13), transparent 62%) !important;
  opacity: 0.9 !important;
}

.split-areas-heading {
  max-width: 820px !important;
  margin-bottom: clamp(40px, 5.4vw, 66px) !important;
}

.split-areas-heading h2 {
  max-width: 780px !important;
  color: #17110b !important;
  text-wrap: balance;
}

.split-areas-heading p {
  color: rgba(35, 27, 17, 0.68) !important;
}

.split-areas-grid {
  gap: clamp(20px, 2.8vw, 34px) !important;
  align-items: stretch !important;
}

.split-area-panel {
  min-height: 545px !important;
  border-radius: 44px !important;
  padding: clamp(28px, 3.3vw, 42px) !important;
  border-color: rgba(143, 95, 18, 0.20) !important;
  box-shadow:
    0 34px 85px rgba(73, 49, 18, 0.10),
    inset 0 1px 0 rgba(255,255,255,0.66) !important;
}

.split-area-panel:hover {
  transform: translateY(-7px) scale(1.006) !important;
  box-shadow:
    0 44px 112px rgba(73, 49, 18, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.76) !important;
}

/* City card: warm premium cream */
.city-panel {
  background:
    linear-gradient(145deg, rgba(255, 250, 238, 0.96), rgba(236, 210, 160, 0.42)),
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.92), transparent 36%),
    radial-gradient(circle at 90% 82%, rgba(174, 121, 28, 0.10), transparent 46%) !important;
}

/* Coast card: deep bronze, not harsh black */
.coast-panel {
  background:
    linear-gradient(145deg, rgba(44, 34, 22, 0.98), rgba(91, 64, 28, 0.94)),
    radial-gradient(circle at 22% 16%, rgba(255, 225, 164, 0.18), transparent 38%),
    radial-gradient(circle at 86% 88%, rgba(204, 145, 46, 0.16), transparent 44%) !important;
  color: #fff4dc !important;
}

.split-area-panel::before {
  inset: 20px !important;
  border-radius: 32px !important;
  border-color: rgba(143, 95, 18, 0.14) !important;
}

.coast-panel::before {
  border-color: rgba(255, 227, 170, 0.16) !important;
}

.split-area-panel::after {
  width: 420px !important;
  height: 420px !important;
  right: -180px !important;
  bottom: -180px !important;
  border-color: rgba(166, 113, 24, 0.16) !important;
  background: radial-gradient(circle, rgba(177, 128, 38, 0.095), transparent 64%) !important;
}

.coast-panel::after {
  border-color: rgba(255, 222, 153, 0.17) !important;
  background: radial-gradient(circle, rgba(255, 222, 153, 0.115), transparent 64%) !important;
}

.split-panel-bg-text {
  opacity: 1 !important;
  color: rgba(131, 84, 10, 0.062) !important;
  bottom: -10px !important;
}

.coast-panel .split-panel-bg-text {
  color: rgba(255, 231, 178, 0.066) !important;
}

.split-panel-top {
  margin-bottom: clamp(82px, 8.4vw, 128px) !important;
}

.split-panel-tag {
  background: rgba(255, 252, 244, 0.64) !important;
  border-color: rgba(129, 85, 10, 0.15) !important;
  color: rgba(99, 64, 8, 0.82) !important;
  font-weight: 700 !important;
}

.coast-panel .split-panel-tag {
  background: rgba(255, 244, 220, 0.105) !important;
  border-color: rgba(255, 227, 170, 0.19) !important;
  color: rgba(255, 239, 204, 0.88) !important;
}

.split-panel-number {
  color: rgba(112, 74, 10, 0.22) !important;
}

.coast-panel .split-panel-number {
  color: rgba(255, 231, 181, 0.24) !important;
}

.split-panel-content h3 {
  color: #17110b !important;
  text-wrap: balance;
}

.coast-panel .split-panel-content h3 {
  color: #fff2d5 !important;
}

.split-panel-content p {
  max-width: 460px !important;
  color: rgba(35, 27, 17, 0.64) !important;
}

.coast-panel .split-panel-content p {
  color: rgba(255, 242, 214, 0.68) !important;
}

.area-pill-grid {
  gap: 11px !important;
}

.area-pill-grid span {
  min-height: 40px !important;
  padding: 10px 14px !important;
  background: rgba(255, 253, 246, 0.72) !important;
  border-color: rgba(132, 88, 13, 0.15) !important;
  color: rgba(29, 21, 11, 0.82) !important;
  box-shadow: 0 14px 28px rgba(73, 49, 18, 0.055) !important;
}

.coast-panel .area-pill-grid span {
  background: rgba(255, 244, 220, 0.105) !important;
  border-color: rgba(255, 227, 170, 0.16) !important;
  color: rgba(255, 244, 220, 0.92) !important;
}

.split-panel-footer {
  border-top-color: rgba(132, 88, 13, 0.13) !important;
}

.coast-panel .split-panel-footer {
  border-top-color: rgba(255, 227, 170, 0.13) !important;
}

.split-panel-footer span {
  color: rgba(36, 27, 15, 0.50) !important;
}

.coast-panel .split-panel-footer span {
  color: rgba(255, 238, 204, 0.52) !important;
}

/* Mobile final polish */
@media (max-width: 980px) {
  .split-area-panel {
    min-height: 500px !important;
  }

  .split-panel-top {
    margin-bottom: 92px !important;
  }
}

@media (max-width: 620px) {
  .split-areas-section {
    padding: 78px 20px !important;
  }

  .split-areas-heading {
    margin-bottom: 32px !important;
  }

  .split-area-panel {
    min-height: auto !important;
    border-radius: 32px !important;
    padding: 28px 22px !important;
  }

  .split-area-panel::before {
    inset: 14px !important;
    border-radius: 24px !important;
  }

  .split-panel-top {
    margin-bottom: 76px !important;
  }

  .split-panel-bg-text {
    font-size: 88px !important;
    bottom: -4px !important;
  }

  .split-panel-content h3 {
    font-size: 42px !important;
  }

  .split-panel-content p {
    font-size: 14px !important;
    line-height: 1.72 !important;
  }

  .area-pill-grid span {
    min-height: 36px !important;
    padding: 9px 12px !important;
  }

  .split-panel-footer {
    margin-top: 30px !important;
  }
}






/* === Prevent old Areas title overrides from forcing black === */
.split-areas-heading .section-kicker {
  color: inherit;
}


/* === FINAL: City vs Coast Background Images === */

.city-panel {
  background:
    linear-gradient(145deg, rgba(255, 250, 238, 0.88), rgba(236, 210, 160, 0.58)),
    radial-gradient(circle at 18% 15%, rgba(255,255,255,0.78), transparent 36%),
    linear-gradient(0deg, rgba(255, 248, 232, 0.52), rgba(255, 248, 232, 0.52)),
    url("assets/city-living-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

.coast-panel {
  background:
    linear-gradient(145deg, rgba(27, 20, 13, 0.88), rgba(82, 55, 22, 0.86)),
    radial-gradient(circle at 22% 16%, rgba(255, 225, 164, 0.16), transparent 38%),
    linear-gradient(0deg, rgba(28, 20, 12, 0.50), rgba(28, 20, 12, 0.50)),
    url("assets/coastal-investment-bg.jpg") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
}

/* Make the image feel integrated, not just pasted */
.city-panel::after,
.coast-panel::after {
  z-index: 0 !important;
}

.split-panel-bg-text,
.split-panel-top,
.split-panel-content,
.split-panel-footer {
  position: relative !important;
  z-index: 2 !important;
}

/* Stronger readability over image */
.city-panel .split-panel-content p {
  color: rgba(30, 22, 12, 0.72) !important;
}

.city-panel .area-pill-grid span {
  background: rgba(255, 253, 246, 0.76) !important;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.coast-panel .area-pill-grid span,
.coast-panel .split-panel-tag {
  background: rgba(255, 244, 220, 0.13) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.coast-panel .split-panel-content p {
  color: rgba(255, 242, 214, 0.76) !important;
}

/* Optional cinematic depth */
.split-area-panel {
  background-blend-mode: normal, normal, normal, normal !important;
}

@media (max-width: 620px) {
  .city-panel {
    background-position: center center !important;
  }

  .coast-panel {
    background-position: center center !important;
  }
}


/* === FINAL: City vs Coast Card Content Alignment === */

.split-area-panel {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  gap: 24px !important;
  min-height: 570px !important;
}

.split-panel-top {
  margin-bottom: 0 !important;
  position: relative !important;
  z-index: 3 !important;
}

.split-panel-content {
  position: relative !important;
  z-index: 3 !important;
  max-width: none !important;
  min-height: 300px !important;
  padding: clamp(22px, 2.4vw, 30px) !important;
  border-radius: 30px !important;
  border: 1px solid rgba(132, 88, 13, 0.16) !important;
  background: rgba(255, 250, 238, 0.66) !important;
  box-shadow:
    0 24px 58px rgba(43, 28, 8, 0.12),
    inset 0 1px 0 rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
}

.coast-panel .split-panel-content {
  border-color: rgba(255, 228, 174, 0.16) !important;
  background: rgba(34, 25, 15, 0.54) !important;
  box-shadow:
    0 24px 58px rgba(0, 0, 0, 0.20),
    inset 0 1px 0 rgba(255,255,255,0.10) !important;
}

.split-panel-content h3 {
  margin: 0 0 14px !important;
  font-size: clamp(40px, 4.2vw, 54px) !important;
  line-height: 0.94 !important;
  letter-spacing: -0.052em !important;
}

.split-panel-content p {
  max-width: 440px !important;
  min-height: 78px !important;
  margin: 0 0 24px !important;
  font-size: 14.5px !important;
  line-height: 1.72 !important;
}

.city-panel .split-panel-content p {
  color: rgba(30, 22, 12, 0.74) !important;
}

.coast-panel .split-panel-content p {
  color: rgba(255, 242, 214, 0.76) !important;
}

.area-pill-grid {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: flex-start !important;
  gap: 10px !important;
  min-height: 92px !important;
}

.area-pill-grid span {
  min-height: 38px !important;
  padding: 9px 13px !important;
  border-radius: 999px !important;
  font-size: 12.5px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.city-panel .area-pill-grid span {
  background: rgba(255, 253, 246, 0.78) !important;
  border-color: rgba(132, 88, 13, 0.18) !important;
  color: rgba(28, 20, 10, 0.84) !important;
}

.coast-panel .area-pill-grid span {
  background: rgba(255, 244, 220, 0.13) !important;
  border-color: rgba(255, 228, 174, 0.18) !important;
  color: rgba(255, 244, 220, 0.92) !important;
}

.split-panel-footer {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 3 !important;
  margin-top: 0 !important;
  padding-top: 16px !important;
  min-height: 40px !important;
  display: flex !important;
  align-items: center !important;
}

.split-panel-footer span {
  font-size: 11.5px !important;
  letter-spacing: 0.02em !important;
}

/* Make top labels consistent */
.split-panel-tag {
  min-height: 36px !important;
  align-items: center !important;
  padding: 9px 13px !important;
  font-size: 10.5px !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.split-panel-number {
  font-size: 40px !important;
}

/* Reduce the giant background words so they don't fight the real images */
.split-panel-bg-text {
  font-size: clamp(78px, 8vw, 118px) !important;
  opacity: 0.82 !important;
}

/* Mobile cleanup */
@media (max-width: 980px) {
  .split-area-panel {
    min-height: 520px !important;
  }

  .split-panel-content {
    min-height: 280px !important;
  }

  .area-pill-grid {
    min-height: auto !important;
  }
}

@media (max-width: 620px) {
  .split-area-panel {
    min-height: auto !important;
    gap: 20px !important;
  }

  .split-panel-content {
    min-height: auto !important;
    border-radius: 24px !important;
    padding: 22px 18px !important;
  }

  .split-panel-content h3 {
    font-size: 38px !important;
  }

  .split-panel-content p {
    min-height: auto !important;
    font-size: 14px !important;
  }

  .area-pill-grid {
    gap: 8px !important;
  }

  .area-pill-grid span {
    font-size: 11.5px !important;
    min-height: 34px !important;
    padding: 8px 10px !important;
  }

  .split-panel-footer {
    padding-top: 14px !important;
  }
}


/* === Remove City vs Coast Card Numbers === */

.split-panel-number {
  display: none !important;
}

.split-panel-top {
  justify-content: flex-start !important;
}


/* === FINAL: EVOLVE Support Widget Instead Of WhatsApp Floating Button === */

/* Hide any older floating WhatsApp styles if they still exist */
.whatsapp-float,
.whatsapp-floating,
.wa-float,
.floating-whatsapp,
.whatsapp-button-floating {
  display: none !important;
}

.evolve-support-widget {
  position: fixed !important;
  right: clamp(18px, 2.2vw, 28px) !important;
  bottom: clamp(18px, 2.2vw, 28px) !important;
  z-index: 9999 !important;

  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;

  min-width: 214px !important;
  min-height: 62px !important;
  padding: 10px 16px 10px 10px !important;

  border-radius: 999px !important;
  border: 1px solid rgba(179, 130, 38, 0.28) !important;

  background:
    linear-gradient(145deg, rgba(35, 27, 18, 0.94), rgba(88, 62, 26, 0.92)) !important;

  color: #fff2d3 !important;
  text-decoration: none !important;

  box-shadow:
    0 24px 60px rgba(32, 20, 6, 0.28),
    inset 0 1px 0 rgba(255,255,255,0.14) !important;

  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;

  overflow: hidden !important;
  isolation: isolate !important;

  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    border-color 0.28s ease !important;
}

.evolve-support-widget::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,255,255,0.18), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(214, 157, 58, 0.20), transparent 42%);
  z-index: -1;
  pointer-events: none;
}

.evolve-support-widget:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(220, 170, 74, 0.42) !important;
  box-shadow:
    0 30px 76px rgba(32, 20, 6, 0.34),
    inset 0 1px 0 rgba(255,255,255,0.18) !important;
}

.support-widget-icon {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 232, 178, 0.95), rgba(170, 112, 20, 0.92));
  color: #2a1b07;

  box-shadow:
    0 14px 34px rgba(191, 134, 32, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.36);
}

.support-widget-icon::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 3px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #53d27a;
  border: 2px solid #3a2914;
  box-shadow: 0 0 0 4px rgba(83, 210, 122, 0.14);
}

.support-widget-copy {
  display: grid;
  gap: 3px;
  line-height: 1.05;
}

.support-widget-copy strong {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #fff4d9;
}

.support-widget-copy small {
  font-size: 11px;
  color: rgba(255, 239, 205, 0.68);
}

.support-widget-pulse {
  position: absolute;
  inset: -18px;
  border-radius: inherit;
  background: radial-gradient(circle at 20% 50%, rgba(220, 170, 74, 0.18), transparent 34%);
  animation: supportWidgetGlow 3s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes supportWidgetGlow {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.98);
  }

  50% {
    opacity: 1;
    transform: scale(1.04);
  }
}

@media (max-width: 620px) {
  .evolve-support-widget {
    min-width: auto !important;
    width: 58px !important;
    height: 58px !important;
    padding: 8px !important;
    right: 18px !important;
    bottom: 18px !important;
  }

  .support-widget-copy {
    display: none !important;
  }

  .support-widget-icon {
    width: 42px !important;
    height: 42px !important;
    flex-basis: 42px !important;
  }
}


/* === FINAL: Compact Premium Support Circle === */

.evolve-support-widget {
  width: 62px !important;
  height: 62px !important;
  min-width: 62px !important;
  min-height: 62px !important;

  right: clamp(18px, 2vw, 26px) !important;
  bottom: clamp(18px, 2vw, 26px) !important;

  padding: 0 !important;
  border-radius: 999px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;

  background:
    radial-gradient(circle at 32% 20%, rgba(255,255,255,0.22), transparent 34%),
    linear-gradient(145deg, rgba(37, 28, 18, 0.96), rgba(114, 77, 28, 0.94)) !important;

  border: 1px solid rgba(214, 164, 70, 0.34) !important;

  box-shadow:
    0 22px 54px rgba(31, 20, 7, 0.30),
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset 0 -10px 26px rgba(0,0,0,0.16) !important;

  overflow: visible !important;
}

.evolve-support-widget:hover {
  transform: translateY(-4px) scale(1.04) !important;
  border-color: rgba(235, 190, 99, 0.54) !important;
  box-shadow:
    0 28px 68px rgba(31, 20, 7, 0.38),
    0 0 0 8px rgba(177, 128, 38, 0.08),
    inset 0 1px 0 rgba(255,255,255,0.20) !important;
}

.evolve-support-widget::before {
  inset: 0 !important;
  border-radius: inherit !important;
  background:
    radial-gradient(circle at 30% 18%, rgba(255,255,255,0.20), transparent 34%),
    radial-gradient(circle at 78% 88%, rgba(220, 170, 74, 0.22), transparent 42%) !important;
}

.support-widget-copy {
  display: none !important;
}

.support-widget-icon {
  width: 48px !important;
  height: 48px !important;
  flex: 0 0 48px !important;

  background:
    linear-gradient(145deg, rgba(255, 232, 178, 0.98), rgba(173, 113, 22, 0.96)) !important;

  color: #2b1b06 !important;

  box-shadow:
    0 12px 28px rgba(191, 134, 32, 0.24),
    inset 0 1px 0 rgba(255,255,255,0.42),
    inset 0 -8px 18px rgba(107, 65, 6, 0.18) !important;
}

.support-widget-icon svg {
  width: 23px !important;
  height: 23px !important;
}

.support-widget-icon::after {
  right: 2px !important;
  bottom: 3px !important;
  width: 10px !important;
  height: 10px !important;
  border: 2px solid #33220d !important;
  background: #59d77d !important;
  box-shadow:
    0 0 0 4px rgba(89, 215, 125, 0.16),
    0 0 18px rgba(89, 215, 125, 0.36) !important;
}

.support-widget-pulse {
  inset: -10px !important;
  border-radius: 999px !important;
  background: radial-gradient(circle, rgba(218, 166, 69, 0.20), transparent 62%) !important;
  animation: supportCirclePulse 2.8s ease-in-out infinite !important;
}

@keyframes supportCirclePulse {
  0%, 100% {
    opacity: 0.45;
    transform: scale(0.96);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.13);
  }
}

@media (max-width: 620px) {
  .evolve-support-widget {
    width: 58px !important;
    height: 58px !important;
    min-width: 58px !important;
    min-height: 58px !important;
    right: 16px !important;
    bottom: 16px !important;
  }

  .support-widget-icon {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }
}


/* === FINAL: Footer Gold Script Slogan === */

.footer-slogan-art {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: clamp(28px, 4vw, 54px) auto 10px;
  pointer-events: none;
}

.footer-slogan-art img {
  display: block;
  width: min(620px, 86vw);
  height: auto;
  object-fit: contain;
  opacity: 0.96;
  filter:
    drop-shadow(0 10px 24px rgba(114, 73, 12, 0.18))
    contrast(1.04)
    saturate(1.06);
}

@media (max-width: 620px) {
  .footer-slogan-art {
    margin-top: 30px;
  }

  .footer-slogan-art img {
    width: min(430px, 92vw);
  }
}


/* === FINAL: CSS Gold Script Footer Slogan === */

.footer-slogan-art {
  display: none !important;
}

.footer-slogan-text {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;

  margin: clamp(30px, 4vw, 58px) auto 10px;

  font-family: "Great Vibes", "Segoe Script", "Brush Script MT", cursive !important;
  font-size: clamp(44px, 7vw, 96px) !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  letter-spacing: 0.01em !important;
  text-align: center !important;

  background:
    linear-gradient(
      180deg,
      #f9d989 0%,
      #d8a33d 28%,
      #9d6510 52%,
      #6f4308 72%,
      #d8a846 100%
    );
  -webkit-background-clip: text;
  background-clip: text;
  color: #b97a17;
  -webkit-text-fill-color: transparent;

  text-shadow:
    0 1px 0 rgba(255, 232, 165, 0.28),
    0 8px 22px rgba(118, 75, 10, 0.20),
    0 18px 48px rgba(118, 75, 10, 0.10);

  transform: rotate(-0.8deg);
  pointer-events: none;
}

.footer-slogan-text::before {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  font: inherit;
  letter-spacing: inherit;

  color: rgba(255, 226, 151, 0.22);
  -webkit-text-fill-color: rgba(255, 226, 151, 0.22);

  transform: translateY(-1px);
  filter: blur(0.35px);
  z-index: -1;
}

.footer-slogan-text::after {
  content: attr(data-text);
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;

  font: inherit;
  letter-spacing: inherit;

  color: rgba(93, 55, 5, 0.18);
  -webkit-text-fill-color: rgba(93, 55, 5, 0.18);

  transform: translate(2px, 3px);
  filter: blur(1.2px);
  z-index: -2;
}

@media (max-width: 620px) {
  .footer-slogan-text {
    font-size: clamp(42px, 13vw, 68px) !important;
    margin-top: 32px !important;
  }
}


/* === FINAL: Use Footer Slogan Image Instead Of CSS Text === */

.footer-slogan-text {
  display: none !important;
}

.footer-slogan-art {
  width: 100% !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  margin: clamp(28px, 4vw, 54px) auto 10px !important;
  pointer-events: none !important;
}

.footer-slogan-art img {
  display: block !important;
  width: min(620px, 86vw) !important;
  height: auto !important;
  object-fit: contain !important;
  opacity: 0.96 !important;
  filter:
    drop-shadow(0 10px 24px rgba(114, 73, 12, 0.18))
    contrast(1.04)
    saturate(1.06) !important;
}

@media (max-width: 620px) {
  .footer-slogan-art {
    margin-top: 30px !important;
  }

  .footer-slogan-art img {
    width: min(430px, 92vw) !important;
  }
}


/* === Adjust Footer Slogan Image Size === */

.footer-slogan-art img {
  width: min(480px, 76vw) !important;
}

@media (max-width: 620px) {
  .footer-slogan-art img {
    width: min(340px, 82vw) !important;
  }
}

