
/* =========================================
   Helal Salem Commercial Brokers
   Premium Light Gradient Theme (Concept B)
   ========================================= */

:root{
  --bg: #F6FAFF;
  --bg2: #F2F7FF;
  --surface: rgba(255,255,255,0.78);
  --surface-strong: rgba(255,255,255,0.92);
  --text: #0B1220;
  --muted: #5B6475;

  --primary: #1E63FF;
  --teal: #00B8D9;
  --gold: #C9A227;

  --stroke: rgba(12, 18, 32, 0.10);
  --shadow: 0 18px 40px rgba(14, 30, 68, 0.10);

  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;

  --container: 1120px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1100px 520px at 12% -10%, rgba(30,99,255,0.16), transparent 62%),
    radial-gradient(900px 520px at 88% 0%, rgba(0,184,217,0.16), transparent 58%),
    radial-gradient(820px 520px at 55% 105%, rgba(201,162,39,0.18), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg2) 100%);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.container{ width:min(var(--container), calc(100% - 40px)); margin:0 auto; }

::selection{ background: rgba(30,99,255,0.18); }

/* Top trust bar */
.trustbar{
  position: sticky;
  top:0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(246,250,255,0.7);
  border-bottom: 1px solid rgba(12, 18, 32, 0.08);
}
.trustbar .row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:10px 0;
}
.trustbar .pill{
  display:flex;
  align-items:center;
  gap:10px;
  color: var(--muted);
  font-size: 13px;
}
.trustbar .pill strong{ color: var(--text); font-weight: 650; }
.trustbar .badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:6px 10px;
  border-radius: 999px;
  background: rgba(201,162,39,0.13);
  border: 1px solid rgba(201,162,39,0.22);
  color: #6a5310;
  font-weight: 600;
}
.trustbar .quick{
  display:flex; align-items:center; gap:10px;
  font-size:13px; color: var(--muted);
}
.trustbar .quick a{
  color: var(--primary);
  font-weight: 650;
}

