/* Manava Widget — Land & Plots interactive tabs base styles
   Mirrors the original design exactly; Elementor's control-generated
   CSS layers on top of this per widget instance. */

.mh-land-section,
.mh-land-section *,
.mh-land-section *:hover,
.mh-land-section *:focus,
.mh-land-section *:active,
.mh-land-section *:visited{
  text-decoration:none !important;
}

.mh-land-section{
  --mh-bg-cream:#f5f1e8;
  --mh-bg-white:#ffffff;
  --mh-text-green:#1e3a2e;
  --mh-text-terracotta:#a8632f;
  --mh-btn-gold:#ba9959;
  --mh-btn-terracotta:#c1794a;

  background:var(--mh-bg-cream);
  padding:80px 24px;
  font-family:'Poppins','Segoe UI', Helvetica, Arial, sans-serif;
  box-sizing:border-box;
}
.mh-land-section *{box-sizing:border-box;}

.mh-land-inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap:52px;
  align-items:start;
}

.mh-land-eyebrow{
  font-size:12px;
  font-weight:700;
  letter-spacing:3px;
  color:var(--mh-text-terracotta);
  margin:0 0 16px;
  text-transform:uppercase;
}

.mh-land-title{
  font-family:'Playfair Display', Georgia, 'Times New Roman', serif;
  font-size:36px;
  line-height:1.22;
  color:var(--mh-text-green);
  margin:0 0 16px;
  font-weight:700;
}

.mh-land-subline{
  font-size:14.5px;
  color:var(--mh-text-green);
  opacity:0.65;
  line-height:1.6;
  margin:0 0 34px;
  max-width:380px;
}

.mh-land-tabs{
  display:flex;
  flex-direction:column;
}

.mh-land-tab{
  display:flex;
  align-items:center;
  gap:16px;
  background:none;
  border:none;
  border-left:3px solid rgba(30,58,46,0.15);
  padding:16px 0 16px 18px;
  text-align:left;
  cursor:pointer;
  transition:border-color .25s ease, padding-left .25s ease;
  font-family:inherit;
}
.mh-land-tab:hover{
  padding-left:24px;
}
.mh-land-tab.active{
  border-color:var(--mh-btn-terracotta);
}

.mh-land-tab-num{
  font-family:Georgia, serif;
  font-size:13px;
  color:var(--mh-text-green);
  opacity:0.4;
  flex-shrink:0;
}
.mh-land-tab.active .mh-land-tab-num{
  opacity:1;
  color:var(--mh-btn-terracotta);
}

.mh-land-tab-title{
  font-size:17px;
  font-weight:700;
  color:var(--mh-text-green);
  opacity:0.55;
  transition:opacity .25s ease, color .25s ease;
}
.mh-land-tab.active .mh-land-tab-title,
.mh-land-tab:hover .mh-land-tab-title{
  opacity:1;
}
.mh-land-tab.active .mh-land-tab-title{
  color:var(--mh-text-terracotta);
}

.mh-land-right{
  position:relative;
  height:480px;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 16px 40px rgba(30,58,46,0.18);
}

.mh-land-panel{
  position:absolute;
  inset:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .4s ease;
}
.mh-land-panel.active{
  opacity:1;
  visibility:visible;
}

.mh-land-panel img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.mh-land-caption{
  position:absolute;
  left:0; right:0; bottom:0;
  z-index:1;
  padding:34px;
  background:linear-gradient(180deg, rgba(30,58,46,0) 0%, rgba(30,58,46,0.55) 45%, rgba(30,58,46,0.92) 100%);
}

.mh-land-caption h3{
  font-size:24px;
  font-weight:700;
  color:#ffffff;
  margin:0 0 8px;
}

.mh-land-caption p{
  font-size:14px;
  color:rgba(255,255,255,0.85);
  line-height:1.6;
  margin:0 0 18px;
  max-width:440px;
}

.mh-land-btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--mh-btn-terracotta);
  color:#fff;
  font-size:14px;
  font-weight:700;
  padding:12px 22px;
  border-radius:8px;
  transition:background .2s ease;
}
.mh-land-btn:hover{
  background:var(--mh-btn-gold);
}
.mh-land-btn i{font-style:normal;}

/* ---------- TABLET ---------- */
@media (max-width: 900px){
  .mh-land-inner{
    grid-template-columns: 1fr;
    gap:32px;
  }
  .mh-land-right{height:400px;}
}

/* ---------- MOBILE ---------- */
@media (max-width: 560px){
  .mh-land-section{padding:56px 16px;}
  .mh-land-title{font-size:27px;}
  .mh-land-right{height:340px;border-radius:14px;}
  .mh-land-caption{padding:22px;}
  .mh-land-caption h3{font-size:19px;}
  .mh-land-tab{padding:13px 0 13px 14px;}
  .mh-land-tab:hover{padding-left:18px;}
  .mh-land-tab-title{font-size:15.5px;}
}
