/* ================= Contact Info Cards ================= */
:root {
  --bg:    #07031A;
  --bg2:   #0D0825;
  --p1:    #7C4FFF;
  --p2:    #9D6FFF;
  --p3:    #C5AEFF;
  --pg:    #4A1FCC;
  --gold:  #C8A84B;
  --gold2: #E8C97A;
  --hi:    #F0ECFF;
  --mid:   #9B8EC4;
  --lo:    #4E476B;
  --bdr:   rgba(124,79,255,0.15);
  --bdrhi: rgba(124,79,255,0.35);
  --font:  'Space Grotesk', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); font-family: var(--font); color: var(--hi); }
 
/* ══════════════════════════════
   CONTACT SECTION
══════════════════════════════ */
.cs2 {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 24px;
  position: relative;
  overflow: hidden;
}
 
/* BG decoration */
.cs2__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
 
.cs2__blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); opacity: .10;
}
.cs2__blob--1 {
  width: 420px; height: 420px;
  background: #7C4FFF;
  top: -80px; left: -60px;
}
.cs2__blob--2 {
  width: 300px; height: 300px;
  background: #C8A84B;
  bottom: -60px; right: 10%;
  opacity: .06;
}
 
.cs2__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
 
/* Inner */
.cs2__inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
}
 