/* Header nav */
header.site-header{
  position: relative;
  z-index: 20;
}
.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0 6px;
}
.brand{
  display:flex;
  flex-direction:column;
  line-height:1.05;
}
.brand .name{
  font-weight: 800;
  letter-spacing: 0.2px;
  font-size: 18px;
}
.brand .sub{
  font-weight: 650;
  font-size: 12px;
  color: var(--muted);
}
.navlinks{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.navlinks a{
  font-size: 14px;
  color: var(--muted);
  padding:10px 12px;
  border-radius: 999px;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.navlinks a:hover{
  background: rgba(30,99,255,0.08);
  color: var(--text);
  transform: translateY(-1px);
}
.navlinks .cta{
  color: #0B1220;
  background: linear-gradient(135deg, rgba(201,162,39,0.26), rgba(30,99,255,0.10));
  border: 1px solid rgba(201,162,39,0.30);
  box-shadow: 0 10px 24px rgba(201,162,39,0.10);
}
.navlinks .cta:hover{
  background: linear-gradient(135deg, rgba(201,162,39,0.32), rgba(30,99,255,0.12));
}

/* Hero */
.hero{
  padding: 18px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}
.hero-card{
  border-radius: var(--radius-lg);
  padding: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,0.72), rgba(255,255,255,0.52));
  border: 1px solid rgba(12, 18, 32, 0.10);
  box-shadow: var(--shadow);
  position: relative;
  overflow:hidden;
}
.hero-card::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(560px 260px at 18% 10%, rgba(30,99,255,0.18), transparent 60%),
    radial-gradient(520px 260px at 80% 0%, rgba(0,184,217,0.16), transparent 60%),
    radial-gradient(420px 240px at 65% 110%, rgba(201,162,39,0.18), transparent 60%);
  pointer-events:none;
}
.hero-content{ position:relative; z-index:1; }
.kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 12px;
  border-radius: 999px;
  background: rgba(30,99,255,0.08);
  border: 1px solid rgba(30,99,255,0.12);
  color: var(--muted);
  font-weight: 650;
  font-size: 12.5px;
}
.kicker .dot{
  width:10px; height:10px; border-radius:999px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 10px 22px rgba(30,99,255,0.22);
}
.hero h1{
  margin: 14px 0 10px;
  font-size: clamp(28px, 4.2vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}
.hero p{
  margin: 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.7;
  max-width: 58ch;
}
.hero-actions{
  margin-top: 18px;
  display:flex;
  gap: 12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 750;
  font-size: 14px;
  border: 1px solid transparent;
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn-primary{
  background: linear-gradient(135deg, rgba(30,99,255,0.98), rgba(0,184,217,0.92));
  color: #fff;
  box-shadow: 0 18px 34px rgba(30,99,255,0.18);
}
.btn-primary:hover{ box-shadow: 0 22px 42px rgba(30,99,255,0.22); }
.btn-ghost{
  background: rgba(255,255,255,0.62);
  border-color: rgba(12,18,32,0.12);
  color: var(--text);
}
.btn-ghost:hover{
  background: rgba(255,255,255,0.78);
  border-color: rgba(30,99,255,0.18);
}

.hero-stats{
  margin-top: 18px;
  display:flex;
  gap: 10px;
  flex-wrap:wrap;
}
.stat{
  flex: 0 0 auto;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(12,18,32,0.10);
}
.stat .big{
  font-weight: 850;
  letter-spacing: -0.2px;
}
.stat .small{
  color: var(--muted);
  font-size: 12.5px;
  margin-top: 2px;
}

/* Service Showcase Carousel (Concept B) */
.showcase{
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(255,255,255,0.74), rgba(255,255,255,0.54));
  border: 1px solid rgba(12, 18, 32, 0.10);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.showcase-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding: 18px 18px 10px;
}
.showcase-title{
  margin:0;
  font-size: 16px;
  font-weight: 850;
  letter-spacing:-0.2px;
}
.showcase-sub{
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.carousel-controls{
  display:flex;
  gap:8px;
}
.iconbtn{
  width: 40px;
  height: 40px;
  border-radius: 999px;
  border: 1px solid rgba(12,18,32,0.12);
  background: rgba(255,255,255,0.70);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: transform .18s ease, background .18s ease;
}
.iconbtn:hover{ transform: translateY(-1px); background: rgba(255,255,255,0.86); }

.carousel{
  display:flex;
  gap: 12px;
  padding: 12px 18px 18px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: rgba(12,18,32,0.22) transparent;
}
.carousel::-webkit-scrollbar{ height: 10px; }
.carousel::-webkit-scrollbar-thumb{ background: rgba(12,18,32,0.20); border-radius:999px; }
.slide{
  scroll-snap-align: start;
  min-width: 320px;
  max-width: 360px;
  flex: 0 0 auto;
  border-radius: 22px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(12,18,32,0.10);
  overflow:hidden;
  position:relative;
  box-shadow: 0 14px 30px rgba(14,30,68,0.08);
  transition: transform .22s ease, box-shadow .22s ease;
}
.slide:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(14,30,68,0.12);
}
.slide .media{
  height: 170px;
  background: linear-gradient(135deg, rgba(30,99,255,0.14), rgba(0,184,217,0.10));
  position:relative;
}
.slide .media img{
  width:100%;
  height:100%;
  object-fit: cover;
}
.slide .media::after{
  content:"";
  position:absolute;
  inset:0;
  background: linear-gradient(180deg, rgba(255,255,255,0.0), rgba(255,255,255,0.72));
}
.slide .body{
  padding: 14px 14px 16px;
}
.slide .tag{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size: 12px;
  font-weight: 750;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(12,18,32,0.10);
  color: var(--muted);
  background: rgba(255,255,255,0.65);
}
.slide h3{
  margin: 10px 0 6px;
  font-size: 16px;
  letter-spacing:-0.2px;
}
.slide p{
  margin:0;
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.55;
}
.slide .link{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  color: var(--primary);
  font-weight: 850;
  font-size: 13.5px;
}
.slide .link span{
  width:28px; height:28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(30,99,255,0.10);
}

/* Sections */
.section{
  padding: 18px 0;
}
.section-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin: 10px 0 14px;
}
.section-title{
  margin:0;
  font-size: 22px;
  letter-spacing:-0.4px;
}
.section-subtitle{
  margin:0;
  color: var(--muted);
  max-width: 62ch;
  line-height: 1.6;
  font-size: 14px;
}

