/* ════════════════════════════════════════════════════════
   style.css  |  EstateDeal.in
   ════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --brand-gold:       #FEA200;
  --brand-gold-dark:  #FEA200;
  --brand-gold-light: #d4911a;
  --gold:         #FEA200;
  --gold-hover:   #d4911a;
  --white:        #ffffff;
  --off-white:    #F6F6F6;
  --gray-text:    #666666;
  --dark-text:    #222222;
  --border:       #E2E2E2;
  --dark-footer:  #1C1C2E;
  --nav-height:   58px;
  --mob-drawer:   290px;
  --shadow-card:  0 6px 28px rgba(91,45,142,.12);
  --shadow-hover: 0 12px 40px rgba(91,45,142,.22);
  --radius:       10px;
  --transition:   .22s ease;
}

/* ── Reset ── */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 18px; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
a { text-decoration: none; }
ul { list-style: none; }
button { font-family: 'Poppins', sans-serif; cursor: pointer; }
img { display: block; max-width: 100%; }

/* ════════════════════════════════════════════════════════
   NAVBAR
   ════════════════════════════════════════════════════════ */
.navbar {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(91,45,142,.35);
  gap: 16px;
  height: 100px;
}

/* Logo */

.logo-wrap {
  display: flex;
  align-items: center;
  border-radius: 6px;
  padding: 5px 10px 4px;
  flex-shrink: 0;
  transition: opacity var(--transition);
}
.logo-wrap:hover { opacity: .9; }
.logo-icon { display: flex; flex-direction: column; align-items: flex-start; line-height: 1; }
.brand-row  { display: flex; align-items: center; gap: 1px; }
.brand-text { font-size: 13px; font-weight: 700; color: var(--brand-gold); letter-spacing: -.2px; }
.brand-dot  { font-size: 13px; font-weight: 700; color: var(--gold); }
.brand-hammer { font-size: 13px; margin-left: 4px; }
.sub-text   { font-size: 7.5px; color: #999; letter-spacing: .5px; margin-top: 2px; font-style: italic; }

/* Desktop Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  margin: 0;
}
.nav-item { position: relative; }
.nav-link {
  color:var(--dark-text);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background var(--transition);
  white-space: nowrap;
  user-select: none;
}
.nav-link:hover,
.nav-item.active > .nav-link { background: rgba(255,255,255,.16); }
.nav-arr {
  font-size: 17px;
  opacity: .75;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-item.active .nav-arr { transform: rotate(180deg); }

/* ── Dropdown ── */
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 16px 48px rgba(0,0,0,.18);
  min-width: 380px;
  padding: 12px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
  z-index: 999;
  border: 1px solid var(--border);
}
.dropdown::before {
  content: '';
  position: absolute;
  top: -7px;
  left: 50%;
  transform: translateX(-50%);
  border-width: 0 7px 7px;
  border-style: solid;
  border-color: transparent transparent var(--white) transparent;
  filter: drop-shadow(0 -2px 2px rgba(0,0,0,.06));
}
.nav-item.active .dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
.dropdown-grid {
  display: grid;
  flex-direction: column;
  grid-template-columns: 1fr;
  gap: 4px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background var(--transition);
}
.dropdown-item:hover { background: var(--off-white); }
.di-icon { font-size: 20px; flex-shrink: 0; width: 36px; text-align: center; }
.di-text { display: flex; flex-direction: column; gap: 1px; }
.di-text strong { font-size: 12.5px; font-weight: 600; color: var(--dark-text); }
.di-text small  { font-size: 11px; color: var(--gray-text); font-weight: 400; }

