/* ✅ RESET (yeh na hoga to links blue/underline rahenge) */
*{ margin:0; padding:0; box-sizing:border-box; }
body{ font-family: Arial, sans-serif; }
a{ color: inherit; text-decoration: none; }

/* variables */
:root{
  --orange:#f26b1d;
  --orange-dark:#e85f14;
  --text:#111;
  --border:#e9e9e9;
  --bg:#fff;
}

/* layout */
.container{
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar{
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding: 14px 0;
}

/* Brand */
.brand{
  display:flex;
  align-items:center;
  gap: 12px;
  min-width: 0;
}

.brand-badge{
  width: 46px;
  height: 46px;
  display:grid;
  place-items:center;
  background: var(--orange);
  color:#fff;
  font-weight: 800;
  border-radius: 10px;
  letter-spacing:.5px;
  flex: 0 0 auto;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.15;
  min-width: 0;
}

.brand-title{
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.brand-accent{ color: var(--orange); }

.brand-subtitle{
  margin-top: 4px;
  font-size: 12px;
  color: var(--orange);
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* CTA button */
.btn-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 20px;
  background: var(--orange);
  color:#fff;
  font-weight: 800;
  border-radius: 8px;
  border: 2px solid var(--orange);
  white-space: nowrap;
}

.btn-cta:hover{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* Mobile */
@media (max-width: 640px){
  .btn-cta{ padding: 10px 14px; font-size: 13px; }
  .brand-title{ font-size: 13px; letter-spacing: 1.2px; }
  .brand-subtitle{ font-size: 11px; }
}

/* HERO SECTION */
.hero{
  background: #fff;
  padding: 44px 0 18px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items: start;
}

/* LEFT */
.hero-title{
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 0.92;
  font-size: clamp(44px, 5vw, 76px);
  
}

@media(max-width:768px){
  .hero-title{
  
  text-align: center;
  }
}

.hero-title .blk{ color:#0b0b0b; }
.hero-title .org{ color: var(--orange); }

.hero-desc{
  margin-top: 18px;
  color: #666;
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;

}

@media(max-width:768px){
  .hero-title{
  
  text-align: center;
  }
}

.hero-actions{
  display:flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* BUTTONS (same) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary{
  background: var(--orange);
  color:#fff;
  border-color: var(--orange);
}
.btn-primary:hover{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline{
  background: #fff;
  color:#111;
  border-color: #111;
}
.btn-outline:hover{
  background:#111;
  color:#fff;
}

/* STATS */
.hero-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #eee;
  padding-left: 22px;
}

.stat{
  padding-left: 14px;
  border-left: 1px solid #eee;
}
.stat:first-child{
  border-left: none;
  padding-left: 0;
}

.stat-num{
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label{
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .8px;
  color:#777;
  font-weight: 800;
}

/* ✅ IMAGE ONLY (same box, rounded) */
.hero-right{
  border-radius: 14px;
  overflow: hidden;
  min-height: 560px;

  /* ✅ yahan apni image ka path set karna */
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.20) 55%, rgba(0,0,0,.10) 100%),
    url("./assets/1.png");
  background-size: cover;
  background-position: center;
}

/* desktop shows right image */
.hero-right--desktop{ display:block; }

/* mobile image is hidden by default */
.hero-right--mobile{
  display:none;
  min-height: 320px;
  margin-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-right--desktop{ display:none; }     /* ✅ hide right image column */
  .hero-right--mobile{ display:block; }     /* ✅ show image under subheading */

  .hero-right{ min-height: 360px; }         /* ✅ mobile height */
  .hero-stats{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 520px){
  .hero{ padding: 26px 0 10px; }
  .hero-right{ min-height: 320px; }
  .stat-num{ font-size: 32px; }
}


/* ========================= */
/* SECTION 3: AUTO SCROLL BAR (CATEGORIES) */
/* ========================= */

.marquee-strip{
  background: #0b0b0b;
  border-top: 3px solid var(--orange);
  border-bottom: 3px solid var(--orange);
  overflow: hidden;
}

.marquee{
  position: relative;
  width: 100%;
}

.marquee__track{
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 0;
  width: max-content;

  /* Auto scroll animation */
  animation: marqueeMove 22s linear infinite;
}

.marquee__item{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 10px;
  color: #fff;
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: .95;
}

.marquee__dot{
  color: var(--orange);
  font-weight: 900;
  opacity: .9;
  transform: translateY(-1px);
}

/* NEW tag */
.tag-new{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 4px 8px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 10px;
  margin-right: 6px;
}

/* Pause on hover (optional, looks premium) */
.marquee-strip:hover .marquee__track{
  animation-play-state: paused;
}

@keyframes marqueeMove{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Mobile speed slightly faster + smaller text */
@media (max-width: 640px){
  .marquee__track{ animation-duration: 16s; }
  .marquee__item{ font-size: 11px; letter-spacing: 1.5px; }
}



/* ========================= */
/* SECTION 4: WHY JSI (POINT CARDS WITH IMAGES - IMAGE TOP) */
/* ========================= */

.why{
  background: #fff;
  padding: 54px 0;
}

.why-head{
  max-width: 860px;
}

.why-title{
  margin: 0;
  font-weight: 900;
  letter-spacing: -0.5px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  color: #111;
}

@media(max-width:768px){
  .why-title{
  
  text-align: center;
  }
}

.why-title span{ color: var(--orange); }

.why-sub{
  margin-top: 14px;
  color: #666;
  font-size: 16px;
  line-height: 1.7;
  max-width: 720px;
}

@media(max-width:768px){
  .why-sub{
  
  text-align: center;
  }
}

/* ✅ Grid: default 2 columns (mobile also 2) */
.why-grid{
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

/* Card */
.why-card{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #eee;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
  min-height: 100%;
}

.why-card--active{
  border-color: rgba(242,107,29,.35);
  box-shadow: 0 12px 34px rgba(242,107,29,.10);
}

/* ✅ Image on top */
.why-img{
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  background: #f3f3f3;
  border: 1px solid #eee;
}

.why-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.why-content h3{
  margin: 0;
  font-size: 15px;
  font-weight: 900;
  color: #111;
}

.why-content p{
  margin: 6px 0 0;
  color: #6b6b6b;
  font-size: 13px;
  line-height: 1.6;
}

/* Desktop: 3 columns for a premium look */
@media (min-width: 980px){
  .why-grid{
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 30px;
  }
  .why-img{ height: 140px; }
}

/* Very small screens: keep 2 columns but adjust sizes */
@media (max-width: 420px){
  .why-grid{ gap: 12px; }
  .why-img{ height: 105px; }
  .why-card{ padding: 12px; }
}

/* ========================= */
/* PRODUCTS SECTION */
/* ========================= */

.products{
  background:#fff;
  padding:70px 0;
}

.products-head{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:24px;
  align-items:start;
}

.products-kicker{
  color:var(--orange);
  font-weight:900;
  letter-spacing:3px;
  font-size:12px;
  margin-bottom:14px;
}

@media(max-width:768px){
  .products-kicker{
  
  text-align: center;
  }
}

.products-title{
  font-weight:900;
  font-size:clamp(36px,4vw,56px);
  line-height:1.05;
}

@media(max-width:768px){
  .products-title{
  
  text-align: center;
  }
}

.products-head-right{
  color:#666;
  line-height:1.8;
  margin-top:36px;
  max-width:480px;
}

/* GRID */

.products-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}


/* CARD */

.p-card{
  background:#f7f7f7;
  border-radius:16px;
  padding:34px;
  text-align:center;
  transition:all .25s ease;
  border:1px solid #eee;
}

.p-card:hover{
  transform:translateY(-6px);
  box-shadow:0 20px 50px rgba(0,0,0,.08);
  background:#fff;
}


/* IMAGE */

.p-image{
  width:160px;
  height:160px;
  object-fit:contain;
  margin:auto;
  margin-bottom:18px;
  display:block;
}


/* TITLE */

.p-title{
  font-size:22px;
  font-weight:900;
  margin-bottom:10px;
  color:#111;
}


/* DESC */

.p-desc{
  font-size:14px;
  color:#666;
  line-height:1.7;
  margin-bottom:18px;
}


/* LIST */

.p-list{
  list-style:none;
  padding:0;
  display:grid;
  gap:8px;
}

.p-list li{
  font-size:14px;
  color:#444;
  position:relative;
  padding-left:18px;
}

.p-list li::before{
  content:"•";
  position:absolute;
  left:0;
  color:var(--orange);
  font-weight:900;
}


/* RESPONSIVE */

@media(max-width:980px){

.products-head{
grid-template-columns:1fr;
}

.products-head-right{
margin-top:12px;
text-align: center;
}

.products-grid{
grid-template-columns:1fr 1fr;
}

}

@media(max-width:560px){

.products{
padding:50px 0;
}

.products-grid{
grid-template-columns:1fr;
}

.p-card{
padding:26px 20px;
}

.p-image{
width:140px;
height:140px;
}

}
/* ========================= */
/* SECTION 6: SMART PARKING (ETP vs HTP) */
/* ========================= */

.parking{
  background:#fff;
  padding: 64px 0;
}

.parking-head{
  max-width: 860px;
}

.parking-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media(max-width:768px){
  .parking-kicker{
  
  text-align: center;
  }
}

.parking-title{
  margin: 0;
  font-weight: 900;
  color:#111;
  letter-spacing: -0.6px;
  line-height: 1.02;
  font-size: clamp(38px, 4.4vw, 64px);
}

@media(max-width:768px){
 .parking-title{
  
  text-align: center;
  }
}

.parking-title span{ color: var(--orange); }

.parking-sub{
  margin-top: 16px;
  color:#666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 720px;
}

/* grid */
.parking-grid{
  margin-top: 34px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: stretch;
}

/* cards */
.park-card{
  background:#fff;
  border: 1px solid #eaeaea;
  border-radius: 14px;
  padding: 28px 28px 26px;
  box-shadow: 0 16px 40px rgba(0,0,0,.06);
  position: relative;
}

/* active border */
.park-card--active{
  border-color: rgba(242,107,29,.75);
  box-shadow: 0 18px 46px rgba(242,107,29,.10);
}

/* top chip */
.park-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(242,107,29,.35);
  background: #fff2ea;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2px;
  font-size: 12px;
  text-transform: uppercase;
}

.park-chip-ico{
  font-size: 14px;
  line-height: 1;
}

/* heading */
.park-h{
  margin: 18px 0 8px;
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.2px;
  line-height: 1.12;
  color:#111;
}

.park-meta{
  margin: 0 0 18px;
  color:#7a7a7a;
  font-size: 14px;
}

/* list with check icons */
.park-list{
  list-style:none;
  padding:0;
  margin: 0 0 18px;
  display:grid;
  gap: 12px;
}

.park-list li{
  position: relative;
  padding-left: 34px;
  color:#444;
  font-size: 15px;
  line-height: 1.45;
}

.park-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top: 1px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  border: 1px solid rgba(242,107,29,.45);
  color: var(--orange);
  font-weight: 900;
  font-size: 12px;
  background:#fff7f1;
}

/* ideal bar */
.park-ideal{
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  background:#fbf1ea;
  border-left: 3px solid var(--orange);
  color:#555;
  font-size: 14px;
}

/* CTA banner */
.parking-cta{
  margin-top: 30px;
  border-radius: 16px;
  padding: 34px 34px;
  background:
    radial-gradient(circle at 20% 20%, rgba(242,107,29,.25), rgba(0,0,0,0) 45%),
    linear-gradient(90deg, rgba(0,0,0,.92), rgba(18,18,18,.88));
  color:#fff;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.cta-big{
  font-weight: 900;
  letter-spacing: -0.3px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.05;
}

.cta-accent{ color: var(--orange); }

.cta-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 14px 22px;
  border-radius: 10px;
  background: var(--orange);
  color:#fff;
  font-weight: 900;
  border: 2px solid var(--orange);
  white-space: nowrap;
  text-decoration:none;
}
.cta-btn:hover{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

/* responsive */
@media (max-width: 980px){
  .parking-grid{
    grid-template-columns: 1fr;
  }
  .park-h{ font-size: 26px; }
  .parking-cta{
    flex-direction: column;
    align-items:flex-start;
  }
  .cta-btn{
    width: 100%;
  }
}

@media (max-width: 520px){
  .parking{ padding: 48px 0; }
  .park-card{ padding: 20px 18px 18px; }
  .park-h{ font-size: 22px; }
  .park-list li{ font-size: 14px; }
  .parking-cta{ padding: 26px 18px; }
}

/* ========================= */
/* SECTION 7: OUR HERITAGE (TIMELINE + LEGACY CARD) */
/* ========================= */

.heritage{
  background:#fff;
  padding: 70px 0;
}

.heritage-head{
  max-width: 920px;
}

.heritage-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
@media(max-width:768px){
  .heritage-kicker{ text-align:center; }
}

.heritage-title{
  margin: 0;
  font-weight: 900;
  color:#111;
  letter-spacing: -0.6px;
  line-height: 1.02;
  font-size: clamp(40px, 4.6vw, 70px);
}
@media(max-width:768px){
  .heritage-title{ text-align:center; }
}

.heritage-title span{ color: var(--orange); }

.heritage-sub{
  margin-top: 18px;
  color:#666;
  font-size: 16px;
  line-height: 1.85;
  max-width: 720px;
}
@media(max-width:768px){
  .heritage-sub{ text-align:center; }
}

.heritage-grid{
  margin-top: 42px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Timeline */
.timeline{
  display:flex;
  flex-direction: column;
  gap: 36px;
}

.tl-item{
  display:grid;
  grid-template-columns: 72px 1fr; /* ✅ a little wider for bigger circle */
  gap: 18px;
  align-items: start;
}

.tl-rail{
  position: relative;
  display:flex;
  flex-direction: column;
  align-items:center;
}

.tl-dot{
  width: 62px;       /* ✅ bigger */
  height: 62px;      /* ✅ bigger */
  border-radius: 999px;
  border: 3px solid var(--orange);
  background:#fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
  overflow: hidden;  /* ✅ keep image inside circle */
  display:grid;
  place-items:center;
}

/* ✅ image inside circle */
.tl-dot-img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ perfect crop */
  display:block;
}

.tl-line{
  width: 2px;
  height: 120px;
  background: rgba(0,0,0,.12);
  margin-top: 12px;
}

.tl-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 2.5px;
  font-size: 11px;
  text-transform: uppercase;
  margin-top: 4px;
}

.tl-name{
  margin: 8px 0 8px;
  font-weight: 900;
  font-size: 20px;
  color:#111;
}

.tl-text{
  margin: 0;
  color:#666;
  font-size: 15px;
  line-height: 1.75;
  max-width: 520px;
}

/* Legacy Card */
.legacy{
  position: relative;
  border-radius: 18px;
  padding: 34px 34px;
  background:
    radial-gradient(circle at 20% 10%, rgba(242,107,29,.22), rgba(0,0,0,0) 52%),
    linear-gradient(180deg, #0c0c0c, #141414);
  color:#fff;
  box-shadow: 0 22px 70px rgba(0,0,0,.22);
  overflow: hidden;
  min-height: 520px;
}

/* ✅ Top icon image */
.legacy-icon{
  width: 78px;  /* ✅ bigger */
  height: 78px; /* ✅ bigger */
  border-radius: 999px;
  background: var(--orange);
  margin: 0 auto 18px;
  overflow:hidden;
  display:grid;
  place-items:center;
}
.legacy-icon-img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display:block;
}

.legacy-title{
  text-align:center;
  margin: 0;
  font-weight: 900;
  font-size: 34px;
  letter-spacing: -0.4px;
}

.legacy-sub{
  text-align:center;
  margin: 12px auto 0;
  max-width: 520px;
  color: rgba(255,255,255,.75);
  line-height: 1.7;
  font-size: 15px;
}

.legacy-list{
  margin-top: 26px;
  display:flex;
  flex-direction: column;
  gap: 14px;
}

.legacy-item{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(6px);
}

/* ✅ Avatar image in circle */
.legacy-avatar{
  width: 52px;   /* ✅ bigger */
  height: 52px;  /* ✅ bigger */
  border-radius: 999px;
  background: rgba(242,107,29,.15);
  overflow:hidden;
  flex: 0 0 auto;
}

.legacy-avatar-img{
  width: 100%;
  height: 100%;
  object-fit: cover; /* ✅ perfect crop */
  display:block;
}

.legacy-name{
  font-weight: 900;
  font-size: 15px;
}

.legacy-role{
  margin-top: 4px;
  color: var(--orange);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .3px;
}

/* watermark "56" */
.legacy-watermark{
  position:absolute;
  right: 18px;
  bottom: -10px;
  font-weight: 900;
  font-size: 140px;
  color: rgba(242,107,29,.10);
  letter-spacing: -6px;
  pointer-events:none;
}

/* responsive */
@media (max-width: 980px){
  .heritage-grid{
    grid-template-columns: 1fr;
  }
  .legacy{
    min-height: unset;
  }
  .tl-line{
    height: 90px;
  }
}

@media (max-width: 520px){
  .heritage{ padding: 52px 0; }
  .tl-item{ grid-template-columns: 66px 1fr; gap: 14px; }
  .tl-dot{ width: 56px; height: 56px; }
  .tl-name{ font-size: 18px; }
  .legacy{ padding: 26px 18px; }
  .legacy-title{ font-size: 26px; }
  .legacy-watermark{ font-size: 110px; }
  .legacy-avatar{ width: 46px; height: 46px; }
  .legacy-icon{ width: 70px; height: 70px; }
}

/* ========================= */
/* SECTION 8: TRUSTED BY (BRANDS LOGO GRID) */
/* ========================= */

.trusted{
  background:#fff;
  padding: 64px 0 78px;
  border-top: 4px solid var(--orange);
}

.trusted-head{
  max-width: 920px;
}

.trusted-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.trusted-title{
  margin: 0;
  font-weight: 900;
  color:#111;
  letter-spacing: -0.6px;
  line-height: 1.02;
  font-size: clamp(40px, 4.6vw, 70px);
}

.trusted-title span{
  color: var(--orange);
}

.trusted-sub{
  margin-top: 18px;
  color:#666;
  font-size: 16px;
  line-height: 1.85;
  max-width: 650px;
}

/* logo grid */
.brand-grid{
  margin-top: 40px;
  display:grid;
  grid-template-columns: repeat(6, 1fr);
  border: 1px solid #e9e2dc;
  border-radius: 2px;
  overflow:hidden;
  background:#fff;
}

.brand-cell{
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 28px 16px;
  border-right: 1px solid #e9e2dc;
  border-bottom: 1px solid #e9e2dc;
  background:#fff;
  min-height: 92px;
}

.brand-cell:nth-child(6n){
  border-right:none;
}

/* remove bottom border of last row */
.brand-cell:nth-last-child(-n + 6){
  border-bottom:none;
}

/* logo image */
.brand-logo-img{
  max-width: 140px;
  max-height: 42px;
  width: auto;
  height: auto;
  object-fit: contain;
  display:block;
  filter: grayscale(100%);
  opacity: .9;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease;
}

.brand-cell:hover{
  background:#fbf1ea;
}

.brand-cell:hover .brand-logo-img{
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

/* responsive */
@media (max-width: 1100px){
  .brand-grid{
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-cell:nth-child(6n){
    border-right: 1px solid #e9e2dc;
  }

  .brand-cell:nth-child(3n){
    border-right:none;
  }

  .brand-cell{
    border-bottom: 1px solid #e9e2dc;
  }

  .brand-cell:nth-last-child(-n + 3){
    border-bottom:none;
  }
}

@media (max-width: 768px){
  .trusted-kicker,
  .trusted-title,
  .trusted-sub{
    text-align:center;
  }

  .trusted-sub{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 560px){
  .trusted{
    padding: 50px 0 64px;
  }

  .brand-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-cell{
    min-height: 84px;
    padding: 22px 10px;
  }

  .brand-logo-img{
    max-width: 110px;
    max-height: 56px;
  }

  .brand-cell:nth-child(3n){
    border-right: 1px solid #e9e2dc;
  }

  .brand-cell:nth-child(2n){
    border-right:none;
  }

  .brand-cell{
    border-bottom: 1px solid #e9e2dc;
  }

  .brand-cell:nth-last-child(-n + 2){
    border-bottom:none;
  }
}

/* ========================= */
/* SECTION 9: CLIENT STORIES (GOOGLE-STYLE REVIEWS) */
/* FULL CSS */
/* ========================= */

.testimonials{
  background:#fff;
  padding: 72px 0;
}

.testi-head{
  max-width: 980px;
}

.testi-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.testi-title{
  margin: 0;
  font-weight: 900;
  color:#111;
  letter-spacing: -0.6px;
  line-height: 1.02;
  font-size: clamp(42px, 4.6vw, 78px);
}

.testi-sub{
  margin-top: 16px;
  color:#666;
  font-size: 16px;
  line-height: 1.8;
  max-width: 700px;
}

.testi-grid{
  margin-top: 40px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

/* card */
.t-card{
  background:#fff;
  border: 1px solid #e8dfd8;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(0,0,0,.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.t-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0,0,0,.08);
  border-color: rgba(242,107,29,.35);
}

/* top */
.t-top{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 16px;
}

.t-user{
  display:flex;
  align-items:center;
  gap: 12px;
}

.t-avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), #ff9d57);
  color:#fff;
  font-weight: 900;
  display:grid;
  place-items:center;
  font-size: 15px;
  flex: 0 0 auto;
  box-shadow: 0 10px 24px rgba(242,107,29,.22);
}

.t-user-meta{
  min-width: 0;
}

.t-name{
  font-weight: 900;
  color:#111;
  font-size: 17px;
  line-height: 1.2;
}

.t-role{
  margin-top: 5px;
  color:#8a8a8a;
  font-size: 13px;
  line-height: 1.4;
}

/* highlighted google badge */
.t-google-badge{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff7ef, #ffe8d6);
  border: 1px solid rgba(242,107,29,.35);
  color: #c85a14;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .4px;
  white-space: nowrap;
  box-shadow: 0 10px 22px rgba(242,107,29,.12);
}

.t-google-dot{
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--orange);
  display:block;
  box-shadow: 0 0 0 4px rgba(242,107,29,.15);
}

.t-card:hover .t-google-badge{
  background: linear-gradient(135deg, #fff3e8, #ffdcbc);
  border-color: rgba(242,107,29,.5);
}

/* rating row */
.t-rating-row{
  display:flex;
  align-items:center;
  gap: 12px;
  margin-top: 18px;
}

.t-stars{
  color: #f4b400;
  letter-spacing: 2px;
  font-size: 15px;
  user-select: none;
}

.t-time{
  color:#999;
  font-size: 13px;
  font-weight: 600;
}

.t-text{
  margin: 18px 0 0;
  color:#555;
  font-size: 16px;
  line-height: 1.9;
  font-style: italic;
}

/* footer */
.t-footer{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #f0ebe7;
}

.t-verified{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .2px;
}

/* responsive */
@media (max-width: 980px){
  .testi-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px){
  .testi-kicker,
  .testi-title,
  .testi-sub{
    text-align:center;
  }

  .testi-sub{
    margin-left:auto;
    margin-right:auto;
  }
}

@media (max-width: 520px){
  .testimonials{
    padding: 54px 0;
  }

  .t-card{
    padding: 18px;
    border-radius: 16px;
  }

  .t-top{
    flex-direction: column;
    align-items: flex-start;
  }

  .t-text{
    font-size: 15px;
  }

  .t-avatar{
    width: 46px;
    height: 46px;
    font-size: 14px;
  }

  .t-name{
    font-size: 16px;
  }

  .t-google-badge{
    font-size: 11px;
    padding: 8px 12px;
  }
}

/* ========================= */
/* SECTION 10: FAQ + ACTIONS */
/* ========================= */

.faq{
  background:#fff;
  padding: 74px 0;
  border-top: 4px solid var(--orange);
}

.faq-grid{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 30px;
  align-items:start;
}

.faq-kicker{
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 3px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

@media(max-width:768px){
  .faq-kicker{
  
  text-align: center;
  }
}

.faq-title{
  margin: 0;
  font-weight: 900;
  color:#111;
  letter-spacing: -0.6px;
  line-height: 1.02;
  font-size: clamp(44px, 4.8vw, 78px);
}

@media(max-width:768px){
  .faq-title{
  
  text-align: center;
  }
}
.faq-title span{ color: var(--orange); }

.faq-sub{
  margin-top: 18px;
  color:#666;
  font-size: 16px;
  line-height: 1.85;
  max-width: 620px;
}

@media(max-width:768px){
  .faq-sub{
  
  text-align: center;
  }
}

/* FAQ List */
.faq-list{
  margin-top: 34px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item{
  background:#fff;
  border: 1px solid #e7dfd8;
  border-radius: 12px;
  overflow:hidden;
}

.faq-item summary{
  list-style:none;
  cursor:pointer;
  padding: 18px 18px;
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 900;
  color:#111;
  font-size: 16px;
}

.faq-item summary::-webkit-details-marker{ display:none; }

.faq-plus{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background:#fff2ea;
  border: 1px solid rgba(242,107,29,.25);
  position: relative;
  flex: 0 0 auto;
}
.faq-plus::before,
.faq-plus::after{
  content:"";
  position:absolute;
  top:50%;
  left:50%;
  width: 12px;
  height: 2px;
  background: var(--orange);
  transform: translate(-50%,-50%);
  border-radius: 2px;
}
.faq-plus::after{
  width: 2px;
  height: 12px;
}

/* open state */
.faq-item[open] summary{
  background:#fbf1ea;
}
.faq-item[open] .faq-plus::after{
  height: 0; /* turns + into - */
}

.faq-body{
  padding: 0 18px 18px;
  color:#666;
  font-size: 15px;
  line-height: 1.85;
}

/* RIGHT PANEL */
.faq-panel{
  background:#f7f2ed;
  border: 1px solid #e7dfd8;
  border-radius: 16px;
  padding: 22px;
}

.faq-cta{
  border-radius: 14px;
  padding: 28px 26px;
  background:
    radial-gradient(circle at 15% 20%, rgba(242,107,29,.24), rgba(0,0,0,0) 50%),
    linear-gradient(180deg, #0c0c0c, #141414);
  color:#fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.18);
}

.faq-cta h3{
  margin: 0;
  font-weight: 900;
  font-size: 30px;
  letter-spacing: -0.3px;
}
.faq-cta h3 span{ color: var(--orange); }

.faq-cta p{
  margin: 12px 0 0;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  font-size: 15px;
  max-width: 520px;
}

/* action cards */
.faq-actions{
  margin-top: 18px;
  display:flex;
  flex-direction: column;
  gap: 12px;
}

.act-card{
  display:flex;
  align-items:center;
  gap: 14px;
  padding: 16px 16px;
  border-radius: 12px;
  border: 1px solid #e7dfd8;
  background:#fff;
  text-decoration:none;
}

.act-card:hover{
  background:#fbf1ea;
  border-color: rgba(242,107,29,.35);
}

.act-ico{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background:#fff2ea;
  border: 1px solid rgba(242,107,29,.25);
  display:grid;
  place-items:center;
  font-size: 18px;
}

.act-title{
  font-weight: 900;
  color:#111;
  font-size: 16px;
}

.act-sub{
  margin-top: 4px;
  color:#7a7a7a;
  font-size: 13px;
}

/* responsive */
@media (max-width: 980px){
  .faq-grid{
    grid-template-columns: 1fr;
  }
  .faq-panel{
    margin-top: 10px;
  }
}

@media (max-width: 520px){
  .faq{ padding: 56px 0; }
  .faq-item summary{ font-size: 15px; }
  .faq-cta{ padding: 22px 18px; }
  .faq-cta h3{ font-size: 24px; }
}

/* ========================= */
/* SECTION 11: FINAL CTA (DARK) */
/* ========================= */

.final-cta{
  padding: 86px 0 96px;
  color:#fff;
  border-top: 4px solid var(--orange);
  position: relative;
  overflow:hidden;

  background:
    radial-gradient(circle at 50% 115%, rgba(242,107,29,.35), rgba(0,0,0,0) 60%),
    linear-gradient(180deg, #0b0b0b 0%, #121212 55%, #0b0b0b 100%);
}

/* subtle diagonal pattern */
.final-cta::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      135deg,
      rgba(255,255,255,.04) 0px,
      rgba(255,255,255,.04) 1px,
      rgba(0,0,0,0) 1px,
      rgba(0,0,0,0) 22px
    );
  opacity:.35;
  pointer-events:none;
}

/* vignette */
.final-cta::after{
  content:"";
  position:absolute;
  inset:-80px;
  background: radial-gradient(circle at 50% 40%, rgba(0,0,0,0) 35%, rgba(0,0,0,.75) 100%);
  pointer-events:none;
}

.final-wrap{
  position:relative;
  z-index:1;
  text-align:center;
  max-width: 980px;
  margin: 0 auto;
}

.final-pill{
  display:inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(242,107,29,.10);
  border: 1px solid rgba(242,107,29,.35);
  color: rgba(242,107,29,.95);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-size: 12px;
}

.final-title{
  margin: 26px 0 0;
  font-weight: 900;
  letter-spacing: -1px;
  line-height: 1.02;
  font-size: clamp(54px, 6vw, 92px);
  color:#fff;
  text-transform: uppercase;
}

.final-title span{
  color: var(--orange);
}

.final-sub{
  margin: 22px auto 0;
  color: rgba(255,255,255,.62);
  font-size: 16px;
  line-height: 1.9;
  max-width: 820px;
}

.final-actions{
  margin-top: 34px;
  display:flex;
  justify-content:center;
  gap: 14px;
  flex-wrap: wrap;
}

/* Buttons (global friendly) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 12px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  min-width: 190px;
}

.btn-orange{
  background: var(--orange);
  color:#fff;
  box-shadow: 0 18px 55px rgba(242,107,29,.25);
}
.btn-orange:hover{ transform: translateY(-1px); }

.btn-light{
  background:#fff;
  color:#111;
  border-color: rgba(255,255,255,.18);
}
.btn-light:hover{ transform: translateY(-1px); }

.btn-outline{
  background: rgba(0,0,0,.25);
  color:#fff;
  border-color: rgba(242,107,29,.55);
}
.btn-outline:hover{
  background: rgba(242,107,29,.12);
  transform: translateY(-1px);
}

@media (max-width: 520px){
  .final-cta{ padding: 64px 0 72px; }
  .btn{ width: 100%; min-width: 0; }
}

/* ========================= */
/* SECTION 12: FOOTER */
/* ========================= */

.site-footer{
  background:#fff;
  border-top: 4px solid var(--orange);
  padding: 58px 0 36px;
}

.footer-top{
  display:grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 42px;
  align-items:start;
}

.f-logoRow{
  display:flex;
  gap: 14px;
  align-items:flex-start;
}

/* ✅ Footer real logo */
.f-brand-logo{
  height: 64px;
  width: auto;
  display:block;
  object-fit: contain;
  flex: 0 0 auto;
}

.f-brandText{
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.f-brandName{
  font-weight: 900;
  color:#111;
  letter-spacing: 2px;
  font-size: 16px;
  line-height: 1.2;
}
.f-brandName span{ color: var(--orange); }

.f-tagline{
  margin-top: 4px;
  font-size: 12px;
  color:#777;
  letter-spacing: 1.2px;
}

.f-desc{
  margin: 18px 0 0;
  color:#777;
  line-height: 1.9;
  max-width: 360px;
}

.f-head{
  font-weight: 900;
  color:#111;
  letter-spacing: 2.6px;
  font-size: 12px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.f-link{
  display:block;
  color:#777;
  text-decoration:none;
  padding: 8px 0;
}
.f-link:hover{ color:#111; }

.f-contact{
  display:flex;
  align-items:center;
  gap: 10px;
  color:#777;
  text-decoration:none;
  padding: 8px 0;
}
.f-contact span{ color:#777; }
.f-contact:hover span{ color:#111; }

.footer-bottom{
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid #ece6e0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
  color:#888;
}

.f-copy span{ color: var(--orange); font-weight: 900; }
.f-slogan span{ color: var(--orange); font-weight: 900; }

/* responsive */
@media (max-width: 980px){
  .footer-top{
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width: 520px){
  .site-footer{ padding: 48px 0 28px; }

  .footer-top{
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .footer-bottom{
    flex-direction: column;
    align-items:flex-start;
  }

  .f-brand-logo{
    height: 56px;
  }

  .f-logoRow{
    gap: 12px;
  }

  .f-brandName{
    font-size: 15px;
    letter-spacing: 1.4px;
  }

  .f-tagline{
    font-size: 11px;
    letter-spacing: .8px;
  }
}

/* ========================= */
/* SECTION 2: HERO (VIDEO) */
/* FULL CSS (UPDATED) */
/* ========================= */

.hero{
  background:#fff;
  padding: 44px 0 18px;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 28px;
  align-items:start;
}

/* LEFT */
.hero-title{
  font-weight: 900;
  letter-spacing: -0.5px;
  line-height: 0.92;
  font-size: clamp(44px, 5vw, 76px);
}

.hero-title .blk{ color:#0b0b0b; }
.hero-title .org{ color: var(--orange); }

.hero-desc{
  margin-top: 18px;
  color:#666;
  font-size: 16px;
  line-height: 1.75;
  max-width: 560px;
}

.hero-actions{
  display:flex;
  gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 20px;
  border-radius: 10px;
  font-weight: 800;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-primary{
  background: var(--orange);
  color:#fff;
  border-color: var(--orange);
}
.btn-primary:hover{
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-outline{
  background:#fff;
  color:#111;
  border-color:#111;
}
.btn-outline:hover{
  background:#111;
  color:#fff;
}

/* STATS */
.hero-stats{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid #eee;
  padding-left: 22px;
}

.stat{
  padding-left: 14px;
  border-left: 1px solid #eee;
}
.stat:first-child{
  border-left:none;
  padding-left:0;
}

.stat-num{
  font-size: 38px;
  font-weight: 900;
  color: var(--orange);
  line-height: 1;
}
.stat-label{
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: .8px;
  color:#777;
  font-weight: 800;
}

/* ✅ HERO VIDEO BOX (NO BLANK SPACE) */
.hero-media{
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background:#111;

  /* ✅ remove min-height issue completely */
  min-height: unset;

  /* ✅ keep nice ratio (prevents empty bottom space) */
  aspect-ratio: 16 / 10;
}

.hero-video{
  width:100%;
  height:100%;
  display:block;
  object-fit: cover;
}

/* small highlight mute/unmute */
.hero-mute{
  position:absolute;
  top:14px;
  right:14px;
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(0,0,0,.55);
  color:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
  z-index: 2;
}
.hero-mute:hover{
  transform: translateY(-1px);
  background: rgba(242,107,29,.18);
  border-color: rgba(242,107,29,.55);
}

/* desktop shows right media */
.hero-media--desktop{ display:block; }

/* mobile media hidden by default */
.hero-media--mobile{
  display:none;
  margin-top: 18px;
}

/* RESPONSIVE */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-media--desktop{ display:none; }
  .hero-media--mobile{ display:block; }

  /* ✅ mobile ratio */
  .hero-media{ aspect-ratio: 16 / 9; }

  .hero-stats{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px){
  .hero-title{ text-align:center; }
  .hero-desc{ text-align:center; margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
}

@media (max-width: 520px){
  .hero{ padding: 26px 0 10px; }

  /* ✅ small phones ratio */
  .hero-media{ aspect-ratio: 4 / 3; }

  .hero-mute{
    width:36px; height:36px;
    top:12px; right:12px;
  }
  .stat-num{ font-size: 32px; }
}


/* ========================= */
/* BOOK NOW BUTTON - FULL CSS */
/* ========================= */

.book-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;

  padding:12px 28px;
  min-width:160px;

  background: var(--orange);
  color:#fff;
  text-decoration:none;

  font-size:14px;
  font-weight:800;
  letter-spacing:.6px;
  line-height:1;

  border:none;
  border-radius:8px;
  cursor:pointer;

  box-shadow:0 10px 24px rgba(242,107,29,.25);
  transition:all .25s ease;
}

.book-btn:hover{
  background:#e95c14;
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(242,107,29,.35);
}

.book-btn:active{
  transform:translateY(0);
  box-shadow:0 8px 18px rgba(242,107,29,.22);
}

.book-btn:focus{
  outline:none;
}

.book-btn:focus-visible{
  outline:2px solid rgba(242,107,29,.35);
  outline-offset:3px;
}

/* center wrapper */
.btn-center{
  display:flex;
  justify-content:center;
  margin-top:20px;
}

/* if button inside product card */
.p-card .book-btn{
  margin-top:20px;
}

/* mobile */
@media (max-width:560px){
  .book-btn{
    padding:11px 24px;
    min-width:140px;
    font-size:13px;
  }

  .btn-center{
    margin-top:18px;
  }
}