



/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */

/* ── Intro strip ────────────────────────────────────────── */
.ct-intro-strip {
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;
}

.ct-intro-inner {
  max-width: 780px;
  margin: 0 auto;
  border-left: 4px solid var(--purple);
  padding-left: 28px;

  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}

.ct-intro-inner strong {
  color: var(--purple);
  font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   MAIN LAYOUT
═══════════════════════════════════════════════════════════ */

.ct-main-section {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 60px;

  align-items: start;

  max-width: 1280px;
  margin: 0 auto;

  padding: 72px 60px 80px;
}

/* ─────────────────────────────────────────────
   LEFT COLUMN
───────────────────────────────────────────── */

.ct-info-col {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ct-reach-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ═══════════════════════════════════════════════
   PREMIUM LEFT CARDS
═══════════════════════════════════════════════ */
.ct-connect-card .btn
{
  width:fit-content;
  min-width:190px;
  margin-top: 20px;
  margin-left: 80px;
}
.ct-connect-card,
.ct-trust-card {
  position: relative;
  overflow: hidden;

  padding: 28px 26px;

  background: rgba(255,255,255,0.92);

  border: 1px solid rgba(120,78,144,0.12);

  border-radius: 24px;

  box-shadow:
    0 10px 35px rgba(17,12,34,0.05);

  backdrop-filter: blur(10px);

  transition:
    transform .35s ease,
    box-shadow .35s ease,
    border-color .35s ease;
}

.ct-connect-card::after,
.ct-trust-card::after{
  content:"";

  position:absolute;

  width:220px;
  height:220px;

  top:-120px;
  right:-120px;

  border-radius:50%;

  background:
    radial-gradient(
      rgba(120,78,144,0.08),
      transparent 70%
    );

  pointer-events:none;
}

.ct-connect-card:hover,
.ct-trust-card:hover{
  transform:translateY(-5px);

  border-color:rgba(120,78,144,0.22);

  box-shadow:
    0 24px 60px rgba(17,12,34,0.08);
}

/* ─────────────────────────────────────────────
   CARD HEIGHTS
───────────────────────────────────────────── */

.ct-connect-card{
  min-height:420px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;
}

.ct-trust-card{
  min-height:260px;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #faf7ff 100%
    );
}

/* ─────────────────────────────────────────────
   EYEBROW
───────────────────────────────────────────── */

.ct-card-eyebrow{
  display:flex;
  align-items:center;
  gap:10px;

  margin-bottom: -10px;

  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
  text-transform:uppercase;

  color:var(--purple);

  font-family:'Outfit',sans-serif;
}

.ct-card-eyebrow::before{
  content:"";

  width:22px;
  height:2px;

  background:var(--purple);

  border-radius:10px;
}

/* ─────────────────────────────────────────────
   CONNECT CARD
───────────────────────────────────────────── */

.ct-connect-title{
  font-size: 20px;
  color:var(--text);
  font-family:'Outfit',sans-serif;
  margin-top:10px;
  margin-left:-7px;
}

.ct-connect-title span{
  color:var(--purple);
}

.ct-trust-title{
  margin-top:-20px;
}
.ct-connect-text{
  font-size:12px;
  line-height:1;

  color:#676767;

  margin-top:-30px;

  max-width:95%;
}

/* ─────────────────────────────────────────────
   CONNECT ITEMS
───────────────────────────────────────────── */

.ct-connect-list{
  display:flex;
  flex-direction:column;
  gap:14px;

  margin-bottom:24px;
}

.ct-connect-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.ct-connect-icon{
  width:40px;
  height:40px;

  border-radius:14px;

  background:
    linear-gradient(
      180deg,
      #f3eaff 0%,
      #ede2ff 100%
    );

  border:1px solid rgba(120,78,144,0.12);

  display:flex;
  align-items:center;
  justify-content:center;

  color:var(--purple);

  flex-shrink:0;
}

.ct-connect-label{
  font-size:10px;
  font-weight:700;
  letter-spacing:1.4px;
  text-transform:uppercase;

  color:#8b8b8b;

  margin-bottom:3px;
}

.ct-connect-item a{
  display:block;

  font-size:15px;
  font-weight:600;

  color:var(--text);

  text-decoration:none;

  margin-bottom:2px;

  transition:color .25s ease;
}

.ct-connect-item a:hover{
  color:var(--purple);
}

.ct-connect-item span{
  display:block;

  font-size:12px;
  line-height:1.6;

  color:#777;
}
/* ─────────────────────────────────────────────
   BROCHURE CARD
───────────────────────────────────────────── */

.ct-brochure-list{
  display:flex;
  flex-direction:column;
  gap:5px;

}

.ct-brochure-item{
  display:flex;
  align-items:center;
  gap:5px;
  padding:10px;

  border-radius:18px;
  
  background:rgba(255,255,255,0.72);

  border:1px solid var(--gold) ;

  text-decoration:none;

  transition:
    transform .3s ease,
    border-color .3s ease,
    box-shadow .3s ease;
}

.ct-brochure-item:hover{
  transform:translateY(-3px);

  border-color:rgba(120,78,144,0.18);

  box-shadow:
    0 10px 24px rgba(17,12,34,0.06);
}

.ct-brochure-icon{
  width:40px;
  height:40px;

  border-radius:14px;

  display:flex;
  align-items:center;
  justify-content:center;

  flex-shrink:0;

  color:var(--purple);

  background:
    linear-gradient(
      180deg,
      #f3eaff 0%,
      #ede2ff 100%
    );

  border:1px solid rgba(120,78,144,0.10);
}

.ct-brochure-content{
  flex:1;
  min-width:0;
}

.ct-brochure-content strong{
  display:block;

  font-family:'Outfit',sans-serif;

  font-size:15px;
  font-weight:600;

  color:var(--text);

  margin-bottom:4px;
}

.ct-brochure-content span{
  display:block;

  font-family:'Outfit',sans-serif;

  font-size:12px;

  color:#777;
}

.ct-brochure-download{
  font-family:'Outfit',sans-serif;

  font-size:10px;
  font-weight:700;

  letter-spacing:1px;
  text-transform:uppercase;

  color:var(--purple);

  flex-shrink:0;
}


/* ═══════════════════════════════════════════════
   FORM CARD
═══════════════════════════════════════════════ */

.ct-form-card {
  background: var(--white);
  border: 1px solid var(--border);

  border-radius: var(--radius-lg);

  padding: 20px 40px;

  box-shadow: var(--shadow-md);
}

.ct-form-header {
  margin-bottom: 10px;
}

.ct-form-title {
  font-family: 'Outfit', sans-serif;

  font-size: clamp(28px, 3vw, 40px);
  font-weight: 700;

  color: var(--text);

  line-height: 1.1;

  margin: 0px 0 8px;
}

.ct-form-title .accent {
  color: var(--purple);
}

.ct-form-subtitle {
  font-family: 'Outfit', sans-serif;

  font-size: 14px;
  color: #606060;

  font-weight: 300;
}

/* ─────────────────────────────────────────────
   FORM LAYOUT
───────────────────────────────────────────── */

.ct-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.ct-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.ct-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.ct-field label {
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  letter-spacing: 0.2px;
}

.ct-required {
  color: var(--purple);
}

/* ─────────────────────────────────────────────
   INPUTS
───────────────────────────────────────────── */

.ct-input-wrap {
  position: relative;
  display: flex;
  align-items: center;

  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);

  background: var(--bg);

  transition:
    border-color 0.22s,
    box-shadow 0.22s,
    background 0.22s;

  overflow: hidden;
}

