
/* Hero section start==================================== */
:root{
  --commercial-primary:var(--clr-primary);
  --commercial-primary-2:var(--clr-black);
  --commercial-white:var(--clr-white);
  --commercial-black:var(--clr-black);
  --commercial-ink:#000000;
  --commercial-muted:#667085;
  --commercial-font:'Poppins';
}

/* Reset */
*{box-sizing:border-box}
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  color:var(--commercial-ink);
  background:#ffffff;
}
.commercial-container{
  max-width:1200px;
  margin:0 auto;
  padding:0 18px;
}

/* ===== HERO SINGLE SECTION ===== */
.commercial-hero{
  position:relative;
  padding:90px 0 90px;
  text-align:center;
  overflow:hidden;
  background:
    radial-gradient(900px 420px at 50% 10%, rgba(39,171,226,.25), rgba(39,171,226,0) 60%),
    radial-gradient(700px 380px at 80% 30%, rgba(39,171,226,.12), rgba(39,171,226,0) 65%),
    linear-gradient(180deg, #F7FCFF 0%, #FFFFFF 80%);
}

/* Soft glow */
.commercial-hero::before{
  content:"";
  position:absolute;
  inset:-200px;
  background:
    radial-gradient(circle at 50% 20%, rgba(39,171,226,.18), rgba(39,171,226,0) 60%);
  pointer-events:none;
}

/* Pill */
.commercial-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(39,171,226,.25);
    background: rgba(39,171,226,.08);
    color: var(--commercial-primary-2);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: .2px;
}
.commercial-pillDot{
  width:10px;height:10px;border-radius:50%;
  background:var(--commercial-primary);
  box-shadow:0 0 0 6px rgba(39,171,226,.14);
}

/* Title */
.commercial-title {
    margin: 22px 0 14px;
    font-size: clamp(32px, 4.5vw, 56px);
    line-height: 1.05;
    letter-spacing: -.03em;
    color: var(--clr-black);
    font-family: var(--commercial-font);
 }

/* Subtitle */
.commercial-sub {
    margin: 0 auto 14px;
    max-width: 720px;
    font-size: 18px;
    font-weight: 600;
    color: var(--commercial-black);
    font-family: var(--commercial-font);
}

/* Description */
.commercial-desc{
  margin:0 auto 30px;
  max-width:760px;
  line-height:1.7;
  font-size:15px;
  color:var(--commercial-muted);
}

/* Button */
.commercial-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    color: #fff;
    background: var(--commercial-primary);
    box-shadow: 0 18px 30px rgba(39,171,226,.25);
    transition: .2s ease;
}
.commercial-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 22px 38px rgba(39,171,226,.32);
}
.commercial-arrow{
  font-size:18px;
  transform:translateY(-1px);
}

/* Responsive */
@media (max-width:768px){
  .commercial-hero{padding:70px 0}
  .commercial-sub{font-size:16px}
}
@media (max-width:480px){
  .commercial-hero{padding:60px 0}
  .commercial-title{font-size:34px}
  .commercial-desc{font-size:14px}
  .commercial-btn{width:100%;justify-content:center}
}
/* Hero section end==================================== */

/* popup button start==================================== */


/* button */

/* =========================
   BUTTON
========================= */
.commercial-btn-wrap{
  width:100%;
  display:flex;
  justify-content:center;
  padding: 18px 0;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.commercial-cta-btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  padding: 14px 28px;
  border-radius: 12px;
  background: linear-gradient(135deg,#18a7d1,#0f8fbb);
  color:#fff;
  font-weight:700;
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(0,0,0,.14);
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
}
.commercial-cta-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(0,0,0,.18);
  filter: brightness(1.02);
}
.commercial-cta-btn:active{
  transform: translateY(0);
  box-shadow: 0 10px 22px rgba(0,0,0,.14);
}
/* form */
.commercial-modal{
  position:fixed;
  inset:0;
  z-index:99999;
  display:none;
  font-family:"Poppins",system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.commercial-modal.is-open{ display:block; }

.commercial-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(15,23,42,.65);
  backdrop-filter: blur(6px);
  animation: sellFade .18s ease forwards;
}

.commercial-modal__dialog{
  position:relative;
  width:min(1040px, calc(100% - 24px));
  margin: 40px auto;
  background:#fff;
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.35);
  transform: translateY(10px) scale(.98);
  opacity:0;
  animation: sellPop .22s ease forwards;
}