/* Nav Buttons */
.nav-btns { display: flex; gap: 8px; align-items: center; flex-shrink: 0; }
.btn-nav-search {
  background: transparent; color: var(--dark-text);
  border: none; font-size: 12.5px; font-weight: 600;
  padding: 7px 20px; border-radius: 5px; 
  border: 1.5px solid var(--gold);
  transition: opacity var(--transition);
}
.btn-nav-search:hover { opacity: .85; }
.btn-nav-login {
  background: var(--gold); color: var(--dark-text);
  border: 2px solid var(--gold);
  font-size: 12.5px; font-weight: 500;
  padding: 6px 20px; border-radius: 5px;
  transition: background var(--transition);
}
.btn-nav-login:hover { background: rgba(255,255,255,.12); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255, 255, 255, 0.91);
  border: 2px solid #ffbf47;
  border-radius: 7px;
  padding: 0;
  flex-shrink: 0;
  transition: background var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,.22); }
.hb-bar {
  display: block;
  width: 20px; height: 2px;
  background: #ffbf47;
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
  transform-origin: center;
}
/* Hamburger → X */
.hamburger.is-open .hb-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open .hb-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open .hb-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile Overlay ── */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1001;
  backdrop-filter: blur(2px);
  opacity: 0;
  transition: opacity .3s ease;
}
.mobile-overlay.visible { opacity: 1; }

/* ── Mobile Drawer ── */
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: var(--mob-drawer);
  height: 100%;
  background: var(--white);
  z-index: 1002;
  transform: translateX(100%);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 32px rgba(0,0,0,.2);
}
.mobile-menu.is-open { transform: translateX(0); }