.ct-input-wrap.focused {
  border-color: var(--purple);
  background: var(--white);

  box-shadow:
    0 0 0 3px rgba(120,78,144,0.1);
}

.ct-input-icon {
  position: absolute;
  left: 14px;

  color: var(--muted);

  flex-shrink: 0;
  pointer-events: none;

  transition: color 0.2s;
}

.ct-input-wrap.focused .ct-input-icon {
  color: var(--purple);
}

.ct-input-wrap input,
.ct-input-wrap select,
.ct-input-wrap textarea {
  width: 100%;

  padding: 13px 16px 13px 40px;

  font-family: 'Outfit', sans-serif;
  font-size: 14px;

  color: var(--text-mid);

  background: transparent;

  border: none;
  outline: none;
  resize: none;
}

.ct-input-wrap input::placeholder,
.ct-input-wrap textarea::placeholder {
  color: #999;
  font-weight: 300;
}

/* Select */

.ct-select-wrap select {
  appearance: none;
  -webkit-appearance: none;

  cursor: pointer;

  padding-right: 36px;
}

.ct-select-chevron {
  position: absolute;
  right: 12px;

  color: var(--muted);

  pointer-events: none;
  flex-shrink: 0;
}

/* Textarea */

.ct-textarea-wrap {
  align-items: flex-start;
}