.commercial-modal__close{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.85);
  cursor:pointer;
  font-size:18px;
  line-height:1;
  display:grid;
  place-items:center;
  z-index:5;
}
.commercial-modal__close:hover{ background:#fff; }

.commercial-modal__grid{
  display:flex;
  min-height: 640px;
}

/* left */
.commercial-modal__left{
  flex: 1 1 58%;
  padding: 28px 28px 22px;
}

.commercial-modal__title{
  margin:0 0 16px;
  font-size: 28px;
  line-height:1.15;
  letter-spacing:-.3px;
  color:#0f172a;
  font-weight:800;
}
.commercial-modal__title span{ color:#0f8fbb; }

.commercial-form{ display:flex; flex-direction:column; gap: 14px; }
.commercial-field{ display:flex; flex-direction:column; gap: 8px; }
.commercial-label{ font-size: 13px; font-weight:600; color:#0f172a; }
.commercial-req{ color:#e11d48; }

.commercial-input,
.commercial-textarea,
.commercial-select{
  width:100%;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 12px 12px;
  font-size: 14px;
  outline:none;
  background:#fff;
}
.commercial-input:focus,
.commercial-textarea:focus,
.commercial-select:focus{
  border-color: rgba(15,143,187,.55);
  box-shadow: 0 0 0 4px rgba(15,143,187,.14);
}

.commercial-textarea{ resize: vertical; min-height: 110px; }

.commercial-phone{
  display:flex;
  gap:10px;
}
.commercial-select{
  width: 140px;
  cursor:pointer;
}
.commercial-input--phone{ flex:1; }

.commercial-check{
  display:flex;
  gap:10px;
  align-items:flex-start;
  font-size: 12.5px;
  color:#475569;
  line-height:1.55;
}
.commercial-check input{ margin-top: 3px; }

.commercial-submit{
  margin-top: 6px;
  border:0;
  cursor:pointer;
  padding: 14px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg,#18a7d1,#0f8fbb);
  color:#fff;
  font-weight:800;
  font-size: 14px;
  letter-spacing:.2px;
  box-shadow: 0 16px 40px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}
.commercial-submit:hover{
  transform: translateY(-1px);
  box-shadow: 0 22px 60px rgba(0,0,0,.20);
}
.commercial-submit:active{ transform: translateY(0); }

.commercial-legal{
  margin: 6px 0 0;
  font-size: 12px;
  color:#64748b;
  line-height:1.6;
}
.commercial-legal a{
  color:#0f8fbb;
  text-decoration: underline;
}

/* right */
.commercial-modal__right{
  flex: 1 1 42%;
  background: #e9f7ff;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 0;
}

.commercial-agent{
  width:100%;
  height:100%;
  position:relative;
  overflow:hidden;
}
.commercial-agent__img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.commercial-agent__shape{
  position:absolute;
  inset:auto -30% -30% auto;
  width: 380px;
  height: 380px;
  background: rgba(24,167,209,.35);
  border-radius: 999px;
  filter: blur(0px);
}

/* animations */
@keyframes sellFade{
  from{ opacity:0; }
  to{ opacity:1; }
}
@keyframes sellPop{
  to{
    transform: translateY(0) scale(1);
    opacity:1;
  }
}

/* responsive */
@media (max-width: 980px){
  .commercial-modal__dialog{ margin: 18px auto; }
  .commercial-modal__grid{ flex-direction:column; min-height:unset; }
  .commercial-modal__right{ min-height: 260px; }
  .commercial-modal__left{ padding: 22px 18px 18px; }
  .commercial-modal__title{ font-size: 22px; }
}
@media (max-width: 520px){
  .commercial-phone{ flex-direction:column; }
  .commercial-select{ width:100%; }
}
/* form end */


/* hero secntion end end==================================== */

/* Who we are start start==================================== */
  :root{
    --commercial-primary:#27ABE2;
    --commercial-ink:#0B1220;
    --commercial-muted:#6B7280;
    --commercial-border:#EEF2F6; /* lighter border */
    --commercial-bg:#F8FBFD;
    --commercial-card:#ffffff;
    --commercial-shadow: 0 10px 24px rgba(16,24,40,.06);
    --commercial-radius:18px;
  }

 .commercial-who {
    padding: 70px 0;
    background: #0000000f;
    font-family: "Poppins", sans-serif;
}

  .commercial-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 18px;
  }

  /* Header */
  .commercial-whoHead{
    text-align:center;
    max-width:820px;
    margin:0 auto 34px;
  }

  .commercial-whoTitle{
    margin:0 0 12px;
    font-size: clamp(24px, 2.8vw, 36px);
    letter-spacing:-.02em;
    color:var(--commercial-ink);
    font-weight:600;
  }

  .commercial-whoDesc{
    margin:0;
    font-size:15px;
    line-height:1.7;
    color:var(--commercial-muted);
  }

  /* Cards */
  .commercial-whoGrid{
    display:flex;
    flex-wrap:wrap;
    gap:18px;
    justify-content:center;
  }

  .commercial-whoCard{
    flex:1 1 250px;
    max-width:280px;
    min-width:230px;
    background:var(--commercial-card);
    border:1px solid var(--commercial-border); /* lighter border */
    border-radius:var(--commercial-radius);
    box-shadow:var(--commercial-shadow);
    padding:26px 20px;
    text-align:center;
    transition:.18s ease;
    font-family:"Poppins", sans-serif;
  }

  .commercial-whoCard:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 32px rgba(16,24,40,.08);
  }

  .commercial-whoIcon{
    width:54px;height:54px;
    margin:0 auto 14px;
    border-radius:16px;
    background:rgba(39,171,226,.08);
    border:1px solid rgba(39,171,226,.14);
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .commercial-whoIcon svg{
    width:26px;height:26px;
    stroke:var(--commercial-primary);
  }

  .commercial-whoValue{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:var(--commercial-ink);
    letter-spacing:-.01em;
  }

  .commercial-whoLabel{
    margin:6px 0 0;
    font-size:13px;
    color:var(--commercial-muted);
    line-height:1.5;
    font-weight:400;
  }

  /* Extra badges */
  .commercial-whoExtra{
    margin-top:28px;
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    justify-content:center;
  }

  .commercial-whoBadge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:10px 14px;
    border-radius:999px;
    border:1px solid var(--commercial-border);
    background:#fff;
    font-size:13px;
    color:#1F2937;
    font-weight:500;
    font-family:"Poppins", sans-serif;
  }

  .commercial-whoBadge i{
    width:8px;height:8px;border-radius:50%;
    background:var(--commercial-primary);
    box-shadow:0 0 0 5px rgba(39,171,226,.10);
    display:inline-block;
  }

  /* Responsive */
  @media (max-width:520px){
    .commercial-who{padding:55px 0}
    .commercial-whoCard{max-width:100%}
  }
/* Who we are start end==================================== */

/* We help you start==================================== */
  :root{
    --commercial-primary: var(--clr-primary);
    --commercial-primary-2:var(--clr-primary);
    --commercial-ink:var(--clr-black);
    --commercial-muted:#667085;
    --commercial-border:rgba(11,18,32,.08);
    --commercial-bg: var(--clr-white);
    --commercial-card: var(--clr-white);
    --commercial-radius:16px;
  }

  .commercial-container{
    max-width:1200px;
    margin:0 auto;
    padding:0 18px;
    font-family:"Poppins",sans-serif;
  }

  .commercial-help{
    padding:70px 0;
    background:var(--commercial-bg);
  }

  /* Head (center like image) */
  .commercial-helpHead{
    text-align:center;
    max-width:820px;
    margin:0 auto 34px;
  }

  .commercial-helpTitle {
    margin: 0 0 14px;
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--commercial-ink);
}

  .commercial-helpSub{
    margin:0;
    font-size:14px;
    line-height:1.8;
    color:var(--commercial-ink);
    opacity:.85;
  }

  /* Grid like screenshot: 2 columns desktop, 2 columns tablet, 1 column mobile */
  .commercial-helpGrid {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    justify-content: space-between;
}

  .commercial-helpCard{
    flex:0 0 calc(50% - 11px); /* 2 cards per row */
    border:1px solid var(--commercial-border);
    border-radius:var(--commercial-radius);
    background:var(--commercial-card);
    padding:26px 24px;
    display:flex;
    gap:18px;
    align-items:flex-start;
    min-width:280px;
  }

  /* Icon like screenshot (simple line icon, no heavy bg) */
  .commercial-helpIcon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    flex:0 0 auto;
  }
  .commercial-helpIcon svg{
    width:44px;
    height:44px;
    stroke:var(--commercial-primary);
  }

  .commercial-helpContent h3{
    margin:0 0 10px;
    font-size:20px;
    font-weight:800;
    color:var(--commercial-ink);
    letter-spacing:-.01em;
  }

  .commercial-helpContent p{
    margin:0;
    font-size:14px;
    line-height:1.9;
    color:var(--commercial-ink);
    opacity:.78;
  }
  
.commercial-helpCard {
    flex: 0 0 calc(49% - 1px);
}

  /* Tablet stays 2 */
  @media (max-width: 992px){
    .commercial-helpCard{flex:0 0 calc(50% - 11px);}
  }

  /* Mobile 1 */
  @media (max-width: 560px){
    .commercial-help{padding:54px 0}
    .commercial-helpCard{flex:0 0 100%;}
    .commercial-helpTitle{font-size:30px}
  }
/* We help you end ==================================== */

/* Recent COmmercial Property */
.reaf-front-head {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.commercial-recent {
    padding: 60px 0px;
}

section.container.commercial-recent h2 {
    display: flex;
    text-align: center;
    align-items: center;
}
.reaf-front-head p {
    display: flex;
    justify-content: center;
}