.mob-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--brand-gold);
  flex-shrink: 0;
}
.mob-logo .brand-text { font-size: 12px; }
.mob-logo .sub-text   { font-size: 7px; }
.mob-close {
  background: rgba(255,255,255,.15);
  border: 1.5px solid rgba(255,255,255,.3);
  color: var(--white);
  font-size: 16px;
  width: 32px; height: 32px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.mob-close:hover { background: rgba(255,255,255,.25); }

.mob-nav { padding: 10px 0; flex: 1; }
.mob-item { border-bottom: 1px solid var(--border); }
.mob-link {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px;
  background: none; border: none;
  font-size: 14px; font-weight: 500; color: var(--dark-text);
  text-align: left;
  transition: background var(--transition), color var(--transition);
}
.mob-link:hover { background: var(--off-white); color: var(--brand-gold); }
.mob-arr {
  font-size: 10px;
  color: var(--gray-text);
  transition: transform .25s ease;
}
.mob-item.open > .mob-link .mob-arr { transform: rotate(180deg); color: var(--brand-gold); }
.mob-item.open > .mob-link { color: var(--brand-gold); background: #f4eeff; }

.mob-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height .32s ease;
  background: var(--off-white);
}
.mob-item.open .mob-sub { max-height: 300px; }
.mob-sub li a {
  display: block;
  padding: 11px 20px 11px 30px;
  font-size: 13px; color: var(--gray-text);
  transition: color var(--transition), background var(--transition);
  border-bottom: 1px solid rgba(0,0,0,.04);
}
.mob-sub li a:hover { color: var(--brand-gold); background: #efe8fc; }

.mob-btns {
  padding: 16px;
  display: flex; flex-direction: column; gap: 10px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}
.mob-full-btn {
  width: 100%;
  padding: 11px;
  border-radius: 7px;
  font-size: 14px; font-weight: 600;
}
.mob-full-btn.mob-login {
  background: transparent;
  color: var(--brand-gold);
  border: 1.5px solid var(--brand-gold);
}
.mob-full-btn.mob-login:hover { background: #f4eeff; }

/* ════════════════════════════════════════════════════════
   SECTION UTILITIES
   ════════════════════════════════════════════════════════ */
.section-pad { padding: 68px 60px; }
.sec-title {
  font-size: 32px; font-weight: 700;
  text-align: center; color: var(--dark-text);
  margin-bottom: 8px; line-height: 1.3;
}
.sec-divider {
  width: 36px; height: 3px;
  background: var(--gold);
  margin: 0 auto 8px;
  border-radius: 2px;
}
.sec-pin { text-align: center; font-size: 14px; margin-bottom: 6px; }
.sec-sub {
  text-align: center; color: var(--gray-text);
  font-size: 17px; max-width: 560px;
  margin: 0 auto 36px; line-height: 1.75;
}
.sec-sub a { color: var(--brand-gold); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 600px;
  background-image: url(./assets/banner.webp);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px 52px;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg,
    rgba(41, 38, 0, 0.85) 0%,
    rgba(2, 32, 71, 0.7) 20%,
    rgba(61, 46, 3, 0.6) 100%);
  z-index: 0;
}

/* make sure hero content sits above the overlay */
.hero > * {
  position: relative;
  z-index: 1;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; flex-direction: column;
  align-items: center; width: 100%;
  max-width: 85%;
  animation: fadeUp .6s ease both;
}
.hero-title {
  font-size: clamp(19px, 3vw, 36px);
  font-weight: 700; color: var(--white);
  text-align: center; line-height: 1.3;
  margin-bottom: 10px;
}
.hero-sub {
  font-size: 18px; color: rgba(255,255,255,.7);
  margin-bottom: 32px; font-weight: 300; text-align: center;
}

/* Search bar */
.search-bar-wrap {
  display: flex; width: 100%; max-width: 630px;
  border-radius: 30px; overflow: hidden;
  /* box-shadow: 0 8px 36px rgba(0,0,0,.45); */
  margin-bottom: 44px;
  /* background: var(--white); */

}
.search-select-wrap {
  position: relative; flex: 0 0 182px;
  border-right: 1.5px solid var(--border);
  margin-right: 20px;
  background-color: var(--off-white);
  border-radius: 30px;
}
.search-select-wrap select {
  width: 100%; height: 100%;
  padding: 0 32px 0 16px;
  border: none; outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 14px; color: #555;
  background: transparent; cursor: pointer;
  appearance: none; -webkit-appearance: none;
}
.search-select-wrap::after {
  content: '▾';
  position: absolute; right: 12px; top: 50%;
  transform: translateY(-50%);
  font-size: 17px; color: #aaa;
  pointer-events: none;
}
.search-input-wrap {
  flex: 1; display: flex; align-items: center;
  padding: 0 8px 0 16px;
  border-radius: 30px 0px 0px 30px;
  background-color: var(--white);
}
.search-input-wrap input {
  width: 100%; border: none; outline: none;
  font-family: 'Poppins', sans-serif;
  font-size: 13px; color: var(--dark-text);
  padding: 15px 0; background: transparent;
}
.search-input-wrap input::placeholder { color: #bbb; }
.btn-search-hero {
  background: var(--gold); color: var(--white);
  border: none; padding: 0 26px;
  font-size: 13.5px; font-weight: 600;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap; min-height: 52px;
  transition: background var(--transition);
}
.btn-search-hero:hover { background: var(--gold-hover); }

/* Hero categories */
.hero-cats {
  display: flex; gap: 28px;
  justify-content: center; flex-wrap: wrap;
  animation: fadeUp .65s .2s ease both;
}
.hero-cat {
  display: flex; flex-direction: column;
  align-items: center; gap: 9px; cursor: pointer;
  transition: transform var(--transition);
}
.hero-cat:hover { transform: translateY(-5px); }
.hero-cat-circle {
  width: 58px; height: 58px; border-radius: 50%;
  background: #efefef;
  /*border: 1.5px solid black;*/
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  transition: background var(--transition);
  backdrop-filter: blur(4px);
}
.hero-cat:hover .hero-cat-circle { background: rgba(255,255,255); }
.hero-cat span {
  color: rgba(255,255,255,.85);
  font-size: 16px; font-weight: 400;
  text-align: center; max-width: 72px; line-height: 1.3;
}

/* ════════════════════════════════════════════════════════
   TOP PICKS
   ════════════════════════════════════════════════════════ */
.top-picks { 
  background: var(--white); 
  display: flex;
  justify-content: center;
  align-items: center;
}
.top-picks .container{
  width:1320px;
}
.picks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.pick-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pick-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.pick-thumb {
  width: 100%; 
  display: flex; align-items: center; justify-content: center;
  font-size: 44px;
}
.pick-thumb.c1 { background: linear-gradient(135deg,#f5e6d0,#dfc4a0); }
.pick-thumb.c2 { background: linear-gradient(135deg,#dce8fc,#b0cbf5); }
.pick-thumb.c3 { background: linear-gradient(135deg,#d0eedf,#95d4b5); }
.pick-thumb.c4 { background: linear-gradient(135deg,#f0e8fc,#cdb0ef); }
.pick-body  { padding: 16px 18px 20px; }
.pick-title { font-size: 17px; font-weight: 600; margin-bottom: 7px; line-height: 1.4; }
.pick-count { font-size: 16px; color: var(--gray-text); margin-bottom: 16px; }
.pick-count strong { color: var(--brand-gold); font-weight: 600; }
.btn-show-more {
  background: var(--brand-gold); color: var(--white);
  border: none; border-radius: 20px;
  padding: 8px 22px; font-size: 14px; font-weight: 500;
  transition: background var(--transition);
}
.btn-show-more:hover { background: var(--brand-gold-light); }

/* ════════════════════════════════════════════════════════
   VERIFIED ASSETS
   ════════════════════════════════════════════════════════ */
.verified-assets { background: var(--off-white); }
.verified-head {
  display: flex; justify-content: flex-end; margin-bottom: 22px;
}
.btn-see-more {
  background: var(--gold); color: var(--white);
  border: none; border-radius: 20px;
  padding: 9px 22px; font-size: 12.5px; font-weight: 600;
  display: flex; align-items: center; gap: 5px;
  transition: background var(--transition);
}
.btn-see-more:hover { background: var(--gold-hover); }
.assets-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.asset-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden; border: 1px solid var(--border);
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.asset-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
.asset-thumb {
  width: 100%; 
  display: flex; align-items: center; justify-content: center; font-size: 52px;
}
.asset-thumb.t1 { background: linear-gradient(135deg,#c5dff8,#8cbde8); }
.asset-thumb.t2 { background: linear-gradient(135deg,#c5f0d4,#84d4a4); }
.asset-thumb.t3 { background: linear-gradient(135deg,#f5d8c8,#e8a888); }
.asset-thumb.t4 { background: linear-gradient(135deg,#d8c5f8,#b094e8); }
.asset-body { padding: 14px 16px 18px; }
.asset-tag {
  display: inline-block;
  background: var(--brand-gold); color: var(--white);
  font-size: 14px; font-weight: 600;
  padding: 3px 10px; border-radius: 3px; margin-bottom: 12px;
  text-transform: uppercase; letter-spacing: .4px;
}
.asset-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 6px;
}
.asset-lbl { font-size: 16px; color: var(--gray-text); }
.asset-val { font-size: 16px; font-weight: 600; }
.asset-val.price { color: var(--brand-gold); font-size: 16px; }
.asset-val.city  { color: var(--brand-gold); }
.btn-more-details {
  margin-top: 14px; width: 100%;
  background: var(--brand-gold); color: var(--white);
  border: none; border-radius: 6px; padding: 9px;
  font-size: 14px; font-weight: 500;
  transition: background var(--transition);
}
.btn-more-details:hover { background: var(--brand-gold-light); }

/* ════════════════════════════════════════════════════════
   WHY CHOOSE
   ════════════════════════════════════════════════════════ */
.why-choose { 
  background: var(--white); 
   display: flex;
  justify-content: center;
  align-items: center;
}
.why-choose .container{
  width:1320px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px; margin-top: 12px;
}
.why-card {
  padding: 28px 26px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  position: relative;
  transition: box-shadow var(--transition);
}
.why-card:hover { box-shadow: var(--shadow-card); }
.why-num {
  position: absolute; top: 18px; right: 22px;
  font-size: 40px; font-weight: 700;
  color: #F0EAF8; line-height: 1;
  pointer-events: none;
}
.why-ttl { font-size: 24px; font-weight: 600; color: var(--brand-gold); margin-bottom: 10px; margin-right: 51px;}
.why-txt { font-size: 16px; color: var(--gray-text); line-height: 1.8; }

/* ════════════════════════════════════════════════════════
   ALLIANCE
   ════════════════════════════════════════════════════════ */
.alliance { background: radial-gradient(#0e35a4, #003474);
 }
.alliance .sec-title { color: var(--white); }
.alliance-sub { color: rgba(255,255,255,.55) !important; }
.logos-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px; max-width: 860px;
  margin: 0 auto 38px;
}
.logo-tile {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 7px; padding: 10px 8px;
  display: flex; align-items: center; justify-content: center;
  min-height: 52px; font-size: 10.5px; font-weight: 700;
  color: rgba(255,255,255,.8);
  text-align: center; letter-spacing: .3px;
  line-height: 1.4; cursor: pointer;
  transition: background var(--transition);
}
.logo-tile small { font-weight: 400; opacity: .7; }
.logo-tile:hover { background: rgba(255,255,255,.15); }
.alliance-cta { text-align: center; }
.alliance-cta p {
  color: rgba(255,255,255,.6);
  font-size: 17px; margin-bottom: 20px; line-height: 1.65;
}
.alliance-cta p a { color: var(--gold); }
.alliance-cta p a:hover { text-decoration: underline; }
.btn-signup {
  background: var(--brand-gold); color: var(--white);
  border: 2px solid rgba(255,255,255,.15);
  border-radius: 24px; padding: 11px 44px;
  font-size: 14px; font-weight: 600;
  transition: background var(--transition);
}
.btn-signup:hover { background: var(--brand-gold-light); }

/* ════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════ */
.faq-section { background: var(--white); }
.faq-wrap {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 56px; align-items: start;
  max-width: 1100px; margin: 24px auto 0;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 17px 0; background: none; border: none;
  font-size: 16px; color: var(--dark-text);
  text-align: left; font-weight: 500; gap: 12px;
  transition: color var(--transition);
}
.faq-btn:hover { color: var(--brand-gold); }
.faq-arr {
  font-size: 14px; color: var(--gray-text);
  flex-shrink: 0; transition: transform .3s, color var(--transition);
}
.faq-btn.open .faq-arr { transform: rotate(180deg); color: var(--brand-gold); }
.faq-ans {
  font-size: 16px; color: var(--gray-text);
  line-height: 1.78; max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .3s;
}
.faq-ans.open { max-height: 160px; padding-bottom: 16px; }
.faq-img {
  border-radius: var(--radius); width: 446px;
  background: linear-gradient(135deg,#ede0f8,#d0b8f0);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
}

/* ════════════════════════════════════════════════════════
   RECOMMENDED
   ════════════════════════════════════════════════════════ */
.recommended { background: var(--off-white); }
.rec-wrap {
  display: grid;
  grid-template-columns: minmax(180px, 240px) 1fr;
  gap: 60px; align-items: center;
  max-width: 900px; margin: 0 auto;
}
.rec-avatar {
  width: 220px;
  height: auto;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(165deg,#ede0f8 0%,#f5f0ff 60%,#fff 100%);
  display: flex; align-items: flex-end; justify-content: center;
}
.rec-avatar img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 14px;
}
.rec-title   { text-align: left !important; font-size: 32px !important; margin-bottom: 6px !important; }
.rec-divider { margin: 0 0 8px !important; }
.rec-pin     { text-align: left !important; }
.rec-sub { font-size: 17px; color: var(--gray-text); margin-bottom: 26px; line-height: 1.75; }
.rec-links { display: flex; flex-direction: column; gap: 14px; }
.rec-link {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; background: var(--white);
  border: 1px solid var(--border); border-radius: 9px; cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
}
.rec-link:hover { box-shadow: var(--shadow-card); transform: translateX(4px); }
.rec-link-icon {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--brand-gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--white); flex-shrink: 0;
}
.rec-link-text {
  font-size: 14px; color: var(--dark-text); font-weight: 700;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.yt-badge {
  background: #FF0000; color: var(--white);
  font-size: 9px; font-weight: 700;
  padding: 2px 7px; border-radius: 3px;
  display: inline-flex; align-items: center;
}

/* ════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════ */
footer { background: var(--dark-footer); color: rgba(255,255,255,.7); font-size: 13px; }

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 52px 60px 38px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-main-upper{
     display: grid;
    grid-template-columns: repeat(2, 1fr);
}

/* Brand col */
.footer-logo-wrap {
  background: var(--white); border-radius: 6px;
  padding: 5px 12px 4px; display: inline-flex;
  flex-direction: column; align-items: flex-start;
  margin-bottom: 16px;
}
.footer-logo-row { display: flex; align-items: center; gap: 1px; }
.fl-name   { font-size: 13px; font-weight: 700; color: var(--brand-gold); }
.fl-dot    { color: var(--gold); font-weight: 700; font-size: 13px; }
.fl-hammer { font-size: 12px; margin-left: 4px; }
.fl-sub    { font-size: 7.5px; color: #888; font-style: italic; letter-spacing: .4px; margin-top: 2px; }
.footer-about {
  font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.85;
}

/* Props col */
.footer-props-block { margin-bottom: 20px; }
.footer-props-block:last-child { margin-bottom: 0; }
.f-h5 {
  font-size: 17px; font-weight: 700; color: var(--white);
  margin-bottom: 14px; letter-spacing: .3px;
}
.footer-mumbai, .footer-in {
  display: grid; gap: 3px;
}
.footer-mumbai { grid-template-columns: 1fr 1fr; gap: 3px 14px; }
.footer-in     { grid-template-columns: repeat(2, 1fr); gap: 3px 8px; }
.footer-mumbai a, .footer-in a {
  font-size: 14px; color: rgba(255,255,255,.5);
  display: flex; align-items: center; gap: 5px;
  padding: 2px 0; transition: color var(--transition);
}
.footer-mumbai a::before, .footer-in a::before {
  content: '•'; color: var(--brand-gold); font-size: 14px; flex-shrink: 0;
}
.footer-mumbai a:hover, .footer-in a:hover { color: var(--gold); }
.footer-in a { font-size: 14px; }

/* Right col */
.f-col3 { display: flex; flex-direction: column; gap: 22px; }
.footer-block { display: flex; flex-direction: column; gap: 0; }
.company-links { display: grid; grid-template-columns: 1fr 1fr; gap: 3px 14px; }
.company-links a, .services-links a {
  font-size: 14px; color: rgba(255,255,255,.5);
  padding: 2px 0; display: flex; align-items: center; gap: 5px;
  transition: color var(--transition);
}
.company-links a::before, .services-links a::before {
  content: '•'; color: var(--brand-gold); font-size: 14px;
}
.company-links a:hover, .services-links a:hover { color: var(--gold); }
.services-links { display: flex; flex-direction: column; gap: 4px; }

.contact-rows { display: flex; flex-direction: column; gap: 8px; }
.c-row { display: flex; align-items: flex-start; gap: 8px; font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.55; }
.ci { flex-shrink: 0; margin-top: 1px; }
.c-row a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.c-row a:hover { color: var(--gold); }

/* Footer bottom */
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 60px;
}
.soc-btn svg {
  width: 18px;
  height: 18px;
}
.footer-social { display: flex; gap: 10px; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,.6); font-weight: 600;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.soc-btn:hover { background: var(--brand-gold); color: var(--white); border-color: var(--brand-gold); }
.footer-copy { font-size: 11.5px; color: rgba(255,255,255,.35); text-align: center; flex: 1; }
.footer-copy span { color: var(--gold); font-weight: 500; }

/* ════════════════════════════════════════════════════════
   ANIMATIONS
   ════════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 1280px (Large tablets / small laptops)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1280px) {
  .logos-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 1100px (Tablets landscape)
   ════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .section-pad { padding: 56px 36px; }
  .picks-grid  { grid-template-columns: repeat(2, 1fr); }
  .assets-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid    { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    padding: 44px 36px 32px;
    gap: 36px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-bottom { padding: 16px 36px; }
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 1024px (Switch to hamburger)
   ════════════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
 /* Hide desktop nav + buttons, show hamburger */
  .nav-links  { display: none; }
  .nav-btns   { display: none; }
  .hamburger  { display: flex; }
   }

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 860px (Switch to hamburger)
   ════════════════════════════════════════════════════════ */
@media (max-width: 860px) {
  /* Show mobile overlay when active */
  .mobile-overlay { display: block; }

  .section-pad { padding: 50px 24px; }
  .sec-title   { font-size: 22px; }

  /* Hero search stacks */
  .search-bar-wrap {
    flex-direction: column;
    border-radius: 10px;
    overflow: visible;
    background: transparent;
    gap: 10px;
    box-shadow: none;
    margin-bottom: 32px;
  }
  .search-select-wrap {
    flex: none;
    border-right: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
    background: var(--white);
    height: 48px;
  }
  .search-input-wrap {
    border-radius: 8px;
    background: var(--white);
    box-shadow: 0 4px 20px rgba(0,0,0,.3);
  }
  .btn-search-hero {
    border-radius: 8px;
    min-height: 48px;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(232,160,32,.35);
  }


  .hero-cats { gap: 16px; }
  .hero-cat-circle { width: 50px; height: 50px; font-size: 19px; }

  /* 2-col grids stay */
  .picks-grid  { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .assets-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .why-grid    { grid-template-columns: 1fr; gap: 18px; }

  /* FAQ hide image on small screens */
  .faq-wrap { grid-template-columns: 1fr; }
  .faq-img  { display: block; width:100%; }

  /* Recommended */
  .rec-wrap { grid-template-columns: 1fr; gap: 28px; }
  .rec-avatar {
  width: 100%;
  max-width: 280px;
  height: auto;
  margin: 0 auto;
}
.rec-avatar img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}
  .rec-title, .rec-divider, .rec-pin { text-align: center !important; margin-left: auto !important; }

  /* Logos */
  .logos-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; }

  /* Footer */
  .footer-main {
    grid-template-columns: 1fr;
    padding: 38px 24px 26px;
    gap: 28px;
  }
  .footer-brand-col { grid-column: auto; }
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE — 540px (Mobile portrait)
   ════════════════════════════════════════════════════════ */
@media (max-width: 540px) {
  .navbar { padding: 0 16px; }
  .section-pad { padding: 40px 16px; }
  .hero { padding: 50px 16px 44px; }
  .hero-title { font-size: 18px; }

  .picks-grid  { grid-template-columns: 1fr; }
  .assets-grid { grid-template-columns: 1fr; }
  .why-grid    { grid-template-columns: 1fr; }

.rec-avatar {
  max-width: 220px;
}
  .logos-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  .hero-cats { gap: 12px; }
  .hero-cat span { font-size: 10px; }

  .footer-mumbai { grid-template-columns: 1fr 1fr; }
  .footer-in     { grid-template-columns: 1fr 1fr; }
  .company-links { grid-template-columns: 1fr; }

  .faq-btn { font-size: 12.5px; }

  .sec-title { font-size: 20px; }
}