.ct-textarea-wrap .ct-input-icon {
  top: 14px;
}

.ct-textarea-wrap textarea {
  padding-top: 13px;
  line-height: 1.7;
}

/* Errors */

.ct-error {
  display: none;

  font-family: 'Outfit', sans-serif;
  font-size: 12px;

  color: #c0392b;
  font-weight: 500;
}

/* Footer */

.ct-form-footer {
  display: flex;
  align-items: center;
  gap: 24px;

  flex-wrap: wrap;

  padding-top: 4px;
}

.ct-submit-btn {
  min-width: 180px;
  justify-content: center;
}

.ct-privacy-note {
  display: flex;
  align-items: center;
  gap: 6px;

  font-family: 'Outfit', sans-serif;
  font-size: 12px;

  color: var(--muted);
}

.ct-privacy-note svg {
  color: var(--gold);
  flex-shrink: 0;
}

/* Success */

.ct-form-success {
  display: none;

  align-items: flex-start;
  gap: 18px;

  padding: 28px;

  background: #f0faf4;

  border: 1px solid #a8d5b5;
  border-radius: var(--radius-md);

  animation: solFadeIn 0.4s ease forwards;
}

.ct-success-icon {
  width: 52px;
  height: 52px;

  border-radius: 50%;

  background: #2ecc71;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;

  color: #fff;
}

.ct-form-success strong {
  font-family: 'Outfit', sans-serif;

  font-size: 16px;

  color: #1a5c33;

  display: block;

  margin-bottom: 4px;
}

.ct-form-success p {
  font-family: 'Outfit', sans-serif;

  font-size: 13.5px;

  color: #2d7a4a;

  line-height: 1.6;
}



/* ── Map section ────────────────────────────────────────── */
.ct-map-section {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 60px;
}
.ct-map-header {
  text-align: center;
  margin-bottom: 52px;
}
.ct-map-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 1160px;
  margin: 0 auto;
}
#panvelMap,
#mulundMap{
    width:100%;
    height:200px;
}

.leaflet-container{
    width:100%;
    height:100%;
}

.purple-soil-marker{
    width:22px;
    height:22px;
    background:#7030a0;
    border:3px solid #fff;
    border-radius:50%;
    box-shadow:0 4px 12px rgba(0,0,0,.25);
}
.ct-office-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ct-office-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.ct-office-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--purple);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 var(--radius-sm) 0;
  margin: 0;
}
.ct-office-badge--gold { background: var(--gold); }

.ct-office-name {
font-family: 'Outfit', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-mid);
  margin: 16px 24px 8px;
}
.ct-office-addr {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.85;
  margin: 0 24px 16px;
}
.ct-office-links {
  display: flex;
  gap: 20px;
  padding: 0 24px 20px;
  flex-wrap: wrap;
}
.ct-office-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--purple);
  transition: gap 0.2s;
}
.ct-office-link:hover { gap: 9px; color: var(--gold); }
.ct-office-link svg { flex-shrink: 0; }

.ct-office-map {
  border-top: 1px solid var(--border);
  overflow: hidden;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}
.ct-office-map iframe { display: block; }

/* ── FAQ section ────────────────────────────────────────── */
.ct-faq-section {
  padding: 40px 60px;
  background: var(--white);
}
.ct-faq-inner { max-width: 860px; margin: 0 auto; }
.ct-faq-header { margin-bottom: 44px; }

.ct-faq-list { display: flex; flex-direction: column; gap: 2px; }

.ct-faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.25s;
  margin-bottom: 10px;
}
.ct-faq-item.open { border-color: rgba(120,78,144,0.3); }

.ct-faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg);
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s, color 0.2s;
}
.ct-faq-trigger:hover { background: var(--gold-pale); color: var(--purple); }
.ct-faq-item.open .ct-faq-trigger {
  background: var(--purple);
  color: #fff;
}