.grid{
  display:grid;
  gap: 14px;
}
.grid.services{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.card{
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.76);
  border: 1px solid rgba(12,18,32,0.10);
  box-shadow: 0 12px 26px rgba(14,30,68,0.07);
  overflow:hidden;
  position:relative;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.card:hover{
  transform: translateY(-3px);
  border-color: rgba(30,99,255,0.18);
  box-shadow: 0 18px 40px rgba(14,30,68,0.10);
}
.card .thumb{
  height: 140px;
  background: linear-gradient(135deg, rgba(30,99,255,0.14), rgba(201,162,39,0.12));
}
.card .thumb img{ width:100%; height:100%; object-fit:cover; }
.card .body{ padding: 14px; }
.card .body h4{ margin: 0 0 6px; font-size: 15.5px; letter-spacing:-0.2px; }
.card .body p{ margin:0; color: var(--muted); font-size: 13.4px; line-height:1.55; }
.card .meta{
  margin-top: 10px;
  display:flex; gap:8px; flex-wrap:wrap;
}
.chip{
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(12,18,32,0.10);
  color: var(--muted);
  background: rgba(255,255,255,0.64);
  font-weight: 700;
}

/* Licenses */
.licenses{
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.license{
  padding: 14px;
}
.license h4{
  margin:0 0 8px;
  font-size: 14.5px;
  letter-spacing:-0.2px;
}
.license .line{
  color: var(--muted);
  font-size: 12.7px;
  line-height: 1.55;
}
.license .verify{
  margin-top: 12px;
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight: 850;
  color: var(--primary);
  font-size: 13px;
}
.license .verify span{
  width:28px; height:28px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(201,162,39,0.16);
  color: #6a5310;
}

/* Team (7) */
.team{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.person{
  padding: 14px;
  text-align:center;
}
.avatar{
  width: 86px;
  height: 86px;
  margin: 6px auto 12px;
  border-radius: 999px;
  overflow:hidden;
  border: 2px solid rgba(30,99,255,0.18);
  box-shadow: 0 14px 30px rgba(30,99,255,0.10);
  background: linear-gradient(135deg, rgba(30,99,255,0.12), rgba(0,184,217,0.10));
}
.avatar img{ width:100%; height:100%; object-fit:cover; }
.person h4{ margin:0 0 4px; font-size: 14.8px; letter-spacing:-0.2px; }
.person .role{ color: var(--muted); font-weight: 750; font-size: 12.5px; margin-bottom: 8px; }
.person p{ margin:0; color: var(--muted); font-size: 13px; line-height: 1.5; }

/* Footer */
footer{
  padding: 26px 0 34px;
  color: var(--muted);
  font-size: 13px;
}
.footer-card{
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(12,18,32,0.10);
  box-shadow: var(--shadow);
  padding: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  flex-wrap:wrap;
}
.footer-card .left strong{ color: var(--text); }
.footer-card .right a{
  color: var(--primary);
  font-weight: 850;
}

/* Scroll reveal animation */
.reveal{
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view{
  opacity: 1;
  transform: translateY(0);
}

/* Subtle float accent */
@keyframes floaty{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
.floaty{ animation: floaty 4.6s ease-in-out infinite; }

@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .grid.services{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .licenses{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .team{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 520px){
  .nav{ flex-direction:column; align-items:flex-start; }
  .navlinks{ justify-content:flex-start; }
  .grid.services{ grid-template-columns: 1fr; }
  .licenses{ grid-template-columns: 1fr; }
  .team{ grid-template-columns: 1fr; }
  .slide{ min-width: 84vw; }
}


/* Forms */
.form-group{ display:flex; flex-direction:column; gap:8px; }
.form-group label{ font-size: 13px; font-weight: 750; color: var(--text); }
.form-group input, .form-group select, .form-group textarea{
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(12,18,32,0.12);
  background: rgba(255,255,255,0.72);
  outline: none;
  font-size: 14px;
  color: var(--text);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus{
  border-color: rgba(30,99,255,0.35);
  box-shadow: 0 0 0 4px rgba(30,99,255,0.10);
}
.form-group textarea{ min-height: 120px; resize: vertical; }

/* Price chip */
.price-chip{
  background: rgba(255,255,255,0.85) !important;
  border: 1px dashed rgba(12,18,32,0.18);
}
.price-label{
  font-weight: 800;
  font-size: 12px;
  margin-right: 6px;
  opacity: .9;
}
.price-value{
  font-weight: 900;
}
/* Responsive service grid helper */
@media (max-width: 1100px){
  .grid.services[style*="repeat(3"]{ grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
}
@media (max-width: 720px){
  .grid.services[style*="repeat(3"]{ grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
}

/* Listing cards */
.card.listing .thumb img{
  aspect-ratio: 16/9;
  object-fit: cover;
}