/* Eyebrow */
.cs2__eyebrow {
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  margin-bottom: 14px;
}
.cs2__eyebrow-line {
  height: 1px; width: 36px;
  background: linear-gradient(90deg, transparent, #7C4FFF);
}
.cs2__eyebrow-line.r {
  background: linear-gradient(90deg, #7C4FFF, transparent);
}
.cs2__eyebrow-txt {
  font-size: 11px; font-weight: 700;
  color: #9D6FFF; letter-spacing: .15em;
  text-transform: uppercase;
}
 
/* Title */
.cs2__title {
  text-align: center;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: #F0ECFF;
  margin-bottom: 10px;
  line-height: 1.15;
}
.cs2__title span {
  background: linear-gradient(120deg, #9D6FFF 0%, #E8C97A 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
/* Subtitle */
.cs2__sub {
  text-align: center;
  color: #9B8EC4;
  font-size: 15px;
  margin-bottom: 56px;
  line-height: 1.7;
}
 
/* Cards grid */
.cs2__wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
 
/* Card base */
.cs2__card {
  position: relative;
  background: linear-gradient(145deg, rgba(13,8,37,.95), rgba(10,5,29,.98));
  border: 1px solid var(--bdr);
  border-radius: 20px;
  padding: 38px 28px 32px;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s, box-shadow .3s;
}
.cs2__card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent, #7C4FFF), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.cs2__card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
  background: radial-gradient(ellipse at bottom center, var(--glow, rgba(124,79,255,.08)), transparent 70%);
  pointer-events: none;
}
.cs2__card:hover {
  border-color: var(--accent, rgba(124,79,255,.5));
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4), 0 0 40px var(--glow-shadow, rgba(124,79,255,.12));
}
.cs2__card:hover::before { opacity: 1; }
 
/* Card color variants */
.cs2__card.email   { --accent: #9D6FFF; --glow: rgba(124,79,255,.10); --glow-shadow: rgba(124,79,255,.15); }
.cs2__card.phone   { --accent: #E8C97A; --glow: rgba(200,168,75,.08); --glow-shadow: rgba(200,168,75,.12); }
.cs2__card.address { --accent: #4ADE80; --glow: rgba(74,222,128,.08); --glow-shadow: rgba(74,222,128,.10); }
 
/* Icon */
.cs2__icon-wrap {
  width: 72px; height: 72px;
  border-radius: 50%;
  margin: 0 auto 22px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  position: relative;
  transition: transform .3s;
}
.cs2__card:hover .cs2__icon-wrap { transform: scale(1.12) rotate(8deg); }
 
.cs2__card.email   .cs2__icon-wrap { background: rgba(124,79,255,.15); color: #9D6FFF; box-shadow: 0 0 28px rgba(124,79,255,.25); }
.cs2__card.phone   .cs2__icon-wrap { background: rgba(200,168,75,.12); color: #E8C97A; box-shadow: 0 0 28px rgba(200,168,75,.20); }
.cs2__card.address .cs2__icon-wrap { background: rgba(74,222,128,.10); color: #4ADE80; box-shadow: 0 0 28px rgba(74,222,128,.18); }
 
/* Spinning dashed ring */
.cs2__icon-ring {
  position: absolute; inset: -5px;
  border-radius: 50%;
  border: 1px dashed;
  opacity: .25;
  animation: spinRing 12s linear infinite;
}
.cs2__card.email   .cs2__icon-ring { border-color: #7C4FFF; }
.cs2__card.phone   .cs2__icon-ring { border-color: #C8A84B; }
.cs2__card.address .cs2__icon-ring { border-color: #4ADE80; }
 
@keyframes spinRing {
  to { transform: rotate(360deg); }
}
 
/* Label above heading */
.cs2__label {
  font-size: 10px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 8px;
}
.cs2__card.email   .cs2__label { color: #9D6FFF; }
.cs2__card.phone   .cs2__label { color: #E8C97A; }
.cs2__card.address .cs2__label { color: #4ADE80; }
 
/* Card heading */
.cs2__name {
  font-size: 18px; font-weight: 700;
  color: #F0ECFF;
  margin-bottom: 10px;
}
 
/* Divider */
.cs2__divider {
  width: 36px; height: 1px;
  margin: 14px auto;
  opacity: .2;
}
.cs2__card.email   .cs2__divider { background: #7C4FFF; }
.cs2__card.phone   .cs2__divider { background: #C8A84B; }
.cs2__card.address .cs2__divider { background: #4ADE80; }
 
/* Value text */
.cs2__val {
  font-size: 14px;
  color: #9B8EC4;
  line-height: 1.65;
}
.cs2__val a {
  color: #C5AEFF;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.cs2__val a:hover { color: #F0ECFF; }
 
/* Badge pill */
.cs2__badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 11px; font-weight: 600;
  margin-top: 14px;
  letter-spacing: .04em;
}
.cs2__card.email   .cs2__badge { background: rgba(124,79,255,.12); border: 1px solid rgba(124,79,255,.25); color: #9D6FFF; }
.cs2__card.phone   .cs2__badge { background: rgba(200,168,75,.10); border: 1px solid rgba(200,168,75,.22); color: #E8C97A; }
.cs2__card.address .cs2__badge { background: rgba(74,222,128,.08); border: 1px solid rgba(74,222,128,.20); color: #4ADE80; }
.cs2__badge i { font-size: 9px; }
 
/* Number watermark */
.cs2__num-bg {
  position: absolute; bottom: 8px; right: 14px;
  font-size: 56px; font-weight: 700;
  opacity: .04; line-height: 1;
  color: #fff; pointer-events: none;
  user-select: none;
}
 
/* Responsive */
@media (max-width: 640px) {
  .cs2__wrap { grid-template-columns: 1fr; }
}



/* /////////////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* /////////////////////////// section 3 ///////////////////////////// */
/* ================= Enquiry Section ================= */
:root {
  --bg:    #07031A;
  --p1:    #7C4FFF;
  --p2:    #9D6FFF;
  --pg:    #4A1FCC;
  --gold:  #C8A84B;
  --gold2: #E8C97A;
  --hi:    #F0ECFF;
  --mid:   #9B8EC4;
  --lo:    #4E476B;
  --bdrhi: rgba(124,79,255,0.35);
  --font:  'Space Grotesk', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); font-family: var(--font); color: var(--hi); }
 
.cs3 {
  background: var(--bg);
  padding: clamp(60px, 8vw, 100px) 24px;
  position: relative;
  overflow: hidden;
}
 
.cs3__bg { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.cs3__blob { position: absolute; border-radius: 50%; filter: blur(90px); }
.cs3__blob--1 { width: 460px; height: 460px; background: #7C4FFF; opacity: .09; bottom: -120px; right: -80px; }
.cs3__blob--2 { width: 320px; height: 320px; background: #C8A84B; opacity: .05; top: -60px; left: 5%; }
 
.cs3__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}
 
.cs3__inner {
  position: relative; z-index: 1;
  max-width: 1100px; margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 860px) { .cs3__inner { grid-template-columns: 1fr; } }
 
/* LEFT: Form */
.cs3__left {
  background: linear-gradient(145deg, rgba(13,8,37,.97), rgba(10,5,29,.99));
  border: 1px solid var(--bdrhi);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.cs3__left::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--p1) 40%, var(--gold2) 60%, transparent);
}
 
.cs3__eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.cs3__eyebrow-line { height: 1px; width: 32px; background: linear-gradient(90deg, var(--p1), transparent); }
.cs3__eyebrow-txt { font-size: 10px; font-weight: 700; color: var(--p2); letter-spacing: .15em; text-transform: uppercase; }
 
.cs3__title { font-size: clamp(22px, 3vw, 30px); font-weight: 700; color: var(--hi); margin-bottom: 28px; line-height: 1.2; }
.cs3__title span {
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 70%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
 
.cs3__group { position: relative; margin-bottom: 16px; width: 100%; }
.cs3__icon { position: absolute; top: 50%; left: 14px; transform: translateY(-50%); color: var(--lo); font-size: 14px; pointer-events: none; transition: color .25s; }
.cs3__group--ta .cs3__icon { top: 16px; transform: none; }
 
.cs3__group input,
.cs3__group textarea {
  width: 100%; display: block;
  padding: 14px 14px 14px 42px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(124,79,255,.2);
  border-radius: 10px;
  color: var(--hi); font-size: 14px; font-family: var(--font);
  outline: none;
  transition: border-color .25s, box-shadow .25s, background .25s;
}
.cs3__group textarea { resize: none; }
.cs3__group input::placeholder,
.cs3__group textarea::placeholder { color: var(--lo); }
.cs3__group input:focus,
.cs3__group textarea:focus {
  border-color: var(--p2);
  background: rgba(124,79,255,.06);
  box-shadow: 0 0 0 3px rgba(124,79,255,.12);
}
 
.cs3__btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 14px 32px; margin-top: 4px;
  background: linear-gradient(135deg, var(--p1), var(--pg));
  color: #fff; border: none; border-radius: 10px;
  font-family: var(--font); font-size: 14px; font-weight: 700;
  cursor: pointer; letter-spacing: .03em;
  box-shadow: 0 6px 24px rgba(124,79,255,.4);
  transition: transform .25s, box-shadow .25s;
  position: relative; overflow: hidden;
}
.cs3__btn::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.12), transparent);
}
.cs3__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(124,79,255,.5); }
.cs3__btn i { font-size: 14px; }
 
/* RIGHT: Image */
.cs3__right {
  position: relative;
  border-radius: 20px; overflow: hidden;
  border: 1px solid var(--bdrhi);
  min-height: 420px;
}
.cs3__right::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--p2) 60%, transparent);
  z-index: 2;
}
.cs3__right::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,3,26,.7) 0%, transparent 50%);
  pointer-events: none; z-index: 1;
}
 
.cs3__right img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
 
/* Floating badge over image */
.cs3__img-badge {
  position: absolute; bottom: 24px; left: 24px; z-index: 3;
  display: flex; align-items: center; gap: 10px;
  background: rgba(7,3,26,.85);
  border: 1px solid var(--bdrhi);
  border-radius: 12px; padding: 10px 16px;
  backdrop-filter: blur(8px);
}
.cs3__img-badge-icon {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(124,79,255,.2); color: var(--p2);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.cs3__img-badge-val { font-size: 13px; font-weight: 700; color: var(--hi); }
.cs3__img-badge-lbl { font-size: 10px; color: var(--mid); }
 
@media (max-width: 860px) { .cs3__right { min-height: 280px; } }
@media (max-width: 480px) { .cs3__left { padding: 28px 20px; } }

/* ///////////////////////////////////////////////////////////////////////////////////////////////////////////// */
/* //////////////////////////// section 4 ////////////////////////// */
/* ======= No-key Map styles ======= */
:root {
  --bg:    #07031A;
  --p1:    #7C4FFF;
  --p2:    #9D6FFF;
  --pg:    #4A1FCC;
  --gold:  #C8A84B;
  --gold2: #E8C97A;
  --hi:    #F0ECFF;
  --mid:   #9B8EC4;
  --lo:    #4E476B;
  --bdr:   rgba(124,79,255,0.15);
  --bdrhi: rgba(124,79,255,0.35);
  --font:  'Space Grotesk', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body { background: var(--bg); font-family: var(--font); color: var(--hi); }
 
/* ══════════════════════════════
   MAP SECTION
══════════════════════════════ */
.contact-section4 {
  background: var(--bg);
  padding: clamp(40px, 6vw, 80px) 20px;
  position: relative;
  overflow: hidden;
}
 
/* Subtle bg grid */
.contact-section4::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(124,79,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,79,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 20%, transparent 100%);
}
 
.map-wrap {
  max-width: 1180px;
  margin: 0 auto;
  position: relative; z-index: 1;
}
 
/* Header */
.map-head { margin-bottom: 20px; }
 
.map-head h2 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--hi);
  margin-bottom: 6px;
  line-height: 1.2;
}
.map-head h2 span {
  background: linear-gradient(120deg, var(--p2) 0%, var(--gold2) 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
 
.map-head p {
  color: var(--mid);
  font-size: 14px;
}
 
/* Controls */
.map-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.btn-group { display: flex; gap: 8px; flex-wrap: wrap; }
 
.map-btn {
  background: linear-gradient(135deg, rgba(13,8,37,.9), rgba(10,5,29,.95));
  color: var(--mid);
  border: 1px solid var(--bdr);
  padding: .5rem .9rem;
  border-radius: 10px;
  font-weight: 600;
  font-family: var(--font);
  font-size: 13px;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s, color .2s;
}
.map-btn:hover {
  transform: translateY(-2px);
  border-color: var(--bdrhi);
  color: var(--hi);
  box-shadow: 0 8px 20px rgba(0,0,0,.4);
}
.map-btn.is-active {
  background: linear-gradient(135deg, var(--p1), var(--pg));
  border-color: transparent;
  color: #fff;
  box-shadow: 0 4px 16px rgba(124,79,255,.4);
}
 
.map-btn.ghost {
  background: rgba(200,168,75,.08);
  border: 1px solid rgba(200,168,75,.25);
  color: var(--gold2);
}
.map-btn.ghost:hover {
  background: rgba(200,168,75,.14);
  box-shadow: 0 8px 20px rgba(200,168,75,.15);
}
 
/* Map split */
.map-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 54vh;
}
#leafletMap, #streetIframe {
  width: 100%; height: 54vh;
  border: 1px solid var(--bdrhi);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
 
.map-split.split #leafletMap,
.map-split.split #streetIframe { height: 60vh; }
 
@media (min-width: 960px) {
  .map-split.split { grid-template-columns: 1fr 1fr; }
}
 
.leaflet-control-zoom { border-radius: 10px; overflow: hidden; }