.ct-faq-icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--gold);
}
.ct-faq-item.open .ct-faq-icon {
  transform: rotate(180deg);
  color: var(--gold-light);
}

.ct-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 24px;
  
}
.ct-faq-item.open .ct-faq-body {
  max-height: 300px;
  padding: 20px 24px 24px;
}
.ct-faq-body p {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.85;
  font-weight: 300;
}
.ct{margin-top:40px}
/* ══════════════════════════════════════════════════════════
   FAQ SECTION — CITYSCAPE ADDITION
   Paste these rules into main.css, replacing / appending to
   the existing  /* ── FAQ section ──  block (line ~3607).
══════════════════════════════════════════════════════════ */

/* ── FAQ section shell ── */
.ct-faq-section {
  /* keep existing padding/background, just add: */
  position: relative;
  overflow: visible;           /* lets cityscape overflow the bottom edge   */
  padding-bottom: 170px;           /* cityscape fills the bottom — no gap       */

  /* match the contact-stripe gradient so the cityscape blends naturally   */
  background: linear-gradient(135deg, var(--gold-pale) 0%, #ede8e0 50%, var(--purple-pale) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ── FAQ cityscape container ── */
.faq-cityscape-layers {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 101%;
  height: 100%;
  pointer-events: none;
  z-index: 0;              /* sits behind inner content  */
}

/* ── Keep content above the cityscape ── */
.ct-faq-inner {
  position: relative;
  z-index: 2;
}

/* ── Layer images — identical colour treatment to contact-stripe ── */
.faq-cityscape-layers .layer {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: auto;
  display: block;

  filter:
    brightness(0)
    saturate(100%)
    invert(7%)
    sepia(42%)
    saturate(2600%)
    hue-rotate(236deg)
    brightness(0.82);
}

.faq-cityscape-layers .layer.skyline      { z-index: 1; opacity: 0.90; }
.faq-cityscape-layers .layer.towers-mid   { z-index: 2; opacity: 0.75; }
.faq-cityscape-layers .layer.towers-front { z-index: 3; opacity: 0.9;  left: 480px; }
.faq-cityscape-layers .layer.towers-fill  { z-index: 3; opacity: 0.9;  left: -560px; }
.faq-cityscape-layers .layer.trees        { z-index: 4; opacity: 1; }

/* ══ CONTACT PAGE — HOW WE WORK / PROCESS LIST ══════════════════ */
.ct-process-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 15px 0 4px;
}

.ct-process-item {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  position: relative;
}

.ct-process-icon-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 40px;
}

.ct-process-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(106, 57, 183, 0.10);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple);
  flex-shrink: 0;
}

/* Dashed vertical line that grows to fill the remaining row height */
.ct-process-connector {
  flex: 1;
  width: 2px;
  min-height: 24px;
  border-left: 2px dashed rgba(106, 57, 183, 0.25);
  margin-top: 6px;
}

/* Right column: number + title + description */
.ct-process-content {
  flex: 1;
  padding: 2px 0 2px;
  min-width: 0;
}

.ct-process-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: .06em;
  flex-shrink: 0;
}

.ct-process-title-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 3px;
}

.ct-process-title-row strong {
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.12;
}

.ct-process-content span {
  font-size: 11.5px;
  color: #6b7280;
  line-height: 1.12;
  display: block;
}

.ct-process-divider {
  border: none;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin: 14px 0;
}
/* ── BROCHURE CARD — compact override ────────────────────────── */
.ct-brochure-card.ct-trust-card {
  min-height: unset;
  padding: 20px 20px;
  justify-content: flex-start;
  gap: 0;
}

.ct-brochure-card .ct-card-eyebrow  { margin-bottom: 4px !important; }
.ct-brochure-card .ct-trust-title   { margin-top: 0 !important; margin-bottom: 4px !important; }
.ct-brochure-card .ct-connect-text  { margin-top: 0 !important; margin-bottom: 12px !important; font-size: 13px; }

/* ── reCAPTCHA widget spacing ──────────────────────────────── */
.ct-recaptcha-wrap {
  margin-bottom: 16px;
}
.ct-recaptcha-wrap .ct-error {
  margin-top: 6px;
}


